2000-10-12 19:36:47 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2000-12-15 23:09:13 +01:00
|
|
|
* phpGroupWare *
|
2000-10-12 19:36:47 +02:00
|
|
|
* http://www.phpgroupware.org *
|
2000-12-15 23:09:13 +01:00
|
|
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
2000-10-12 19:36:47 +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. *
|
|
|
|
\**************************************************************************/
|
2000-12-23 17:33:22 +01:00
|
|
|
/* $Id$ */
|
2000-10-12 19:36:47 +02:00
|
|
|
{
|
2001-05-24 03:13:09 +02:00
|
|
|
// Only Modify the $file and $title variables.....
|
|
|
|
$title = $appname;
|
2001-11-23 21:05:08 +01:00
|
|
|
$file = array(
|
2001-12-27 16:15:19 +01:00
|
|
|
'Preferences' => $GLOBALS['phpgw']->link('/index.php',
|
|
|
|
Array(
|
|
|
|
'menuaction' => 'calendar.uipreferences.preferences'
|
|
|
|
)
|
|
|
|
),
|
2001-11-23 21:05:08 +01:00
|
|
|
'Grant Access' => $GLOBALS['phpgw']->link('/preferences/acl_preferences.php','acl_app='.$appname),
|
|
|
|
'Edit Categories' => $GLOBALS['phpgw']->link('/preferences/categories.php','cats_app='.$appname.'&global_cats=True')
|
2001-05-24 03:13:09 +02:00
|
|
|
);
|
|
|
|
//Do not modify below this line
|
|
|
|
display_section($appname,$title,$file);
|
2000-10-12 19:36:47 +02:00
|
|
|
}
|
|
|
|
?>
|