2001-04-08 10:19:38 +02:00
< ? php
function about_app ()
{
global $phpgw , $phpgw_info ;
$appname = 'addressbook' ;
2001-04-10 06:34:33 +02:00
$imgfile = $phpgw -> common -> get_image_dir ( $appname ) . SEP . $appname . '.gif' ;
2001-04-08 10:19:38 +02:00
if ( file_exists ( $imgfile ))
{
2001-04-10 06:34:33 +02:00
$imgpath = $phpgw -> common -> get_image_path ( $appname ) . SEP . $appname . '.gif' ;
2001-04-08 10:19:38 +02:00
}
else
{
2001-04-10 06:34:33 +02:00
$imgfile = $phpgw -> common -> get_image_dir ( $appname ) . SEP . 'navbar.gif' ;
2001-04-08 10:19:38 +02:00
if ( file_exists ( $imgfile ))
{
2001-04-10 06:34:33 +02:00
$imgpath = $phpgw -> common -> get_image_path ( $appname ) . SEP . 'navbar.gif' ;
2001-04-08 10:19:38 +02:00
}
else
{
$imgpath = '' ;
}
}
$browser = CreateObject ( 'phpgwapi.browser' );
$os = $browser -> get_platform ();
$agent = ucfirst ( strtolower ( $browser -> get_agent ()));
$version = $browser -> get_version ();
$tpl = new Template ( $phpgw -> common -> get_tpl_dir ( " addressbook " ));
$tpl -> set_file ( array ( " body " => " about.tpl " ));
2001-04-08 10:22:36 +02:00
$tpl -> set_var ( " about_addressbook " , 'Addressbook is the phpgroupware default contact application. 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
$tpl -> set_var ( " url " , $phpgw -> link ( '/addressbook' ));
$tpl -> set_var ( " image " , $imgpath );
2001-04-08 10:22:36 +02:00
$tpl -> set_var ( " alt " , lang ( 'addressbook' ));
2001-04-08 10:19:38 +02:00
$tpl -> set_var ( " version " , $version );
$tpl -> set_var ( " agent " , $agent );
$tpl -> set_var ( " platform " , $os );
$tpl -> set_var ( " appear " , lang ( 'You appear to be running' ));
$tpl -> set_var ( " on " , lang ( 'on' ));
return $tpl -> parse ( " out " , " body " );
}