nextcloud/settings/ajax/enableapp.php

13 lines
338 B
PHP
Raw Normal View History

<?php
2011-10-01 01:10:08 +04:00
OC_JSON::checkAdminUser();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
$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');
OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") )));
}