mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-19 06:23:32 +01:00
35 lines
1.4 KiB
PHP
35 lines
1.4 KiB
PHP
<?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'),
|
|
'params' => array('app_intro' => 'overview.php')));
|
|
|
|
|
|
$values['overview'] = array
|
|
(
|
|
'intro' => 'A searchable address book for keeping contact information of business associates or friends and family.'
|
|
);
|
|
|
|
$GLOBALS['phpgw']->help->xdraw($values);
|
|
$GLOBALS['phpgw']->xslttpl->set_var('phpgw',$GLOBALS['phpgw']->help->output);
|
|
?>
|