diff --git a/index.php b/index.php index f449b5ffda..5dfc837cf8 100755 --- a/index.php +++ b/index.php @@ -1,156 +1,157 @@ array( - 'noheader' => True, - 'nonavbar' => True, - 'currentapp' => $app - ) - ); - include('./header.inc.php'); +$GLOBALS['egw_info'] = array( + 'flags' => array( + 'noheader' => True, + 'nonavbar' => True, + 'currentapp' => $app + ) +); +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)) - { - include_once($tpl_info); +if(@file_exists($tpl_info)) +{ + include_once($tpl_info); // if(isset($template_info)) // { - if($GLOBALS['egw_info']['template'][$GLOBALS['egw_info']['user']['preferences']['common']['template_set']]['windowed']) - { - $windowed = true; - } + if($GLOBALS['egw_info']['template'][$GLOBALS['egw_info']['user']['preferences']['common']['template_set']]['windowed']) + { + $windowed = true; + } // } +} + +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']; } - - if($app == 'home' && !$api_requested && !$windowed) + if($GLOBALS['egw_info']['user']['preferences']['common']['default_app'] && !$hasupdates) { - 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']; - } - if($GLOBALS['egw_info']['user']['preferences']['common']['default_app'] && !$hasupdates) - { - $GLOBALS['egw']->redirect(egw_framework::index($GLOBALS['egw_info']['user']['preferences']['common']['default_app'])); - } - else - { - $GLOBALS['egw']->redirect_link('/home/index.php'); - } - } - - if($windowed && $_GET['cd'] == 'yes') - { - $GLOBALS['egw_info']['flags'] = array( - 'noheader' => False, - 'nonavbar' => False, - 'currentapp' => 'eGroupWare' - ); - $GLOBALS['egw']->common->egw_header(); - $GLOBALS['egw']->common->egw_footer(); - + $GLOBALS['egw']->redirect(egw_framework::index($GLOBALS['egw_info']['user']['preferences']['common']['default_app'])); } else { - if($api_requested) - { - $app = 'phpgwapi'; - } + $GLOBALS['egw']->redirect_link('/home/index.php'); + } + } - $obj = CreateObject($app.'.'.$class); - if((is_array($obj->public_functions) && $obj->public_functions[$method]) && !$invalid_data) - { - $obj->$method(); - unset($app); - unset($class); - unset($method); - unset($invalid_data); - unset($api_requested); - } - else - { - if(!$app || !$class || !$method || $invalid_data) - { - if(@is_object($GLOBALS['egw']->log)) - { - $GLOBALS['egw']->log->message(array( - 'text' => 'W-BadmenuactionVariable, menuaction missing or corrupt: %1', - 'p1' => $menuaction, - 'line' => __LINE__, - 'file' => __FILE__ - )); - } - } +if($windowed && $_GET['cd'] == 'yes') +{ + $GLOBALS['egw_info']['flags'] = array( + 'noheader' => False, + 'nonavbar' => False, + 'currentapp' => 'eGroupWare' + ); + $GLOBALS['egw']->common->egw_header(); + $GLOBALS['egw']->common->egw_footer(); - if(!is_array($GLOBALS[$class]->public_functions) || !$GLOBALS[$class]->public_functions[$method] && $method) - { - if(@is_object($GLOBALS['egw']->log)) - { - $GLOBALS['egw']->log->message(array( - 'text' => 'W-BadmenuactionVariable, attempted to access private method: %1', - 'p1' => $method, - 'line' => __LINE__, - 'file' => __FILE__ - )); - } - } +} +else +{ + if($api_requested) + { + $app = 'phpgwapi'; + } + + $obj = CreateObject($app.'.'.$class); + if((is_array($obj->public_functions) && $obj->public_functions[$method]) && !$invalid_data) + { + $obj->$method(); + unset($app); + unset($class); + unset($method); + unset($invalid_data); + unset($api_requested); + } + else + { + if(!$app || !$class || !$method || $invalid_data) + { if(@is_object($GLOBALS['egw']->log)) { - $GLOBALS['egw']->log->commit(); + $GLOBALS['egw']->log->message(array( + 'text' => 'W-BadmenuactionVariable, menuaction missing or corrupt: %1', + 'p1' => $menuaction, + 'line' => __LINE__, + 'file' => __FILE__ + )); } - - $GLOBALS['egw']->redirect_link('/home/index.php'); } - if(!isset($GLOBALS['egw_info']['nofooter'])) + if(!is_array($GLOBALS[$class]->public_functions) || !$GLOBALS[$class]->public_functions[$method] && $method) { - $GLOBALS['egw']->common->egw_footer(); + if(@is_object($GLOBALS['egw']->log)) + { + $GLOBALS['egw']->log->message(array( + 'text' => 'W-BadmenuactionVariable, attempted to access private method: %1', + 'p1' => $method, + 'line' => __LINE__, + 'file' => __FILE__ + )); + } } + if(@is_object($GLOBALS['egw']->log)) + { + $GLOBALS['egw']->log->commit(); + } + + $GLOBALS['egw']->redirect_link('/home/index.php'); } + + if(!isset($GLOBALS['egw_info']['nofooter'])) + { + $GLOBALS['egw']->common->egw_footer(); + } +}