LDAPAccountManager/lam/templates/config/index.php

119 lines
3.2 KiB
PHP
Raw Normal View History

2006-05-23 14:46:58 +00:00
<?php
/*
$Id$
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
Copyright (C) 2003 - 2006 Roland Gruber
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
*/
/**
* Displays links to all configuration pages.
*
* @package configuration
* @author Roland Gruber
*/
/** Access to config functions */
include_once('../../lib/config.inc');
// start session
2009-07-08 18:03:28 +00:00
if (strtolower(session_module_name()) == 'files') {
session_save_path("../../sess");
}
2006-05-23 14:46:58 +00:00
@session_start();
setlanguage();
echo $_SESSION['header'];
?>
<title>
<?php
echo _("Configuration overview");
?>
</title>
<link rel="stylesheet" type="text/css" href="../../style/layout.css">
2008-01-01 13:06:51 +00:00
<link rel="shortcut icon" type="image/x-icon" href="../../graphics/favicon.ico">
2006-05-23 14:46:58 +00:00
</head>
<body>
2009-08-10 16:13:27 +00:00
<p align="center"><a href="http://www.ldap-account-manager.org/" target="_blank">
2006-05-23 14:46:58 +00:00
<img src="../../graphics/banner.jpg" border=1 alt="LDAP Account Manager"></a>
</p>
<hr>
2009-05-03 16:01:07 +00:00
<br><br>
<fieldset>
<legend><b> <?php echo _("LAM configuration"); ?> </b></legend>
2006-05-23 14:46:58 +00:00
<TABLE border="0">
<?php
if (is_dir("../selfService")) echo "<tr><td rowspan=4 width=20>&nbsp;</td><td></td><td></td></tr>\n";
else echo "<tr><td rowspan=3 width=20>&nbsp;</td><td></td><td></td></tr>\n";
2006-05-23 14:46:58 +00:00
?>
<TR>
<TD width="60" height="70">
<a href="mainlogin.php">
2009-05-03 16:01:07 +00:00
<IMG height="32" width="32" alt="general settings" src="../../graphics/bigTools.png">
2006-05-23 14:46:58 +00:00
</a>
</TD>
2006-07-29 08:43:37 +00:00
<TD><BIG>
2006-05-23 14:46:58 +00:00
<a href="mainlogin.php">
<?php echo _("Edit general settings") ?>
2006-07-29 08:43:37 +00:00
</a></BIG>
2006-05-23 14:46:58 +00:00
</TD>
</TR>
<TR>
<TD height="70">
<a href="conflogin.php" target="_self">
2009-05-03 16:01:07 +00:00
<IMG height="32" width="32" alt="server settings" src="../../graphics/profiles.png">
2006-05-23 14:46:58 +00:00
</a>
</TD>
2006-07-29 08:43:37 +00:00
<TD><BIG>
2006-05-23 14:46:58 +00:00
<a href="conflogin.php" target="_self">
<?php echo _("Edit server profiles"); ?>
2006-07-29 08:43:37 +00:00
</a></BIG>
2006-05-23 14:46:58 +00:00
</TD>
</TR>
<?php
if (is_dir("../selfService")) {
echo "<TR>\n";
echo "<TD height=\"70\">\n";
2006-07-08 17:46:50 +00:00
echo "<a href=\"../selfService/adminLogin.php\" target=\"_self\">\n";
2009-05-03 16:01:07 +00:00
echo "<IMG height=\"32\" width=\"32\" alt=\"self service\" src=\"../../graphics/bigPeople.png\">\n";
2006-05-23 14:46:58 +00:00
echo "</a>\n";
echo "</TD>\n";
2006-07-29 08:43:37 +00:00
echo "<TD><BIG>\n";
2006-07-08 17:46:50 +00:00
echo "<a href=\"../selfService/adminLogin.php\" target=\"_self\">\n";
2006-05-23 14:46:58 +00:00
echo _("Edit self service");
2006-07-29 08:43:37 +00:00
echo "</a></BIG>\n";
2006-05-23 14:46:58 +00:00
echo "</TD>\n";
echo "</TR>\n";
}
?>
</TABLE>
2009-05-03 16:01:07 +00:00
</fieldset>
2006-05-23 14:46:58 +00:00
<p><br><br><br><br><br></p>
<!-- back to login page -->
<p>
<a href="../login.php"> <?php echo _("Back to Login"); ?> </a>
</p>
</body>
</html>