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. *
|
|
|
|
\**************************************************************************/
|
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-05-18 17:18:02 +02:00
|
|
|
if (!file_exists('header.inc.php'))
|
|
|
|
{
|
|
|
|
Header('Location: setup/index.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2003-05-18 17:22:43 +02:00
|
|
|
$GLOBALS['sessionid'] = isset($_GET['sessionid']) ? $_GET['sessionid'] : $_COOKIE['sessionid'];
|
2001-08-21 20:34:56 +02:00
|
|
|
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
|
|
|
|
*/
|
2003-05-18 17:18:02 +02:00
|
|
|
if (@isset($_GET['menuaction']))
|
2001-04-08 08:54:42 +02:00
|
|
|
{
|
2003-05-18 17:18:02 +02:00
|
|
|
list($app,$class,$method) = explode('.',$_GET['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-11-01 05:09:13 +01:00
|
|
|
if ($app == 'phpgwapi')
|
|
|
|
{
|
|
|
|
$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
|
|
|
|
2001-11-01 05:09:13 +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
|
|
|
|
2001-11-01 05:09:13 +01:00
|
|
|
if ($api_requested)
|
|
|
|
{
|
|
|
|
$app = 'phpgwapi';
|
|
|
|
}
|
|
|
|
|
2001-09-02 09:27:17 +02:00
|
|
|
$GLOBALS['obj'] = CreateObject(sprintf('%s.%s',$app,$class));
|
2001-09-17 04:18:32 +02:00
|
|
|
$GLOBALS[$class] = $GLOBALS['obj'];
|
|
|
|
if ((is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions[$method]) && ! $invalid_data)
|
2001-07-04 05:00:05 +02:00
|
|
|
{
|
2001-09-17 04:18:32 +02:00
|
|
|
// eval("\$GLOBALS['obj']->$method();");
|
2003-05-18 17:18:02 +02:00
|
|
|
execmethod($_GET['menuaction']);
|
2001-11-01 05:33:07 +01:00
|
|
|
unset($app);
|
|
|
|
unset($obj);
|
|
|
|
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
|
|
|
{
|
2001-11-01 05:16:35 +01:00
|
|
|
if (! $app || ! $class || ! $method)
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->log->message(array(
|
|
|
|
'text' => 'W-BadmenuactionVariable, menuaction missing or corrupt: %1',
|
|
|
|
'p1' => $menuaction,
|
|
|
|
'line' => __LINE__,
|
|
|
|
'file' => __FILE__
|
|
|
|
));
|
|
|
|
}
|
2001-11-01 05:09:13 +01:00
|
|
|
|
2001-11-01 05:16:35 +01:00
|
|
|
if (! is_array($obj->public_functions) || ! $obj->public_functions[$method] && $method)
|
2001-08-05 12:13:54 +02:00
|
|
|
{
|
2001-11-01 05:09:13 +01:00
|
|
|
$GLOBALS['phpgw']->log->message(array(
|
|
|
|
'text' => 'W-BadmenuactionVariable, attempted to access private method: %1',
|
|
|
|
'p1' => $method,
|
|
|
|
'line' => __LINE__,
|
|
|
|
'file' => __FILE__
|
|
|
|
));
|
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
|
|
|
|
2003-05-18 17:18:02 +02:00
|
|
|
$GLOBALS['phpgw']->redirect_link('/home.php');
|
2001-07-09 19:33:19 +02:00
|
|
|
/*
|
|
|
|
$_obj = CreateObject('home.home');
|
|
|
|
$_obj->get_list();
|
|
|
|
*/
|
2001-02-16 05:01:40 +01:00
|
|
|
}
|
2003-08-28 16:16:30 +02:00
|
|
|
|
2003-10-24 06:39:42 +02: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
|
|
|
?>
|