mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare *
|
|
* http://www.phpgroupware.org *
|
|
* Written by Joseph Engo <jengo@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 $ */
|
|
{
|
|
echo "<p>\n";
|
|
$imgfile = $phpgw->common->get_image_dir("addressbook")."/" . $appname .".gif";
|
|
if (file_exists($imgfile)) {
|
|
$imgpath = $phpgw->common->get_image_path("addressbook")."/" . $appname .".gif";
|
|
} else {
|
|
$imgfile = $phpgw->common->get_image_dir("addressbook")."/navbar.gif";
|
|
if (file_exists($imgfile)) {
|
|
$imgpath = $phpgw->common->get_image_path("addressbook")."/navbar.gif";
|
|
} else {
|
|
$imgpath = "";
|
|
}
|
|
}
|
|
section_start("Address Book",$imgpath);
|
|
|
|
$pg = $phpgw->link($phpgw_info["server"]["webserver_url"]."/addressbook/preferences.php");
|
|
echo "<A href=".$pg.">" . lang("Addressbook preferences") . "</A>";
|
|
|
|
section_end();
|
|
}
|
|
?>
|