Skip to content
Snippets Groups Projects
logout.php 555 B
Newer Older
<?php

require_once('_include.php');

$config = \SimpleSAML\Configuration::getInstance();
$httpUtils = new \SimpleSAML\Utils\HTTP();
    $link = $httpUtils->checkURLAllowed($_REQUEST['link_href']);
} else {
if (array_key_exists('link_text', $_REQUEST)) {
    $text = $_REQUEST['link_text'];
} else {
Tim van Dijen's avatar
Tim van Dijen committed
$t = new \SimpleSAML\XHTML\Template($config, 'logout.twig');
$t->data['link'] = $link;
$t->data['text'] = $text;
$t->send();
exit();