egroupware/addressbook/inc/hook_addressbook_about.inc.php
2001-04-10 04:34:33 +00:00

48 lines
1.4 KiB
PHP

<?php
function about_app()
{
global $phpgw, $phpgw_info;
$appname = 'addressbook';
$imgfile = $phpgw->common->get_image_dir($appname) . SEP . $appname . '.gif';
if (file_exists($imgfile))
{
$imgpath = $phpgw->common->get_image_path($appname) . SEP . $appname . '.gif';
}
else
{
$imgfile = $phpgw->common->get_image_dir($appname) . SEP . 'navbar.gif';
if (file_exists($imgfile))
{
$imgpath = $phpgw->common->get_image_path($appname) . SEP . 'navbar.gif';
}
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"));
$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.');
$tpl->set_var("url",$phpgw->link('/addressbook'));
$tpl->set_var("image",$imgpath);
$tpl->set_var("alt",lang('addressbook'));
$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");
}