. /** * Called async from warning bar to check if the outage has finished. * * @package auth_outage * @author Daniel Thee Roperto * @copyright 2016 Catalyst IT * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ use auth_outage\dml\outagedb; define('NO_MOODLE_COOKIES', true); // @codingStandardsIgnoreStart header('Cache-Control: public, max-age=10,s-maxage=10'); // @codingStandardsIgnoreEnd define('NO_AUTH_OUTAGE', true); require_once(__DIR__ . '/../../config.php'); $active = outagedb::get_active(); echo $active ? 'ongoing' : 'finished';