2000-09-06 23:54:20 +02:00
|
|
|
<?php
|
2001-07-09 19:33:19 +02:00
|
|
|
/**************************************************************************\
|
2001-07-11 07:12:27 +02:00
|
|
|
* phpGroupWare *
|
2001-07-09 19:33:19 +02:00
|
|
|
* http://www.phpgroupware.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$ */
|
|
|
|
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['sessionid'] = $GLOBALS['HTTP_GET_VARS']['sessionid'] ? $GLOBALS['HTTP_GET_VARS']['sessionid'] : $GLOBALS['HTTP_COOKIE_VARS']['sessionid'];
|
|
|
|
if (! $GLOBALS['sessionid'])
|
2001-07-11 07:12:27 +02:00
|
|
|
{
|
|
|
|
Header('Location: login.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
/*
|
|
|
|
This is the preliminary menuaction driver for the new multi-layered design
|
|
|
|
*/
|
2001-08-21 20:34:56 +02:00
|
|
|
if (@isset($GLOBALS['HTTP_GET_VARS']['menuaction']))
|
2001-04-08 08:54:42 +02:00
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
list($app,$class,$method) = explode('.',$GLOBALS['HTTP_GET_VARS']['menuaction']);
|
2001-07-09 19:33:19 +02:00
|
|
|
if (! $app || ! $class || ! $method)
|
|
|
|
{
|
|
|
|
$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
|
|
|
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
2001-07-09 19:33:19 +02:00
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'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
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
if ($app == 'home')
|
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
|
|
|
|
2001-09-02 09:27:17 +02:00
|
|
|
$GLOBALS['obj'] = CreateObject(sprintf('%s.%s',$app,$class));
|
|
|
|
if ((is_array($GLOBALS['obj']->public_functions) && $GLOBALS['obj']->public_functions[$method]) && ! $invalid_data)
|
2001-07-04 05:00:05 +02:00
|
|
|
{
|
2001-09-02 09:27:17 +02:00
|
|
|
eval("\$GLOBALS['obj']->$method();");
|
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
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/home.php'));
|
|
|
|
$GLOBALS['phpgw']->log->message(array('text'=>'W-BadmenuactionVariable, menuaction missing or corrupt: %1','p1'=>$menuaction));
|
2001-08-05 12:13:54 +02:00
|
|
|
if (! is_array($obj->public_functions) || ! $obj->public_functions[$method])
|
|
|
|
{
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw']->log->message(array('text'=>'W-BadmenuactionVariable, attempted to access private method: %1','p1'=>$method));
|
2001-08-05 12:13:54 +02:00
|
|
|
}
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw']->log->commit();
|
2001-08-05 12:13:54 +02:00
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
/*
|
|
|
|
$_obj = CreateObject('home.home');
|
|
|
|
$_obj->get_list();
|
|
|
|
*/
|
2001-02-16 05:01:40 +01:00
|
|
|
}
|
2000-08-18 05:24:22 +02:00
|
|
|
|
2001-08-21 20:34:56 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-09-02 09:27:17 +02:00
|
|
|
?>
|