mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:18 +01:00
GLOBALS
This commit is contained in:
parent
9e395f3535
commit
54013f4a19
@ -13,14 +13,12 @@
|
||||
{
|
||||
// Only Modify the $file and $title variables.....
|
||||
$title = $appname;
|
||||
$file = Array(
|
||||
'Calendar preferences' => $phpgw->link('/index.php',
|
||||
Array(
|
||||
$file = array(
|
||||
'Calendar preferences' => $GLOBALS['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')
|
||||
)),
|
||||
'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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user