2000-09-06 23:54:20 +02:00
|
|
|
<?php
|
2001-07-09 19:33:19 +02:00
|
|
|
/**************************************************************************\
|
2004-08-21 19:18:14 +02:00
|
|
|
* eGroupWare *
|
|
|
|
* http://www.egroupware.org *
|
2001-07-09 19:33:19 +02:00
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
2003-08-28 16:16:30 +02:00
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
/* $Id$ */
|
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$phpgw_info = array();
|
2003-11-14 03:37:20 +01:00
|
|
|
if(!file_exists('header.inc.php'))
|
2003-05-18 17:18:02 +02:00
|
|
|
{
|
|
|
|
Header('Location: setup/index.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2004-03-14 09:22:29 +01:00
|
|
|
$GLOBALS['sessionid'] = isset($_GET['sessionid']) ? $_GET['sessionid'] : @$_COOKIE['sessionid'];
|
2003-11-14 03:37:20 +01:00
|
|
|
if(!$GLOBALS['sessionid'])
|
2001-07-11 07:12:27 +02:00
|
|
|
{
|
2004-04-14 13:52:16 +02:00
|
|
|
Header('Location: login.php'.
|
2004-04-19 08:24:53 +02:00
|
|
|
(isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING']) ?
|
|
|
|
'?phpgw_forward='.urlencode('/index.php?'.$_SERVER['QUERY_STRING']):''));
|
2001-07-11 07:12:27 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
/*
|
2003-11-14 03:37:20 +01:00
|
|
|
This is the menuaction driver for the multi-layered design
|
2001-07-09 19:33:19 +02:00
|
|
|
*/
|
2004-03-14 09:22:29 +01:00
|
|
|
if(isset($_GET['menuaction']))
|
2001-04-08 08:54:42 +02:00
|
|
|
{
|
2004-03-14 09:22:29 +01:00
|
|
|
list($app,$class,$method) = explode('.',@$_GET['menuaction']);
|
2003-11-14 03:37:20 +01:00
|
|
|
if(! $app || ! $class || ! $method)
|
2001-07-09 19:33:19 +02:00
|
|
|
{
|
|
|
|
$invalid_data = True;
|
|
|
|
}
|
2001-04-08 08:54:42 +02:00
|
|
|
}
|
2001-07-09 19:33:19 +02:00
|
|
|
else
|
2001-04-08 08:54:42 +02:00
|
|
|
{
|
2001-08-06 09:29:09 +02:00
|
|
|
//$phpgw->log->message('W-BadmenuactionVariable, menuaction missing or corrupt: %1',$menuaction);
|
|
|
|
//$phpgw->log->commit();
|
2001-08-05 12:13:54 +02:00
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
$app = 'home';
|
|
|
|
$invalid_data = True;
|
2001-04-08 08:54:42 +02:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2003-11-14 03:37:20 +01:00
|
|
|
if($app == 'phpgwapi')
|
2001-11-01 05:09:13 +01:00
|
|
|
{
|
|
|
|
$app = 'home';
|
|
|
|
$api_requested = True;
|
|
|
|
}
|
|
|
|
|
2003-08-28 16:16:30 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
2001-07-09 19:33:19 +02:00
|
|
|
'currentapp' => $app
|
2001-04-08 08:54:42 +02:00
|
|
|
);
|
2001-07-09 19:33:19 +02:00
|
|
|
include('./header.inc.php');
|
2001-02-04 10:19:07 +01:00
|
|
|
|
2003-11-14 03:37:20 +01:00
|
|
|
if($app == 'home' && !$api_requested)
|
2001-04-08 08:54:42 +02:00
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/home.php'));
|
2001-04-08 08:54:42 +02:00
|
|
|
}
|
2000-12-11 10:18:09 +01:00
|
|
|
|
2003-11-14 03:37:20 +01:00
|
|
|
if($api_requested)
|
2001-11-01 05:09:13 +01:00
|
|
|
{
|
|
|
|
$app = 'phpgwapi';
|
|
|
|
}
|
|
|
|
|
2003-11-14 03:37:20 +01:00
|
|
|
$GLOBALS[$class] = CreateObject(sprintf('%s.%s',$app,$class));
|
|
|
|
if((is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions[$method]) && ! $invalid_data)
|
2001-07-04 05:00:05 +02:00
|
|
|
{
|
2003-05-18 17:18:02 +02:00
|
|
|
execmethod($_GET['menuaction']);
|
2001-11-01 05:33:07 +01:00
|
|
|
unset($app);
|
|
|
|
unset($class);
|
|
|
|
unset($method);
|
|
|
|
unset($invalid_data);
|
|
|
|
unset($api_requested);
|
2001-07-04 05:00:05 +02:00
|
|
|
}
|
2001-07-09 19:33:19 +02:00
|
|
|
else
|
2001-02-16 05:01:40 +01:00
|
|
|
{
|
2003-11-14 03:37:20 +01:00
|
|
|
if(!$app || !$class || !$method)
|
2001-11-01 05:16:35 +01:00
|
|
|
{
|
2003-11-14 03:37:20 +01:00
|
|
|
if(@is_object($GLOBALS['phpgw']->log))
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->log->message(array(
|
|
|
|
'text' => 'W-BadmenuactionVariable, menuaction missing or corrupt: %1',
|
|
|
|
'p1' => $menuaction,
|
|
|
|
'line' => __LINE__,
|
|
|
|
'file' => __FILE__
|
|
|
|
));
|
|
|
|
}
|
2001-11-01 05:16:35 +01:00
|
|
|
}
|
2001-11-01 05:09:13 +01:00
|
|
|
|
2003-11-14 03:37:20 +01:00
|
|
|
if(!is_array($GLOBALS[$class]->public_functions) || ! $$GLOBALS[$class]->public_functions[$method] && $method)
|
2001-08-05 12:13:54 +02:00
|
|
|
{
|
2003-11-14 03:37:20 +01:00
|
|
|
if(@is_object($GLOBALS['phpgw']->log))
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->log->message(array(
|
|
|
|
'text' => 'W-BadmenuactionVariable, attempted to access private method: %1',
|
|
|
|
'p1' => $method,
|
|
|
|
'line' => __LINE__,
|
|
|
|
'file' => __FILE__
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(@is_object($GLOBALS['phpgw']->log))
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->log->commit();
|
2001-08-05 12:13:54 +02:00
|
|
|
}
|
|
|
|
|
2003-05-18 17:18:02 +02:00
|
|
|
$GLOBALS['phpgw']->redirect_link('/home.php');
|
2001-02-16 05:01:40 +01:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
|
2003-11-14 03:37:20 +01:00
|
|
|
if(!isset($GLOBALS['phpgw_info']['nofooter']))
|
2003-08-28 16:16:30 +02:00
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
|
|
|
}
|
2001-09-02 09:27:17 +02:00
|
|
|
?>
|