install.php 441 B

1234567891011121314151617
  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. *
  7. * @package chamilo.plugin.test2pdf
  8. */
  9. /**
  10. * Initialization.
  11. */
  12. require_once __DIR__.'/config.php';
  13. if (!api_is_platform_admin()) {
  14. die('You must have admin permissions to install plugins');
  15. }
  16. Test2pdfPlugin::create()->install();