mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-03 09:31:24 +01:00
GLOBALS
This commit is contained in:
parent
9e395f3535
commit
54013f4a19
@ -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);
|
||||||
|
@ -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);
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user