69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
$Id$
|
||
|
|
||
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||
|
Copyright (C) 2006 - 2012 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
|
||
|
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Provides a list of LAM tests.
|
||
|
*
|
||
|
* @author Roland Gruber
|
||
|
* @package tools
|
||
|
*/
|
||
|
|
||
|
/** security functions */
|
||
|
include_once("../../lib/security.inc");
|
||
|
/** access to configuration options */
|
||
|
include_once("../../lib/config.inc");
|
||
|
|
||
|
// start session
|
||
|
startSecureSession();
|
||
|
|
||
|
// die if no write access
|
||
|
if (!checkIfWriteAccessIsAllowed()) die();
|
||
|
|
||
|
checkIfToolIsActive('toolTests');
|
||
|
|
||
|
setlanguage();
|
||
|
|
||
|
include '../main_header.php';
|
||
|
echo "<div class=\"user-bright smallPaddingContent\">\n";
|
||
|
|
||
|
$container = new htmlTable();
|
||
|
$container->addElement(new htmlSubTitle(_("LAM tests")), true);
|
||
|
|
||
|
$container->addElement(new htmlLink(_("Lamdaemon test"), 'lamdaemonTest.php', '../../graphics/lamdaemonSmall.png'));
|
||
|
$container->addElement(new htmlSpacer('20px', null));
|
||
|
$container->addElement(new htmlOutputText(_("Check if quotas and homedirectories can be managed.")), true);
|
||
|
|
||
|
$container->addElement(new htmlSpacer(null, '20px'), true);
|
||
|
|
||
|
$container->addElement(new htmlLink(_("Schema test"), 'schemaTest.php', '../../graphics/schemaTest.png'));
|
||
|
$container->addElement(new htmlSpacer('20px', null));
|
||
|
$container->addElement(new htmlOutputText(_("Check if the LDAP schema fits the requirements of the selected account modules.")), true);
|
||
|
|
||
|
$tabindex = 1;
|
||
|
parseHtml(null, $container, array(), true, $tabindex, 'user');
|
||
|
|
||
|
echo "</div>\n";
|
||
|
include '../main_footer.php';
|
||
|
|
||
|
?>
|