nextcloud/settings/ajax/enableapp.php

13 lines
296 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();
try {
OC_App::enable(OC_App::cleanAppId($_POST['appid']));
OC_JSON::success();
} catch (Exception $e) {
2013-08-09 20:01:49 +04:00
OC_Log::write('core', $e->getMessage(), OC_Log::ERROR);
OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
}