mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
"forward for not existing or empty header to setup"
This commit is contained in:
parent
d268d6d816
commit
1c9c65278b
89
index.php
89
index.php
@ -1,65 +1,66 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* eGroupWare *
|
||||
* http://www.egroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
/**************************************************************************\
|
||||
* eGroupWare *
|
||||
* http://www.egroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
/* $Id$ */
|
||||
|
||||
if(!file_exists('header.inc.php'))
|
||||
{
|
||||
// forward for not existing or empty header to setup
|
||||
if(!file_exists('header.inc.php') || !filesize('header.inc.php'))
|
||||
{
|
||||
Header('Location: setup/index.php');
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
if(isset($_GET['hasupdates']) && $_GET['hasupdates'] == 'yes')
|
||||
{
|
||||
if(isset($_GET['hasupdates']) && $_GET['hasupdates'] == 'yes')
|
||||
{
|
||||
$hasupdates = True;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
/*
|
||||
This is the menuaction driver for the multi-layered design
|
||||
*/
|
||||
if(isset($_GET['menuaction']) && preg_match('/^[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+$/',$_GET['menuaction']))
|
||||
{
|
||||
*/
|
||||
if(isset($_GET['menuaction']) && preg_match('/^[A-Za-z0-9_]+\.[A-Za-z0-9_]+\.[A-Za-z0-9_]+$/',$_GET['menuaction']))
|
||||
{
|
||||
list($app,$class,$method) = explode('.',$_GET['menuaction']);
|
||||
if(! $app || ! $class || ! $method)
|
||||
{
|
||||
$invalid_data = True;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
$app = 'home';
|
||||
$invalid_data = True;
|
||||
}
|
||||
}
|
||||
|
||||
if($app == 'phpgwapi')
|
||||
{
|
||||
if($app == 'phpgwapi')
|
||||
{
|
||||
$app = 'home';
|
||||
$api_requested = True;
|
||||
}
|
||||
}
|
||||
|
||||
$GLOBALS['egw_info'] = array(
|
||||
$GLOBALS['egw_info'] = array(
|
||||
'flags' => array(
|
||||
'noheader' => True,
|
||||
'nonavbar' => True,
|
||||
'currentapp' => $app
|
||||
)
|
||||
);
|
||||
include('./header.inc.php');
|
||||
);
|
||||
include('./header.inc.php');
|
||||
|
||||
// Check if we are using windows or normal webpage
|
||||
$windowed = false;
|
||||
$tpl_info = EGW_SERVER_ROOT . '/phpgwapi/templates/' . basename($GLOBALS['egw_info']['user']['preferences']['common']['template_set']) . '/setup/setup.inc.php';
|
||||
// Check if we are using windows or normal webpage
|
||||
$windowed = false;
|
||||
$tpl_info = EGW_SERVER_ROOT . '/phpgwapi/templates/' . basename($GLOBALS['egw_info']['user']['preferences']['common']['template_set']) . '/setup/setup.inc.php';
|
||||
|
||||
if(@file_exists($tpl_info))
|
||||
{
|
||||
if(@file_exists($tpl_info))
|
||||
{
|
||||
include_once($tpl_info);
|
||||
// if(isset($template_info))
|
||||
// {
|
||||
@ -68,10 +69,10 @@
|
||||
$windowed = true;
|
||||
}
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
if($app == 'home' && !$api_requested && !$windowed)
|
||||
{
|
||||
if($app == 'home' && !$api_requested && !$windowed)
|
||||
{
|
||||
if ($GLOBALS['egw_info']['server']['force_default_app'] && $GLOBALS['egw_info']['server']['force_default_app'] != 'user_choice')
|
||||
{
|
||||
$GLOBALS['egw_info']['user']['preferences']['common']['default_app'] = $GLOBALS['egw_info']['server']['force_default_app'];
|
||||
@ -86,8 +87,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
if($windowed && $_GET['cd'] == 'yes')
|
||||
{
|
||||
if($windowed && $_GET['cd'] == 'yes')
|
||||
{
|
||||
$GLOBALS['egw_info']['flags'] = array(
|
||||
'noheader' => False,
|
||||
'nonavbar' => False,
|
||||
@ -96,9 +97,9 @@
|
||||
$GLOBALS['egw']->common->egw_header();
|
||||
$GLOBALS['egw']->common->egw_footer();
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
if($api_requested)
|
||||
{
|
||||
$app = 'phpgwapi';
|
||||
@ -153,4 +154,4 @@
|
||||
{
|
||||
$GLOBALS['egw']->common->egw_footer();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user