This commit is contained in:
Miles Lott 2001-11-23 20:05:08 +00:00
parent 9e395f3535
commit 54013f4a19
3 changed files with 11 additions and 13 deletions

View File

@ -13,14 +13,12 @@
{ {
// Only Modify the $file and $title variables..... // Only Modify the $file and $title variables.....
$title = $appname; $title = $appname;
$file = Array( $file = array(
'Calendar preferences' => $phpgw->link('/index.php', 'Calendar preferences' => $GLOBALS['phpgw']->link('/index.php',array(
Array( 'menuaction' => 'calendar.uipreferences.preferences'
'menuaction' => 'calendar.uipreferences.preferences' )),
) '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')
'Grant Access' => $phpgw->link('/preferences/acl_preferences.php','acl_app='.$appname),
'Edit Categories' => $phpgw->link('/preferences/categories.php','cats_app='.$appname.'&global_cats=True')
); );
//Do not modify below this line //Do not modify below this line
display_section($appname,$title,$file); display_section($appname,$title,$file);

View File

@ -15,7 +15,7 @@
// Only Modify the $file and $title variables..... // Only Modify the $file and $title variables.....
$title = "PHPWebHosting"; $title = "PHPWebHosting";
$file = Array( $file = Array(
'Preferences' => $phpgw->link('/phpwebhosting/preferences.php') 'Preferences' => $GLOBALS['phpgw']->link('/phpwebhosting/preferences.php')
); );
//Do not modify below this line //Do not modify below this line
display_section($appname,$title,$file); display_section($appname,$title,$file);

View File

@ -15,10 +15,10 @@
{ {
// Only Modify the $file and $title variables..... // Only Modify the $file and $title variables.....
$title = $appname; $title = $appname;
$file = Array( $file = array(
'Preferences' => $phpgw->link('/index.php','menuaction=infolog.uiinfolog.preferences'), 'Preferences' => $GLOBALS['phpgw']->link('/index.php','menuaction=infolog.uiinfolog.preferences'),
'Grant Access' => $phpgw->link('/preferences/acl_preferences.php','acl_app='.$appname), 'Grant Access' => $GLOBALS['phpgw']->link('/preferences/acl_preferences.php','acl_app='.$appname),
'Edit Categories' => $phpgw->link('/preferences/categories.php','cats_app='.$appname) 'Edit Categories' => $GLOBALS['phpgw']->link('/preferences/categories.php','cats_app='.$appname)
); );
//Do not modify below this line //Do not modify below this line
display_section($appname,$title,$file); display_section($appname,$title,$file);