2011-06-20 13:21:42 -04:00
|
|
|
<?php
|
|
|
|
|
|
2011-09-30 17:10:08 -04:00
|
|
|
OC_JSON::checkAdminUser();
|
2012-07-07 09:27:04 -04:00
|
|
|
OCP\JSON::callCheck();
|
2011-06-20 13:21:42 -04:00
|
|
|
|
2013-02-09 09:03:47 -05:00
|
|
|
$appid = OC_App::enable(OC_App::cleanAppId($_POST['appid']));
|
2012-08-04 19:41:24 -04:00
|
|
|
if($appid !== false) {
|
|
|
|
|
OC_JSON::success(array('data' => array('appid' => $appid)));
|
|
|
|
|
} else {
|
2012-09-17 07:50:17 -04:00
|
|
|
$l = OC_L10N::get('settings');
|
2012-09-12 06:02:39 -04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") )));
|
2012-04-14 06:57:03 -04:00
|
|
|
}
|