2011-06-20 21:21:42 +04:00
|
|
|
<?php
|
|
|
|
|
2011-10-01 01:10:08 +04:00
|
|
|
OC_JSON::checkAdminUser();
|
2012-07-07 17:27:04 +04:00
|
|
|
OCP\JSON::callCheck();
|
2011-06-20 21:21:42 +04:00
|
|
|
|
2014-04-18 16:29:45 +04:00
|
|
|
$groups = isset($_POST['groups']) ? $_POST['groups'] : null;
|
|
|
|
|
2013-08-06 19:19:18 +04:00
|
|
|
try {
|
2014-04-18 16:29:45 +04:00
|
|
|
OC_App::enable(OC_App::cleanAppId($_POST['appid']), $groups);
|
2015-01-09 20:31:39 +03:00
|
|
|
// FIXME: Clear the cache - move that into some sane helper method
|
|
|
|
\OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-0');
|
|
|
|
\OC::$server->getMemCacheFactory()->create('settings')->remove('listApps-1');
|
2013-08-06 19:19:18 +04:00
|
|
|
OC_JSON::success();
|
|
|
|
} catch (Exception $e) {
|
2013-08-09 20:01:49 +04:00
|
|
|
OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
|
2013-08-06 19:19:18 +04:00
|
|
|
OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
|
2012-04-14 14:57:03 +04:00
|
|
|
}
|