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

View File

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

View File

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