2006-10-04 18:12:22 +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/)
|
2012-07-22 10:37:01 +00:00
|
|
|
Copyright (C) 2006 - 2012 Roland Gruber
|
2006-10-04 18:12:22 +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 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();
|
|
|
|
|
2007-12-30 13:15:39 +00:00
|
|
|
// die if no write access
|
|
|
|
if (!checkIfWriteAccessIsAllowed()) die();
|
|
|
|
|
2012-07-22 10:37:01 +00:00
|
|
|
checkIfToolIsActive('toolTests');
|
|
|
|
|
2006-10-04 18:12:22 +00:00
|
|
|
setlanguage();
|
|
|
|
|
2010-01-01 17:21:46 +00:00
|
|
|
include '../main_header.php';
|
2013-01-19 13:18:52 +00:00
|
|
|
echo "<div class=\"user-bright smallPaddingContent\">\n";
|
2006-10-04 18:12:22 +00:00
|
|
|
|
2010-10-17 13:38:32 +00:00
|
|
|
$container = new htmlTable();
|
|
|
|
$container->addElement(new htmlSubTitle(_("LAM tests")), true);
|
2006-10-04 18:12:22 +00:00
|
|
|
|
2010-12-03 21:06:36 +00:00
|
|
|
$container->addElement(new htmlLink(_("Lamdaemon test"), 'lamdaemonTest.php', '../../graphics/lamdaemonSmall.png'));
|
2010-10-17 13:38:32 +00:00
|
|
|
$container->addElement(new htmlSpacer('20px', null));
|
|
|
|
$container->addElement(new htmlOutputText(_("Check if quotas and homedirectories can be managed.")), true);
|
2006-10-04 18:12:22 +00:00
|
|
|
|
2010-10-17 13:38:32 +00:00
|
|
|
$container->addElement(new htmlSpacer(null, '20px'), true);
|
2007-12-29 11:02:00 +00:00
|
|
|
|
2010-12-03 21:06:36 +00:00
|
|
|
$container->addElement(new htmlLink(_("Schema test"), 'schemaTest.php', '../../graphics/schemaTest.png'));
|
2010-10-17 13:38:32 +00:00
|
|
|
$container->addElement(new htmlSpacer('20px', null));
|
|
|
|
$container->addElement(new htmlOutputText(_("Check if the LDAP schema fits the requirements of the selected account modules.")), true);
|
2006-10-04 18:12:22 +00:00
|
|
|
|
2010-10-17 13:38:32 +00:00
|
|
|
$tabindex = 1;
|
|
|
|
parseHtml(null, $container, array(), true, $tabindex, 'user');
|
2007-12-29 11:02:00 +00:00
|
|
|
|
2010-10-17 13:38:32 +00:00
|
|
|
echo "</div>\n";
|
2010-08-21 09:43:52 +00:00
|
|
|
include '../main_footer.php';
|
2006-10-04 18:12:22 +00:00
|
|
|
|
|
|
|
?>
|