installapp.php 456 B

1234567891011121314151617181920
  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. $result = OC_App::installApp($appId);
  11. if($result !== false) {
  12. OC_JSON::success(array('data' => array('appid' => $appId)));
  13. } else {
  14. $l = \OC::$server->getL10N('settings');
  15. OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") )));
  16. }