uninstall.php 274 B

123456789101112
  1. <?php
  2. /* For license terms, see /license.txt */
  3. /**
  4. * Uninstall the MSI/LTI Plugin
  5. * @package chamilo.plugin.ims_lti
  6. */
  7. if (!api_is_platform_admin()) {
  8. die ('You must have admin permissions to uninstall plugins');
  9. }
  10. ImsLtiPlugin::create()->uninstall();