From b75dfc816d424cfa8d4f3af29fbd7015de9d21c2 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 17 Jun 2005 07:17:54 +0000 Subject: [PATCH] fixed index file: new version requires the contacts_and_resources branch --- calendar/index.php | 58 +++++++++++++++++++++++++++++++--------------- 1 file changed, 39 insertions(+), 19 deletions(-) diff --git a/calendar/index.php b/calendar/index.php index 2b8c7f90b2..fa14663891 100755 --- a/calendar/index.php +++ b/calendar/index.php @@ -1,25 +1,45 @@ * -* -------------------------------------------- * -* 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. * -\**************************************************************************/ + /**************************************************************************\ + * eGroupWare - Calendar * + * http://www.egroupware.org * + * Based on Webcalendar by Craig Knudsen * + * http://www.radix.net/~cknudsen * + * Modified by Mark Peters * + * -------------------------------------------- * + * 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$ */ + /* $Id$ */ -$GLOBALS['egw_info'] = array('flags' => array( - 'currentapp'=> 'calendar', - 'noheader' => True, - 'nonavbar' => True, -)); + $phpgw_flags = Array( + 'currentapp' => 'calendar', + 'noheader' => True, + 'nonavbar' => True, + 'noappheader' => True, + 'noappfooter' => True, + 'nofooter' => True + ); -include('../header.inc.php'); + $GLOBALS['phpgw_info']['flags'] = $phpgw_flags; -ExecMethod('calendar.uiviews.index'); + include('../header.inc.php'); + if(!is_object($GLOBALS['phpgw']->datetime)) + { + $GLOBALS['phpgw']->datetime = CreateObject('phpgwapi.datetime'); + } -$GLOBALS['egw']->common->egw_footer(); + $parms = Array( +# 'menuaction'=> 'calendar.uicalendar.index', + 'date' => date('Ymd',$GLOBALS['phpgw']->datetime->users_localtime) + ); + + //echo 'Local DateTime: '.date('Ymd H:i:s',$GLOBALS['phpgw']->datetime->users_localtime).'
'."\n"; + +# $GLOBALS['phpgw']->redirect_link('/index.php',$parms); + ExecMethod('calendar.uicalendar.index',$parms); + $GLOBALS['phpgw']->common->phpgw_exit(); + +?>