14 lines
260 B
PHP
14 lines
260 B
PHP
<?php
|
|
/* For license terms, see /license.txt */
|
|
|
|
/**
|
|
* Install the MSI/LTI Plugin.
|
|
*
|
|
* @package chamilo.plugin.ims_lti
|
|
*/
|
|
if (!api_is_platform_admin()) {
|
|
exit('You must have admin permissions to install plugins');
|
|
}
|
|
|
|
ImsLtiPlugin::create()->install();
|