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' );
$GLOBALS [ 'phpgw' ] -> help = CreateObject ( 'phpgwapi.help_helper' );
$GLOBALS [ 'phpgw' ] -> help -> set_params ( array ( 'app_name' => 'addressbook' ,
'title' => lang ( 'addressbook overview' ),
2002-12-16 01:52:48 +01:00
'controls' => array ( 'app_intro' => 'overview.php' ,
'down' => 'add.php' )));
2002-12-01 04:28:30 +01:00
$values [ 'overview' ] = array
(
2002-12-16 01:52:48 +01:00
'intro' => 'A searchable address book for keeping contact information of business associates or friends and family. A quick and detailed address book, to keep various levels of contact information and a search function to find people you need quickly.'
2002-12-01 04:28:30 +01:00
);
$GLOBALS [ 'phpgw' ] -> help -> xdraw ( $values );
$GLOBALS [ 'phpgw' ] -> xslttpl -> set_var ( 'phpgw' , $GLOBALS [ 'phpgw' ] -> help -> output );
?>