[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] addressbook/inc hook_admin.inc.php
From: |
Dave Hall |
Subject: |
[Phpgroupware-cvs] addressbook/inc hook_admin.inc.php |
Date: |
Sat, 09 Sep 2006 05:37:38 +0000 |
CVSROOT: /cvsroot/phpgroupware
Module name: addressbook
Changes by: Dave Hall <skwashd> 06/09/09 05:37:38
Modified files:
inc : hook_admin.inc.php
Log message:
fix link extrvars arg
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/addressbook/inc/hook_admin.inc.php?cvsroot=phpgroupware&r1=1.17&r2=1.18
Patches:
Index: hook_admin.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/addressbook/inc/hook_admin.inc.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- hook_admin.inc.php 15 May 2005 13:34:30 -0000 1.17
+++ hook_admin.inc.php 9 Sep 2006 05:37:38 -0000 1.18
@@ -10,19 +10,20 @@
* option) any later version.
*
\**************************************************************************/
- // $Id: hook_admin.inc.php,v 1.17 2005/05/15 13:34:30 skwashd Exp $
+ // $Id: hook_admin.inc.php,v 1.18 2006/09/09 05:37:38 skwashd Exp $
// $Source: /cvsroot/phpgroupware/addressbook/inc/hook_admin.inc.php,v $
// Only Modify the $file and $title variables.....
$title = $appname;
- $file = Array(
- 'Site Configuration' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiconfig.index&appname='
. $appname),
- 'Edit custom fields' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uifields.index'),
- 'Global Categories' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicategories.index&appname=addressbook'),
- 'Communication Types Manager' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uicatalog_contact_comm_type.view'),
- 'Communication Descriptions Manager' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uicatalog_contact_comm_descr.view'),
- 'Location Manager' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uicatalog_contact_addr_type.view'),
- 'Notes Types Manager' =>
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uicatalog_contact_note_type.view')
+ $file = array
+ (
+ 'Site Configuration' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'admin.uiconfig.index', 'appname' => 'addressbook') ),
+ 'Edit custom fields' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'addressbook.uifields.index') ),
+ 'Global Categories' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'admin.uicategories.index', 'appname' => 'addressbook') ),
+ 'Communication Types Manager' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'addressbook.uicatalog_contact_comm_type.view') ),
+ 'Communication Descriptions Manager' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'addressbook.uicatalog_contact_comm_descr.view') ),
+ 'Location Manager' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'addressbook.uicatalog_contact_addr_type.view') ),
+ 'Notes Types Manager' =>
$GLOBALS['phpgw']->link('/index.php', array('menuaction' =>
'addressbook.uicatalog_contact_note_type.view') )
);
//Do not modify below this line
display_section($appname,$title,$file);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] addressbook/inc hook_admin.inc.php,
Dave Hall <=