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