mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - Calendar *
|
|
* 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$ */
|
|
{
|
|
$img = "/" . $appname . "/images/" . $appname .".gif";
|
|
if (file_exists($phpgw_info["server"]["server_root"].$img)) {
|
|
$img = $phpgw_info["server"]["webserver_url"].$img;
|
|
} else {
|
|
$img = "/" . $appname . "/images/navbar.gif";
|
|
if (file_exists($phpgw_info["server"]["server_root"].$img)) {
|
|
$img=$phpgw_info["server"]["webserver_url"].$img;
|
|
} else {
|
|
$img = "";
|
|
}
|
|
}
|
|
section_start("Calendar",$img);
|
|
|
|
$pg = $phpgw->link($phpgw_info["server"]["webserver_url"]."/calendar/preferences.php");
|
|
echo "<a href=".$pg.">" . lang("Calendar preferences") . "</a>";
|
|
|
|
section_end();
|
|
}
|
|
?>
|