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-07-11 07:12:27 +02:00
|
|
|
if (! $sessionid)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
if ($menuaction)
|
2001-04-08 08:54:42 +02:00
|
|
|
{
|
2001-07-09 19:33:19 +02:00
|
|
|
list($app,$class,$method) = explode('.',$menuaction);
|
|
|
|
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-05-02 09:52:31 +02:00
|
|
|
$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-07-09 19:33:19 +02:00
|
|
|
Header('Location: ' . $phpgw->link('/home.php'));
|
2001-04-08 08:54:42 +02:00
|
|
|
}
|
2000-12-11 10:18:09 +01:00
|
|
|
|
2001-07-09 19:33:19 +02:00
|
|
|
$obj = CreateObject(sprintf('%s.%s',$app,$class));
|
|
|
|
if ((is_array($obj->public_functions) && $obj->public_functions[$method]) && ! $invalid_data)
|
2001-07-04 05:00:05 +02:00
|
|
|
{
|
2001-07-09 19:33:19 +02:00
|
|
|
eval("\$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-07-09 19:33:19 +02:00
|
|
|
Header('Location: ' . $phpgw->link('/home.php'));
|
2001-08-07 00:18:42 +02:00
|
|
|
$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-07 00:18:42 +02:00
|
|
|
$phpgw->log->message(array('text'=>'W-BadmenuactionVariable, attempted to access private method: %1','p1'=>$method));
|
2001-08-05 12:13:54 +02:00
|
|
|
}
|
|
|
|
$phpgw->log->commit();
|
|
|
|
|
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-04-08 08:54:42 +02:00
|
|
|
$phpgw->common->phpgw_footer();
|