server/settings/ajax/enableapp.php

15 lines
300 B
PHP
Raw Normal View History

<?php
// Init owncloud
2012-09-05 21:28:59 +00:00
require_once '../../lib/base.php';
2011-09-30 21:10:08 +00:00
OC_JSON::checkAdminUser();
2012-07-07 13:27:04 +00:00
OCP\JSON::callCheck();
OC_JSON::setContentTypeHeader();
2012-08-04 23:41:24 +00:00
$appid = OC_App::enable($_POST['appid']);
if($appid !== false) {
OC_JSON::success(array('data' => array('appid' => $appid)));
} else {
OC_JSON::error();
}