mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 12:38:44 +02:00
52 lines
1.7 KiB
PHP
52 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2017 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/>
|
|
|
|
/**
|
|
* Executes a portal without having a dedicated module.
|
|
* This allows to make a portal directly from the ITSM Designer.
|
|
*/
|
|
|
|
if (file_exists(__DIR__ . '/../../approot.inc.php'))
|
|
{
|
|
require_once __DIR__ . '/../../approot.inc.php'; // When in env-xxxx folder
|
|
}
|
|
else
|
|
{
|
|
require_once __DIR__ . '/../../../approot.inc.php'; // When in datamodels/x.x folder
|
|
}
|
|
require_once APPROOT . '/application/startup.inc.php';
|
|
|
|
// If PORTAL_ID is not already defined, we look for it in a parameter
|
|
if(!defined('PORTAL_ID'))
|
|
{
|
|
// Retrieving portal id from request params
|
|
$sPortalId = utils::ReadParam('portal_id', '');
|
|
if ($sPortalId == '')
|
|
{
|
|
echo "Missing argument 'portal_id'";
|
|
exit;
|
|
}
|
|
|
|
// Defining portal constants
|
|
define('PORTAL_MODULE_ID', $sPortalId);
|
|
define('PORTAL_ID', $sPortalId);
|
|
}
|
|
|
|
require_once APPROOT . '/env-' . utils::GetCurrentEnvironment() . '/itop-portal-base/portal/web/index.php';
|