2003-03-23 18:42:40 +00:00
|
|
|
<?php
|
2003-03-14 21:59:04 +00:00
|
|
|
/*
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
|
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");
|
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>
|
2004-05-30 13:43:42 +00:00
|
|
|
<td width="200">
|
2006-05-23 14:28:08 +00:00
|
|
|
<a href="http://lam.sourceforge.net/sponsors/donations.htm" target="_blank"><img alt="donations" src="../graphics/smile.png"> <?php echo _("Donate") ?></a>
|
2005-11-03 12:14:53 +00:00
|
|
|
<br><br>
|
2006-05-23 14:28:08 +00:00
|
|
|
<a href="tools.php" target="mainpart"><img alt="tools" src="../graphics/tools.png"> <BIG><B><?php echo _("Tools") ?></B></BIG></a>
|
2004-05-30 13:43:42 +00:00
|
|
|
</td>
|
2006-05-08 09:54:44 +00:00
|
|
|
<td align="center">
|
2006-01-01 16:30:05 +00:00
|
|
|
<a href="http://lam.sourceforge.net" target="new_window"><img src="../graphics/banner.jpg" border=1 alt="LDAP Account Manager"></a>
|
2003-06-01 13:59:13 +00:00
|
|
|
</td>
|
2006-05-23 14:28:08 +00:00
|
|
|
<td width="200" align="right" height=20><a href="./logout.php" target="_top"><img alt="logout" src="../graphics/go.png"> <big><b><?php echo _("Logout") ?></b></big></a></td>
|
2003-06-18 18:08:56 +00:00
|
|
|
</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"> <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"> ' .
|
|
|
|
'<big>' . getTypeAlias($types[$i]) . '</big></a>';
|
2003-07-26 11:11:25 +00:00
|
|
|
}
|
2006-05-13 08:40:01 +00:00
|
|
|
echo implode(' ', $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>
|