mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
77 lines
2.9 KiB
PHP
77 lines
2.9 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - InfoLog Admin-, Preferences- and SideboxMenu-Hooks *
|
|
* http://www.eGroupWare.org *
|
|
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
|
|
* ------------------------------------------------------- *
|
|
* 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. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
class admin_prefs_sidebox_hooks
|
|
{
|
|
function all_hooks($args)
|
|
{
|
|
$appname = 'infolog';
|
|
$location = is_array($args) ? $args['location'] : $args;
|
|
//echo "<p>admin_prefs_sidebox_hooks::all_hooks(".print_r($args,True).") appname='$appname', location='$location'</p>\n";
|
|
|
|
if ($location == 'sidebox_menu')
|
|
{
|
|
$file = array(
|
|
'infolog list' => $GLOBALS['phpgw']->link('/index.php',array(
|
|
'menuaction' => 'infolog.uiinfolog.index' )),
|
|
'add' => $GLOBALS['phpgw']->link('/index.php',array(
|
|
'menuaction' => 'infolog.uiinfolog.edit' ))
|
|
);
|
|
display_sidebox($appname,$GLOBALS['phpgw_info']['apps']['infolog']['title'].' '.lang('Menu'),$file);
|
|
}
|
|
|
|
if ($GLOBALS['phpgw_info']['user']['apps']['preferences'] && $location != 'admin')
|
|
{
|
|
$file = array(
|
|
'Preferences' => $GLOBALS['phpgw']->link('/preferences/preferences.php','appname='.$appname),
|
|
'Grant Access' => $GLOBALS['phpgw']->link('/index.php','menuaction=preferences.uiaclprefs.index&acl_app='.$appname),
|
|
'Edit Categories' => $GLOBALS['phpgw']->link('/index.php','menuaction=preferences.uicategories.index&cats_app=' . $appname . '&cats_level=True&global_cats=True')
|
|
);
|
|
if ($location == 'preferences')
|
|
{
|
|
display_section($appname,$file);
|
|
}
|
|
else
|
|
{
|
|
display_sidebox($appname,lang('Preferences'),$file);
|
|
}
|
|
}
|
|
|
|
if ($GLOBALS['phpgw_info']['user']['apps']['admin'] && $location != 'preferences')
|
|
{
|
|
$file = Array(
|
|
'Site configuration' => $GLOBALS['phpgw']->link('/index.php',array(
|
|
'menuaction' => 'infolog.uiinfolog.admin' )),
|
|
'Global Categories' => $GLOBALS['phpgw']->link('/index.php',array(
|
|
'menuaction' => 'admin.uicategories.index',
|
|
'appname' => $appname,
|
|
'global_cats'=> True)),
|
|
'Custom fields, typ and status' => $GLOBALS['phpgw']->link('/index.php',array(
|
|
'menuaction' => 'infolog.uicustomfields.edit')),
|
|
'CSV-Import' => $GLOBALS['phpgw']->link('/infolog/csv_import.php')
|
|
);
|
|
if ($location == 'admin')
|
|
{
|
|
display_section($appname,$file);
|
|
}
|
|
else
|
|
{
|
|
display_sidebox($appname,lang('Admin'),$file);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|