mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
65 lines
2.3 KiB
PHP
65 lines
2.3 KiB
PHP
<?php
|
|
// Copyright (C) 2010-2012 Combodo SARL
|
|
//
|
|
// This file is part of iTop.
|
|
//
|
|
// iTop is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// iTop is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
require_once('../approot.inc.php');
|
|
require_once(APPROOT.'/application/application.inc.php');
|
|
require_once(APPROOT.'/application/itopwebpage.class.inc.php');
|
|
require_once(APPROOT.'/application/wizardhelper.class.inc.php');
|
|
|
|
require_once(APPROOT.'/application/startup.inc.php');
|
|
$oAppContext = new ApplicationContext();
|
|
$currentOrganization = utils::ReadParam('org_id', '');
|
|
$operation = utils::ReadParam('operation', '');
|
|
|
|
require_once(APPROOT.'/application/loginwebpage.class.inc.php');
|
|
$bPortal = utils::ReadParam('portal', false);
|
|
$sUrl = utils::GetAbsoluteUrlAppRoot();
|
|
if ($bPortal)
|
|
{
|
|
$sUrl .= 'portal/';
|
|
}
|
|
else
|
|
{
|
|
$sUrl .= 'pages/UI.php';
|
|
}
|
|
$sLoginMode = isset($_SESSION['login_mode']) ? $_SESSION['login_mode'] : '';
|
|
LoginWebPage::ResetSession();
|
|
switch($sLoginMode)
|
|
{
|
|
case 'cas':
|
|
$sCASLogoutUrl = MetaModel::GetConfig()->Get('cas_logout_redirect_service');
|
|
if (empty($sCASLogoutUrl))
|
|
{
|
|
$sCASLogoutUrl = $sUrl;
|
|
}
|
|
utils::InitCASClient();
|
|
phpCAS::logoutWithRedirectService($sCASLogoutUrl); // Redirects to the CAS logout page
|
|
break;
|
|
}
|
|
$oPage = new LoginWebPage();
|
|
$sVersionShort = Dict::Format('UI:iTopVersion:Short', ITOP_VERSION);
|
|
$sIconUrl = Utils::GetConfig()->Get('app_icon_url');
|
|
$oPage->add("<div id=\"login-logo\"><a href=\"".htmlentities($sIconUrl, ENT_QUOTES, 'UTF-8')."\"><img title=\"$sVersionShort\" src=\"../images/itop-logo-external.png\"></a></div>\n");
|
|
$oPage->add("<div id=\"login\">\n");
|
|
$oPage->add("<h1>".Dict::S('UI:LogOff:ThankYou')."</h1>\n");
|
|
|
|
$oPage->add("<p><a href=\"$sUrl\">".Dict::S('UI:LogOff:ClickHereToLoginAgain')."</a></p>");
|
|
$oPage->add("</div>\n");
|
|
$oPage->output();
|
|
?>
|