enableapp.php 351 B

1234567891011121314
  1. <?php
  2. OC_JSON::checkAdminUser();
  3. OCP\JSON::callCheck();
  4. OC_JSON::setContentTypeHeader();
  5. $appid = OC_App::enable($_POST['appid']);
  6. if($appid !== false) {
  7. OC_JSON::success(array('data' => array('appid' => $appid)));
  8. } else {
  9. $l = OC_L10N::get('settings');
  10. OC_JSON::error(array("data" => array( "message" => $l->t("Could not enable app. ") )));
  11. }