2001-05-15 06:10:37 +02:00
|
|
|
<?php
|
2001-05-16 07:12:20 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* Written by Joseph Engo <jengo@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. *
|
|
|
|
\**************************************************************************/
|
2001-05-15 06:10:37 +02:00
|
|
|
|
2001-05-16 07:12:20 +02:00
|
|
|
/* $Id$ */
|
2001-05-24 03:13:09 +02:00
|
|
|
{
|
|
|
|
// Only Modify the $file and $title variables.....
|
|
|
|
$title = $appname;
|
|
|
|
$file = Array(
|
2001-07-05 18:17:41 +02:00
|
|
|
'Site Configuration' => $phpgw->link('/admin/config.php','appname=' . $appname),
|
2001-07-30 00:04:41 +02:00
|
|
|
'Calendar Holiday Management' => $phpgw->link('/index.php','menuaction=calendar.uiholiday.admin')
|
2001-05-24 03:13:09 +02:00
|
|
|
);
|
|
|
|
//Do not modify below this line
|
|
|
|
display_section($appname,$title,$file);
|
|
|
|
}
|
|
|
|
?>
|