disableapp.php 238 B

123456789101112131415
  1. <?php
  2. OCP\JSON::checkAdminUser();
  3. OCP\JSON::callCheck();
  4. if (!array_key_exists('appid', $_POST)) {
  5. OC_JSON::error();
  6. exit;
  7. }
  8. $appId = $_POST['appid'];
  9. $appId = OC_App::cleanAppId($appId);
  10. OC_App::disable($appId);
  11. OC_JSON::success();