. /** * Allows the admin to manage extension plugins * * @copyright 2023 onwards, Blindside Networks Inc * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @author Laurent David (laurent@call-learning.fr) */ use mod_bigbluebuttonbn\local\plugins\admin_plugin_manager; require_once(__DIR__ . '/../../config.php'); global $PAGE; require_login(); $action = optional_param('action', null, PARAM_PLUGIN); $plugin = optional_param('plugin', null, PARAM_PLUGIN); if (!empty($plugin)) { require_sesskey(); } // Create the class for this controller. $pluginmanager = new admin_plugin_manager(); $PAGE->set_context(context_system::instance()); // Execute the controller. $pluginmanager->execute($action, $plugin);