Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
19 lines
514 B
PHP
19 lines
514 B
PHP
<?php
|
|
|
|
namespace Shibboleth;
|
|
|
|
/**
|
|
* Administratrive login. Useful when the standard login is not available anymore
|
|
* which is usually the case.
|
|
*
|
|
* This page allow administrators to log into the application using the standard
|
|
* Chamilo method when Shibboleth is not available.
|
|
*
|
|
* @license see /license.txt
|
|
* @author Laurent Opprecht <laurent@opprecht.info>, Nicolas Rod for the University of Geneva
|
|
*/
|
|
$dir = __DIR__;
|
|
include_once "$dir/../../init.php";
|
|
|
|
ShibbolethController::instance()->admin_login();
|