next step:

- view & edit is now integrated in the views
- view has now buttons to edit, edit-series, copy, delete and delete-series
- add: participants/resources can now be set via the url
- conflict check is coded, but need testing and a conflict display
This commit is contained in:
Ralf Becker 2005-06-15 13:26:09 +00:00
parent cbd4c0e92d
commit fc4a052663

View File

@ -1,45 +1,25 @@
<?php <?php
/**************************************************************************\ /**************************************************************************\
* eGroupWare - Calendar * * eGroupWare - Calendar *
* http://www.egroupware.org * * http://www.egroupware.org *
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> * * Written and (c) 2005 by Ralf Becker <RalfBecker@outdoor-training.de> *
* http://www.radix.net/~cknudsen * * -------------------------------------------- *
* Modified by Mark Peters <skeeter@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 *
* This program is free software; you can redistribute it and/or modify it * * Free Software Foundation; either version 2 of the License, or (at your *
* under the terms of the GNU General Public License as published by the * * option) any later version. *
* Free Software Foundation; either version 2 of the License, or (at your * \**************************************************************************/
* option) any later version. *
\**************************************************************************/
/* $Id$ */ /* $Id$ */
$phpgw_flags = Array( $GLOBALS['egw_info'] = array('flags' => array(
'currentapp' => 'calendar', 'currentapp'=> 'calendar',
'noheader' => True, 'noheader' => True,
'nonavbar' => True, 'nonavbar' => True,
'noappheader' => True, ));
'noappfooter' => True,
'nofooter' => True
);
$GLOBALS['phpgw_info']['flags'] = $phpgw_flags; include('../header.inc.php');
include('../header.inc.php'); ExecMethod('calendar.uiviews.index');
if(!is_object($GLOBALS['phpgw']->datetime))
{
$GLOBALS['phpgw']->datetime = CreateObject('phpgwapi.datetime');
}
$parms = Array( $GLOBALS['egw']->common->egw_footer();
# '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).'<br>'."\n";
# $GLOBALS['phpgw']->redirect_link('/index.php',$parms);
ExecMethod('calendar.uicalendar.index',$parms);
$GLOBALS['phpgw']->common->phpgw_exit();
?>