update.php 294 B

123456789101112131415
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Update the plugin.
  5. *
  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()->update();