2001-05-15 06:10:37 +02:00
|
|
|
<?php
|
2001-05-16 07:12:20 +02:00
|
|
|
/**************************************************************************\
|
2005-11-09 00:15:14 +01:00
|
|
|
* eGroupWare - Calendar *
|
2004-01-27 01:31:58 +01:00
|
|
|
* http://www.egroupware.org *
|
2001-05-16 07:12:20 +02:00
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
2002-03-13 22:38:54 +01:00
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
/* $Id$ */
|
|
|
|
{
|
2001-05-24 03:13:09 +02:00
|
|
|
// Only Modify the $file and $title variables.....
|
2003-08-28 16:31:11 +02:00
|
|
|
$title = $appname;
|
|
|
|
$file = Array(
|
2005-11-09 00:15:14 +01:00
|
|
|
'Site Configuration' => $GLOBALS['egw']->link('/index.php','menuaction=admin.uiconfig.index&appname=calendar'),
|
|
|
|
'Custom fields' => $GLOBALS['egw']->link('/index.php','menuaction=admin.customfields.edit&appname=calendar'),
|
|
|
|
'Calendar Holiday Management' => $GLOBALS['egw']->link('/index.php','menuaction=calendar.uiholiday.admin'),
|
|
|
|
'Global Categories' => $GLOBALS['egw']->link('/index.php','menuaction=admin.uicategories.index&appname=calendar')
|
2003-08-28 16:31:11 +02:00
|
|
|
);
|
2001-05-24 03:13:09 +02:00
|
|
|
//Do not modify below this line
|
2003-08-28 16:31:11 +02:00
|
|
|
display_section($appname,$title,$file);
|
|
|
|
}
|
2001-05-24 03:13:09 +02:00
|
|
|
?>
|