LDAPAccountManager/lam/templates/tools.php

101 lines
2.7 KiB
PHP
Raw Normal View History

2004-06-09 19:24:03 +00:00
<?php
/*
$Id$
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2009-11-07 15:02:03 +00:00
Copyright (C) 2003 - 2009 Roland Gruber
2004-06-09 19:24:03 +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
*/
/**
* Provides a list of tools like file upload or profile editor.
*
* @author Roland Gruber
2004-06-10 11:46:13 +00:00
* @package tools
2004-06-09 19:24:03 +00:00
*/
2006-03-26 17:51:25 +00:00
/** security functions */
include_once("../lib/security.inc");
2004-06-09 19:24:03 +00:00
/** access to configuration options */
include_once("../lib/config.inc");
2009-10-30 18:37:06 +00:00
/** tool definitions */
include_once("../lib/tools.inc");
2004-06-09 19:24:03 +00:00
// start session
2006-03-26 17:51:25 +00:00
startSecureSession();
2004-06-09 19:24:03 +00:00
setlanguage();
echo $_SESSION['header'];
echo "<title></title>\n";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\">\n";
2006-01-01 16:30:05 +00:00
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/type_user.css\">\n";
2004-06-09 19:24:03 +00:00
echo "</head>";
echo "<body>\n";
2009-10-30 18:37:06 +00:00
// get tool list
$availableTools = getTools();
// sort tools
$toSort = array();
for ($i = 0; $i < sizeof($availableTools); $i++) {
$myTool = new $availableTools[$i]();
$toSort[$availableTools[$i]] = $myTool->getPosition();
}
asort($toSort);
2004-06-09 19:24:03 +00:00
$tools = array();
2009-10-30 18:37:06 +00:00
foreach ($toSort as $key => $value) {
$tools[] = new $key();
}
2006-10-04 18:12:22 +00:00
2004-06-09 19:24:03 +00:00
echo "<p>&nbsp;</p>\n";
// print tools table
echo "<table class=\"userlist\" rules=\"none\">\n";
for ($i = 0; $i < sizeof($tools); $i++) {
2007-12-30 12:32:48 +00:00
// check access level
2009-10-30 18:37:06 +00:00
if ($tools[$i]->getRequiresWriteAccess() && !checkIfWriteAccessIsAllowed()) {
2007-12-30 12:32:48 +00:00
continue;
}
2009-10-30 18:37:06 +00:00
if ($tools[$i]->getRequiresPasswordChangeRights() && !checkIfPasswordChangeIsAllowed()) {
2007-12-30 12:32:48 +00:00
continue;
}
// print tool
2004-06-09 19:24:03 +00:00
echo "<tr class=\"userlist\">\n";
echo "<td>&nbsp;&nbsp;&nbsp;</td>\n";
echo "<td><br>";
2009-11-07 15:02:03 +00:00
echo "<a href=\"" . $tools[$i]->getLink() . "\" target=\"mainpart\"><img src=\"../graphics/" . $tools[$i]->getImageLink() . "\"> &nbsp;<b>" . $tools[$i]->getName() . "</b></a>";
2004-06-09 19:24:03 +00:00
echo "<br><br></td>\n";
echo "<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>\n";
echo "<td>";
2009-10-30 18:37:06 +00:00
echo $tools[$i]->getDescription();
2004-06-09 19:24:03 +00:00
echo "</td>\n";
echo "<td>&nbsp;&nbsp;&nbsp;</td>\n";
echo "</tr>\n";
}
echo "</table>\n";
echo "</body>\n";
echo "</html>\n";
?>