Files
Chamilo/plugin/whispeakauth/authentify.php
2025-08-14 22:39:38 +02:00

18 lines
408 B
PHP

<?php
/* For licensing terms, see /license.txt */
use Chamilo\PluginBundle\WhispeakAuth\Controller\AuthenticationController;
require_once __DIR__.'/../../main/inc/global.inc.php';
$controller = new AuthenticationController();
try {
$controller->index();
} catch (Exception $exception) {
api_not_allowed(
true,
Display::return_message($exception->getMessage(), 'warning')
);
}