install.php 431 B

1234567891011121314
  1. <?php
  2. /* For license terms, see /license.txt */
  3. /**
  4. * This script is included by main/admin/settings.lib.php and generally
  5. * includes things to execute in the main database (settings_current table)
  6. * @package chamilo.plugin.buycourses
  7. */
  8. require_once __DIR__.'/config.php';
  9. if (!api_is_platform_admin()) {
  10. die ('You must have admin permissions to install plugins');
  11. }
  12. BuyCoursesPlugin::create()->install();