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
|
|
|
|
2013-02-09 18:03:47 +04:00
|
|
|
$appid = OC_App::enable(OC_App::cleanAppId($_POST['appid']));
|
2012-08-05 03:41:24 +04:00
|
|
|
if($appid !== false) {
|
|
|
|
OC_JSON::success(array('data' => array('appid' => $appid)));
|
|
|
|
} else {
|
2012-09-17 15:50:17 +04:00
|
|
|
$l = OC_L10N::get('settings');
|
2012-09-12 14:02:39 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") )));
|
2012-04-14 14:57:03 +04:00
|
|
|
}
|