2001-04-08 10:19:38 +02:00
< ? php
2002-03-19 03:58:13 +01:00
/************************************************************************** \
* phpGroupWare *
* http :// www . phpgroupware . org *
* Written by Mark Peters < skeeter @ 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$ */
2001-04-08 10:19:38 +02:00
function about_app ()
{
2002-03-19 03:58:13 +01:00
$GLOBALS [ 'tpl' ] -> set_var ( 'developers' , 'Joseph Engo [jengo@phpgroupware.org]<br>Miles Lott [milosch@phpgroupware.org]' );
$GLOBALS [ 'tpl' ] -> set_var ( 'description' , lang ( 'Addressbook is the phpgroupware default contact application. <br>It makes use of the phpgroupware contacts class to store and retrieve contact information via SQL or LDAP.' ));
2001-04-08 10:19:38 +02:00
2002-03-19 03:58:13 +01:00
return $GLOBALS [ 'tpl' ] -> fp ( 'out' , 'about' );
2001-04-08 10:19:38 +02:00
}