LDAPAccountManager/lam/templates/tools.php

160 lines
4.1 KiB
PHP
Raw Normal View History

2004-06-09 19:24:03 +00:00
<?php
/*
$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
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");
// 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";
// list of tools and descriptions
$tools = array();
2007-12-30 12:32:48 +00:00
2004-06-09 19:24:03 +00:00
// profile editor
2007-12-30 12:32:48 +00:00
$pEditor = new LAMTool();
$pEditor->name = _("Profile editor");
$pEditor->description = _("Here you can manage your account profiles.");
$pEditor->link = "profedit/profilemain.php";
$pEditor->requiresWriteAccess = true;
$tools[] = $pEditor;
2004-06-09 19:24:03 +00:00
// file upload
2007-12-30 12:32:48 +00:00
$fUpload = new LAMTool();
$fUpload->name = _("File upload");
$fUpload->description = _("Creates accounts by uploading a CSV formated file.");
$fUpload->link = "masscreate.php";
$fUpload->requiresWriteAccess = true;
$tools[] = $fUpload;
2004-06-09 19:24:03 +00:00
// OU editor
2007-12-30 12:32:48 +00:00
$ouEditor = new LAMTool();
$ouEditor->name = _("OU editor");
$ouEditor->description = _("Manages OU objects in your LDAP tree.");
$ouEditor->link = "ou_edit.php";
$ouEditor->requiresWriteAccess = true;
$tools[] = $ouEditor;
2004-06-09 19:24:03 +00:00
// PDF editor
2007-12-30 12:32:48 +00:00
$pdfEditor = new LAMTool();
$pdfEditor->name = _("PDF editor");
$pdfEditor->description = _("This tool allows you to customize the PDF pages.");
$pdfEditor->link = "pdfedit/pdfmain.php";
$pdfEditor->requiresWriteAccess = true;
$tools[] = $pdfEditor;
2004-06-09 19:24:03 +00:00
2005-01-30 15:39:01 +00:00
// schema browser
2007-12-30 12:32:48 +00:00
$sBrowser = new LAMTool();
$sBrowser->name = _("Schema browser");
$sBrowser->description = _("Here you can browse LDAP object classes and attributes.");
$sBrowser->link = "schema/schema.php";
$tools[] = $sBrowser;
2005-01-30 15:39:01 +00:00
2006-10-04 18:12:22 +00:00
// tests
2007-12-30 12:32:48 +00:00
$tests = new LAMTool();
$tests->name = _("Tests");
$tests->description = _("Here you can test if certain LAM features work on your installation.");
$tests->link = "tests/index.php";
$tests->requiresWriteAccess = true;
$tools[] = $tests;
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
if ($tools[$i]->requiresWriteAccess && !checkIfWriteAccessIsAllowed()) {
continue;
}
if ($tools[$i]->requiresPasswordChanges && !checkIfPasswordChangeIsAllowed()) {
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>";
2007-12-30 12:32:48 +00:00
echo "<a href=\"" . $tools[$i]->link . "\" target=\"mainpart\"><b>" . $tools[$i]->name . "</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>";
2007-12-30 12:32:48 +00:00
echo $tools[$i]->description;
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";
2007-12-30 12:32:48 +00:00
/**
* Represents a tool.
*
* @author Roland Gruber
* @package tools
*/
class LAMTool {
/** name of the tool */
public $name;
/** description text */
public $description;
/** link to tool page (relative to templates/) */
public $link;
/** tool requires write access to LDAP */
public $requiresWriteAccess = false;
/** tool requires password change rights */
public $requiresPasswordChanges = false;
}
2004-06-09 19:24:03 +00:00
?>