LDAPAccountManager/lam/templates/main_header.php

88 lines
2.9 KiB
PHP
Raw Normal View History

<?php
2003-03-14 21:59:04 +00:00
/*
$Id$
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2006-03-03 17:30:35 +00:00
Copyright (C) 2003 - 2006 Roland Gruber
2003-03-14 21:59:04 +00:00
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.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2004-06-10 19:01:18 +00:00
*/
2003-06-01 16:35:02 +00:00
2004-06-10 19:01:18 +00:00
/**
* Head frame in main window, includes links to lists etc.
*
* @package main
* @author Roland Gruber
2003-03-14 21:59:04 +00:00
*/
2004-06-10 19:01:18 +00:00
2006-03-26 17:51:25 +00:00
/** security functions */
include_once("../lib/security.inc");
2004-06-10 19:01:18 +00:00
/** access to configuration options */
2006-03-26 17:51:25 +00:00
include_once("../lib/config.inc");
/** self service functions */
include_once("../lib/selfService.inc");
2003-07-26 11:11:25 +00:00
// start session
2006-03-26 17:51:25 +00:00
startSecureSession();
2003-07-26 11:11:25 +00:00
setlanguage();
2003-03-14 21:59:04 +00:00
2003-07-29 11:52:26 +00:00
echo $_SESSION['header'];
2004-01-27 18:05:35 +00:00
// number of list views (users, groups, ...)
2006-01-01 16:30:05 +00:00
$types = $_SESSION['config']->get_ActiveTypes();
2004-01-27 18:05:35 +00:00
2003-03-14 21:59:04 +00:00
?>
2003-06-01 16:35:02 +00:00
<title></title>
<link rel="stylesheet" type="text/css" href="../style/layout.css">
2003-04-09 17:10:00 +00:00
</head>
2003-06-01 16:35:02 +00:00
2003-04-09 17:10:00 +00:00
<body>
<table border=0 width="100%">
2003-06-01 13:59:13 +00:00
<tr>
<td width="200">
<?PHP
if (!isLAMProVersion()) {
2009-08-10 16:13:27 +00:00
echo "<a href=\"http://www.ldap-account-manager.org/lamcms/donations\" target=\"_blank\"><img alt=\"donations\" src=\"../graphics/smile.png\">&nbsp;" . _("Donate") . "</a>";
echo "<br><br>";
}
?>
2006-05-23 14:28:08 +00:00
<a href="tools.php" target="mainpart"><img alt="tools" src="../graphics/tools.png">&nbsp;<BIG><B><?php echo _("Tools") ?></B></BIG></a>
</td>
2006-05-08 09:54:44 +00:00
<td align="center">
2009-08-10 16:13:27 +00:00
<a href="http://www.ldap-account-manager.org/" target="new_window"><img src="../graphics/banner.jpg" border=1 alt="LDAP Account Manager"></a>
2003-06-01 13:59:13 +00:00
</td>
2007-04-21 11:04:50 +00:00
<td width="200" align="right" height=20><a href="./logout.php" target="_top"><img alt="logout" src="../graphics/exit.png">&nbsp;<big><b><?php echo _("Logout") ?></b></big></a></td>
</tr>
2006-05-19 11:13:20 +00:00
</table>
<p align="center">
2003-09-01 21:28:26 +00:00
<?php
2006-05-13 08:40:01 +00:00
$linkList = array();
2005-02-27 12:40:06 +00:00
if ($_SESSION['config']->get_Suffix('tree') != "") {
2006-05-23 14:28:08 +00:00
$linkList[] = '<a href="./tree/tree_view.php" target="mainpart"><img alt="tree view" src="../graphics/process.png">&nbsp;<big>' . _("Tree view") . '</big></a>' . "\n";
2005-02-27 12:40:06 +00:00
}
2006-01-01 16:30:05 +00:00
for ($i = 0; $i < sizeof($types); $i++) {
2006-05-23 14:28:08 +00:00
$linkList[] = '<a href="./lists/list.php?type=' . $types[$i] . '" target="mainpart">' .
'<img alt="' . $types[$i] . '" src="../graphics/' . $types[$i] . '.png">&nbsp;' .
'<big>' . getTypeAlias($types[$i]) . '</big></a>';
2003-07-26 11:11:25 +00:00
}
2006-05-13 08:40:01 +00:00
echo implode('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;', $linkList);
2003-07-26 11:11:25 +00:00
?>
2006-05-19 11:13:20 +00:00
</p>
2003-04-09 17:10:00 +00:00
</body>
2003-06-04 18:47:40 +00:00
</html>