2002-12-01 04:28:30 +01:00
< ? php
/************************************************************************** \
* phpGroupWare - User manual *
* http :// www . phpgroupware . org *
* -------------------------------------------- *
* 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$ */
$GLOBALS [ 'phpgw_info' ][ 'flags' ] = Array
(
'headonly' => True ,
'currentapp' => 'addressbook'
);
include ( '../../../header.inc.php' );
2002-12-16 01:52:48 +01:00
$GLOBALS [ 'phpgw' ] -> help = CreateObject ( 'phpgwapi.help_helper' );
2002-12-01 04:28:30 +01:00
$GLOBALS [ 'phpgw' ] -> help -> set_params ( array ( 'app_name' => 'addressbook' ,
2002-12-23 02:40:14 +01:00
'title' => lang ( 'addressbook' ) . ' - ' . lang ( 'add' ),
2002-12-23 01:57:08 +01:00
'controls' => array ( 'up' => 'list.php' )));
2002-12-01 04:28:30 +01:00
$values [ 'add' ] = array
(
2002-12-24 01:42:49 +01:00
'add_img' => $GLOBALS [ 'phpgw' ] -> common -> image ( 'addressbook' , 'help_add' ),
'item_1' => 'Add any and all information that you see fit. You can use the tab key to tab from one field to the next.' ,
'item_2' => 'Once you have entered all the information, press OK to accept, Clear to erase all information in all the fields or Cancel to exit this screen.' ,
2002-12-01 04:28:30 +01:00
'lang_lastname' => 'Last name' ,
2002-12-16 01:52:48 +01:00
'lang_firstname' => 'First name' ,
2002-12-01 04:28:30 +01:00
'lang_email' => 'E-mail' ,
'lang_homephone' => 'Home phone' ,
'lang_workphone' => 'Work phone' ,
'lang_mobile' => 'Mobile' ,
'lang_street' => 'Street' ,
'lang_city' => 'City' ,
'lang_state' => 'State' ,
'lang_zip' => 'ZIP code' ,
'lang_access' => 'Access' ,
2002-12-23 01:57:08 +01:00
'lang_groupsettings' => 'Group settings' ,
2002-12-01 04:28:30 +01:00
'lang_notes' => 'Notes' ,
'lang_company' => 'Company name' ,
2002-12-16 01:52:48 +01:00
'lang_fax' => 'Fax' ,
'lang_pager' => 'Pager' ,
'lang_othernumber' => 'Other number' ,
'lang_birthday' => 'Birthday' ,
2002-12-01 04:28:30 +01:00
'end' => 'Simply fill in the fields, and click OK.' ,
'access_descr' => ' Access can be restricted to private , overriding acl preferences settings .
From preferences , you can grant access to users to the be able to view ,
edit , and even delete your entries . '
);
$GLOBALS [ 'phpgw' ] -> help -> xdraw ( $values );
2002-12-16 01:52:48 +01:00
$GLOBALS [ 'phpgw' ] -> xslttpl -> set_var ( 'phpgw' , $GLOBALS [ 'phpgw' ] -> help -> output );
2002-12-01 04:28:30 +01:00
?>