2004-02-01 12:33:21 +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-11-02 18:16:36 +00:00
|
|
|
Copyright (C) 2004 - 2012 Roland Gruber
|
2004-02-01 12:33:21 +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
|
|
|
|
|
2004-06-02 12:48:54 +00:00
|
|
|
*/
|
2004-02-01 12:33:21 +00:00
|
|
|
|
|
|
|
|
2004-06-02 12:48:54 +00:00
|
|
|
/**
|
|
|
|
* confmodules lets the user select the account modules
|
|
|
|
*
|
|
|
|
* @package configuration
|
|
|
|
* @author Roland Gruber
|
2004-02-01 12:33:21 +00:00
|
|
|
*/
|
2004-06-02 12:48:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Access to config functions */
|
2006-03-26 17:51:25 +00:00
|
|
|
include_once('../../lib/config.inc');
|
2004-06-02 12:48:54 +00:00
|
|
|
/** Access to module lists */
|
2006-03-26 17:51:25 +00:00
|
|
|
include_once('../../lib/modules.inc');
|
2004-02-01 12:33:21 +00:00
|
|
|
|
|
|
|
// start session
|
2009-07-08 18:03:28 +00:00
|
|
|
if (strtolower(session_module_name()) == 'files') {
|
|
|
|
session_save_path("../../sess");
|
|
|
|
}
|
2004-02-01 12:33:21 +00:00
|
|
|
@session_start();
|
|
|
|
|
|
|
|
setlanguage();
|
|
|
|
|
|
|
|
|
2006-01-31 16:57:12 +00:00
|
|
|
// check if config is set
|
2004-02-01 12:33:21 +00:00
|
|
|
// if not: load login page
|
2006-01-31 16:57:12 +00:00
|
|
|
if (!isset($_SESSION['conf_config'])) {
|
2004-06-02 12:48:54 +00:00
|
|
|
/** go back to login if password is invalid */
|
2004-02-01 12:33:21 +00:00
|
|
|
require('conflogin.php');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2009-07-12 17:41:44 +00:00
|
|
|
// check if user canceled editing
|
|
|
|
if (isset($_POST['cancelSettings'])) {
|
|
|
|
metaRefresh("../login.php");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2006-01-31 16:57:12 +00:00
|
|
|
$conf = &$_SESSION['conf_config'];
|
|
|
|
|
2009-07-12 17:41:44 +00:00
|
|
|
$errorsToDisplay = checkInput();
|
2006-01-31 16:57:12 +00:00
|
|
|
|
2009-07-12 17:41:44 +00:00
|
|
|
// check if button was pressed and if we have to save the settings or go to another tab
|
2009-10-03 15:44:38 +00:00
|
|
|
if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
|
|
|
|| isset($_POST['edittypes']) || isset($_POST['generalSettingsButton'])
|
|
|
|
|| isset($_POST['moduleSettings'])) {
|
2009-07-12 17:41:44 +00:00
|
|
|
if (sizeof($errorsToDisplay) == 0) {
|
|
|
|
// go to final page
|
|
|
|
if (isset($_POST['saveSettings'])) {
|
|
|
|
metaRefresh("confsave.php");
|
|
|
|
exit;
|
|
|
|
}
|
2009-10-03 15:44:38 +00:00
|
|
|
// go to types page
|
2009-07-12 17:41:44 +00:00
|
|
|
elseif (isset($_POST['edittypes'])) {
|
|
|
|
metaRefresh("conftypes.php");
|
|
|
|
exit;
|
|
|
|
}
|
2009-10-03 15:44:38 +00:00
|
|
|
// go to general page
|
2009-07-12 17:41:44 +00:00
|
|
|
elseif (isset($_POST['generalSettingsButton'])) {
|
|
|
|
metaRefresh("confmain.php");
|
|
|
|
exit;
|
|
|
|
}
|
2009-10-03 15:44:38 +00:00
|
|
|
// go to module settings page
|
|
|
|
elseif (isset($_POST['moduleSettings'])) {
|
|
|
|
metaRefresh("moduleSettings.php");
|
|
|
|
exit;
|
|
|
|
}
|
2009-07-12 17:41:44 +00:00
|
|
|
}
|
2004-02-01 12:33:21 +00:00
|
|
|
}
|
|
|
|
|
2006-01-31 16:57:12 +00:00
|
|
|
$types = $conf->get_ActiveTypes();
|
2006-01-01 16:30:05 +00:00
|
|
|
|
2004-02-01 12:33:21 +00:00
|
|
|
echo $_SESSION['header'];
|
|
|
|
|
|
|
|
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
2010-08-28 09:34:00 +00:00
|
|
|
|
|
|
|
// include all CSS files
|
|
|
|
$cssDirName = dirname(__FILE__) . '/../../style';
|
|
|
|
$cssDir = dir($cssDirName);
|
2012-11-02 17:45:35 +00:00
|
|
|
$cssFiles = array();
|
|
|
|
$cssEntry = $cssDir->read();
|
|
|
|
while ($cssEntry !== false) {
|
|
|
|
if (substr($cssEntry, strlen($cssEntry) - 4, 4) == '.css') {
|
|
|
|
$cssFiles[] = $cssEntry;
|
|
|
|
}
|
|
|
|
$cssEntry = $cssDir->read();
|
|
|
|
}
|
|
|
|
sort($cssFiles);
|
|
|
|
foreach ($cssFiles as $cssEntry) {
|
2010-09-13 20:05:58 +00:00
|
|
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/" . $cssEntry . "\">\n";
|
2010-08-28 09:34:00 +00:00
|
|
|
}
|
|
|
|
|
2008-01-01 13:06:51 +00:00
|
|
|
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
2004-02-01 12:33:21 +00:00
|
|
|
echo "</head><body>\n";
|
2010-01-01 17:39:38 +00:00
|
|
|
// include all JavaScript files
|
|
|
|
$jsDirName = dirname(__FILE__) . '/../lib';
|
|
|
|
$jsDir = dir($jsDirName);
|
2010-08-28 12:27:06 +00:00
|
|
|
$jsFiles = array();
|
2010-01-01 17:39:38 +00:00
|
|
|
while ($jsEntry = $jsDir->read()) {
|
|
|
|
if (substr($jsEntry, strlen($jsEntry) - 3, 3) != '.js') continue;
|
2010-08-28 12:27:06 +00:00
|
|
|
$jsFiles[] = $jsEntry;
|
|
|
|
}
|
|
|
|
sort($jsFiles);
|
|
|
|
foreach ($jsFiles as $jsEntry) {
|
2010-01-01 17:39:38 +00:00
|
|
|
echo "<script type=\"text/javascript\" src=\"../lib/" . $jsEntry . "\"></script>\n";
|
|
|
|
}
|
2004-02-01 12:33:21 +00:00
|
|
|
|
2010-07-30 16:08:20 +00:00
|
|
|
?>
|
2010-08-31 18:05:17 +00:00
|
|
|
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
2010-07-30 16:08:20 +00:00
|
|
|
<tr>
|
|
|
|
<td align="left" height="30">
|
|
|
|
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="../../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
|
|
|
</td>
|
2012-11-02 18:16:36 +00:00
|
|
|
<td align="right">
|
|
|
|
<?php echo _('Server profile') . ': ' . $conf->getName(); ?>
|
|
|
|
|
|
|
|
</td>
|
2010-07-30 16:08:20 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<?php
|
2009-07-12 17:41:44 +00:00
|
|
|
|
|
|
|
// print error messages
|
|
|
|
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
2004-02-01 12:33:21 +00:00
|
|
|
|
|
|
|
echo ("<form action=\"confmodules.php\" method=\"post\">\n");
|
2010-08-28 09:34:00 +00:00
|
|
|
|
|
|
|
// hidden submit buttons which are clicked by tabs
|
|
|
|
echo "<div style=\"display: none;\">\n";
|
|
|
|
echo "<input name=\"generalSettingsButton\" type=\"submit\" value=\" \">";
|
|
|
|
echo "<input name=\"edittypes\" type=\"submit\" value=\" \">";
|
|
|
|
echo "<input name=\"editmodules\" type=\"submit\" value=\" \">";
|
|
|
|
echo "<input name=\"moduleSettings\" type=\"submit\" value=\" \">";
|
|
|
|
echo "</div>\n";
|
|
|
|
|
|
|
|
// tabs
|
|
|
|
echo '<div class="ui-tabs ui-widget ui-widget-content ui-corner-all">';
|
|
|
|
|
|
|
|
echo '<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">';
|
2011-01-08 19:44:08 +00:00
|
|
|
echo '<li id="generalSettingsButton" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
2010-08-28 09:34:00 +00:00
|
|
|
echo '<a href="#" onclick="document.getElementsByName(\'generalSettingsButton\')[0].click();"><img src="../../graphics/tools.png" alt=""> ';
|
|
|
|
echo _('General settings') . '</a>';
|
|
|
|
echo '</li>';
|
2011-01-08 19:44:08 +00:00
|
|
|
echo '<li id="edittypes" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
2010-08-28 09:34:00 +00:00
|
|
|
echo '<a href="#" onclick="document.getElementsByName(\'edittypes\')[0].click();"><img src="../../graphics/gear.png" alt=""> ';
|
|
|
|
echo _('Account types') . '</a>';
|
|
|
|
echo '</li>';
|
|
|
|
echo '<li id="editmodules" class="ui-state-default ui-corner-top">';
|
|
|
|
echo '<a href="#" onclick="document.getElementsByName(\'editmodules\')[0].click();"><img src="../../graphics/modules.png" alt=""> ';
|
|
|
|
echo _('Modules') . '</a>';
|
|
|
|
echo '</li>';
|
2011-01-08 19:44:08 +00:00
|
|
|
echo '<li id="moduleSettings" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
2010-08-28 09:34:00 +00:00
|
|
|
echo '<a href="#" onclick="document.getElementsByName(\'moduleSettings\')[0].click();"><img src="../../graphics/modules.png" alt=""> ';
|
|
|
|
echo _('Module settings') . '</a>';
|
|
|
|
echo '</li>';
|
|
|
|
echo '</ul>';
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery(document).ready(function() {
|
2013-04-02 18:54:39 +00:00
|
|
|
jQuery('#editmodules').addClass('ui-tabs-active');
|
2010-08-28 09:34:00 +00:00
|
|
|
jQuery('#editmodules').addClass('ui-state-active');
|
2013-01-19 13:18:52 +00:00
|
|
|
jQuery('#editmodules').addClass('user-bright');
|
2010-11-14 20:35:34 +00:00
|
|
|
// set common width for select boxes
|
|
|
|
var maxWidth = 0;
|
|
|
|
jQuery("select").each(function(){
|
|
|
|
if (jQuery(this).width() > maxWidth)
|
|
|
|
maxWidth = jQuery(this).width();
|
|
|
|
});
|
|
|
|
jQuery("select").width(maxWidth);
|
2010-08-28 09:34:00 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2013-01-19 13:18:52 +00:00
|
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom user-bright">
|
2010-08-28 09:34:00 +00:00
|
|
|
<?php
|
2004-02-01 12:33:21 +00:00
|
|
|
|
|
|
|
|
2006-01-01 16:30:05 +00:00
|
|
|
$account_list = array();
|
|
|
|
for ($i = 0; $i < sizeof($types); $i++) {
|
|
|
|
$account_list[] = array($types[$i], getTypeAlias($types[$i]));
|
|
|
|
}
|
2005-01-10 10:41:38 +00:00
|
|
|
|
2010-11-14 20:35:34 +00:00
|
|
|
$container = new htmlTable();
|
2005-01-10 10:41:38 +00:00
|
|
|
for ($i = 0; $i < sizeof($account_list); $i++) {
|
2010-11-14 20:35:34 +00:00
|
|
|
config_showAccountModules($account_list[$i][0], $account_list[$i][1], $container);
|
2004-02-01 12:33:21 +00:00
|
|
|
}
|
|
|
|
|
2011-01-01 19:46:44 +00:00
|
|
|
$legendContainer = new htmlTable();
|
|
|
|
$legendContainer->addElement(new htmlOutputText("(*) " . _("Base module")));
|
|
|
|
$legendContainer->addElement(new htmlHelpLink('237'));
|
|
|
|
$container->addElement($legendContainer);
|
|
|
|
$container->addElement(new htmlHiddenInput('postAvailable', 'yes'));
|
2004-02-21 17:23:41 +00:00
|
|
|
|
2011-01-01 19:46:44 +00:00
|
|
|
$tabindex = 1;
|
|
|
|
parseHtml(null, $container, array(), false, $tabindex, 'user');
|
2004-02-21 17:23:41 +00:00
|
|
|
|
2011-01-08 19:44:08 +00:00
|
|
|
echo "</div></div>";
|
|
|
|
|
|
|
|
$buttonContainer = new htmlTable();
|
|
|
|
$buttonContainer->addElement(new htmlSpacer(null, '10px'), true);
|
|
|
|
$saveButton = new htmlButton('saveSettings', _('Save'));
|
|
|
|
$saveButton->setIconClass('saveButton');
|
|
|
|
$buttonContainer->addElement($saveButton);
|
|
|
|
$cancelButton = new htmlButton('cancelSettings', _('Cancel'));
|
|
|
|
$cancelButton->setIconClass('cancelButton');
|
|
|
|
$buttonContainer->addElement($cancelButton, true);
|
|
|
|
$buttonContainer->addElement(new htmlSpacer(null, '10px'), true);
|
|
|
|
parseHtml(null, $buttonContainer, array(), false, $tabindex, 'user');
|
|
|
|
|
|
|
|
echo "</form>\n";
|
2005-01-10 10:41:38 +00:00
|
|
|
echo "</body>\n";
|
|
|
|
echo "</html>\n";
|
2004-02-21 17:23:41 +00:00
|
|
|
|
|
|
|
|
2005-01-10 10:41:38 +00:00
|
|
|
/**
|
|
|
|
* Displays the module selection boxes and checks if dependencies are fulfilled.
|
|
|
|
*
|
|
|
|
* @param string $scope account type
|
|
|
|
* @param string $title title for module selection (e.g. "User modules")
|
2010-11-14 20:35:34 +00:00
|
|
|
* @param htmlTable $container meta HTML container
|
2005-01-10 10:41:38 +00:00
|
|
|
*/
|
2010-11-14 20:35:34 +00:00
|
|
|
function config_showAccountModules($scope, $title, &$container) {
|
2009-07-12 17:41:44 +00:00
|
|
|
$conf = &$_SESSION['conf_config'];
|
|
|
|
$typeSettings = $conf->get_typeSettings();
|
2005-01-10 10:41:38 +00:00
|
|
|
// account modules
|
2012-07-22 18:10:44 +00:00
|
|
|
$available = getAvailableModules($scope, true);
|
2009-07-12 17:41:44 +00:00
|
|
|
$selected = $typeSettings['modules_' . $scope];
|
|
|
|
if (isset($selected) && ($selected != '')) {
|
|
|
|
$selected = explode(',', $selected);
|
2004-02-21 17:23:41 +00:00
|
|
|
}
|
2009-07-12 17:41:44 +00:00
|
|
|
else {
|
|
|
|
$selected = array();
|
2004-02-21 17:23:41 +00:00
|
|
|
}
|
2010-04-04 12:47:15 +00:00
|
|
|
$sortedAvailable = array();
|
|
|
|
for ($i = 0; $i < sizeof($available); $i++) {
|
|
|
|
$sortedAvailable[$available[$i]] = getModuleAlias($available[$i], $scope);
|
|
|
|
}
|
|
|
|
natcasesort($sortedAvailable);
|
2009-07-12 17:41:44 +00:00
|
|
|
|
2010-11-14 20:35:34 +00:00
|
|
|
// build options for selected and available modules
|
|
|
|
$selOptions = array();
|
|
|
|
for ($i = 0; $i < sizeof($selected); $i++) {
|
|
|
|
if (in_array($selected[$i], $available)) { // selected modules must be available
|
|
|
|
if (is_base_module($selected[$i], $scope)) { // mark base modules
|
|
|
|
$selOptions[getModuleAlias($selected[$i], $scope) . " (" . $selected[$i] . ")(*)"] = $selected[$i];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$selOptions[getModuleAlias($selected[$i], $scope) . " (" . $selected[$i] . ")"] = $selected[$i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$availOptions = array();
|
|
|
|
foreach ($sortedAvailable as $key => $value) {
|
|
|
|
if (! in_array($key, $selected)) { // display non-selected modules
|
|
|
|
if (is_base_module($key, $scope)) { // mark base modules
|
|
|
|
$availOptions[$value . " (" . $key . ")(*)"] = $key;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$availOptions[$value . " (" . $key . ")"] = $key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-12 17:41:44 +00:00
|
|
|
|
2010-11-14 20:35:34 +00:00
|
|
|
// add account module selection
|
|
|
|
$container->addElement(new htmlSubTitle($title, '../../graphics/' . $scope . '.png'), true);
|
|
|
|
$container->addElement(new htmlOutputText(_("Selected modules")));
|
|
|
|
// add/remove buttons
|
|
|
|
$buttonContainer = new htmlTable();
|
|
|
|
$buttonContainer->rowspan = 2;
|
|
|
|
if (sizeof($availOptions) > 0) {
|
|
|
|
$addButton = new htmlButton($scope . "_add", 'back.gif', true);
|
|
|
|
$addButton->setTitle(_('Add'));
|
|
|
|
$buttonContainer->addElement($addButton, true);
|
|
|
|
}
|
|
|
|
if (sizeof($selOptions) > 0) {
|
|
|
|
$remButton = new htmlButton($scope . "_remove", 'forward.gif', true);
|
|
|
|
$remButton->setTitle(_('Remove'));
|
|
|
|
$buttonContainer->addElement($remButton, true);
|
|
|
|
}
|
|
|
|
$container->addElement($buttonContainer);
|
|
|
|
$container->addElement(new htmlOutputText(_("Available modules")), true);
|
|
|
|
// selected modules
|
|
|
|
if (sizeof($selOptions) > 0) {
|
|
|
|
$selSelect = new htmlSelect($scope . '_selected', $selOptions, array(), 5);
|
|
|
|
$selSelect->setTransformSingleSelect(false);
|
|
|
|
$selSelect->setMultiSelect(true);
|
|
|
|
$selSelect->setHasDescriptiveElements(true);
|
|
|
|
$selSelect->setSortElements(false);
|
|
|
|
$container->addElement($selSelect);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$container->addElement(new htmlOutputText(''));
|
|
|
|
}
|
|
|
|
// available modules
|
|
|
|
if (sizeof($availOptions) > 0) {
|
|
|
|
$availSelect = new htmlSelect($scope . "_available", $availOptions, array(), 5);
|
|
|
|
$availSelect->setTransformSingleSelect(false);
|
|
|
|
$availSelect->setHasDescriptiveElements(true);
|
|
|
|
$availSelect->setMultiSelect(true);
|
|
|
|
$container->addElement($availSelect, true);
|
|
|
|
}
|
|
|
|
// spacer to next account type
|
|
|
|
$container->addElement(new htmlSpacer(null, '30px'), true);
|
2009-07-12 17:41:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks user input and saves the entered settings.
|
|
|
|
*
|
|
|
|
* @return array list of errors
|
|
|
|
*/
|
|
|
|
function checkInput() {
|
|
|
|
if (!isset($_POST['postAvailable'])) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
$errors = array();
|
|
|
|
$conf = &$_SESSION['conf_config'];
|
|
|
|
$typeSettings = $conf->get_typeSettings();
|
|
|
|
$accountTypes = $conf->get_ActiveTypes();
|
|
|
|
for ($t = 0; $t < sizeof($accountTypes); $t++) {
|
|
|
|
$scope = $accountTypes[$t];
|
2012-07-22 18:10:44 +00:00
|
|
|
$available = getAvailableModules($scope, true);
|
2009-07-12 17:41:44 +00:00
|
|
|
$selected_temp = $typeSettings['modules_' . $scope];
|
|
|
|
if (isset($selected_temp)) $selected_temp = explode(',', $selected_temp);
|
|
|
|
$selected = array();
|
|
|
|
// only use available modules as selected
|
|
|
|
for ($i = 0; $i < sizeof($selected_temp); $i++) {
|
|
|
|
if (in_array($selected_temp[$i], $available)) {
|
|
|
|
$selected[] = $selected_temp[$i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// remove modules from selection
|
|
|
|
if (isset($_POST[$scope . '_selected']) && isset($_POST[$scope . '_remove'])) {
|
|
|
|
$new_selected = array();
|
|
|
|
for ($i = 0; $i < sizeof($selected); $i++) {
|
|
|
|
if (! in_array($selected[$i], $_POST[$scope . '_selected'])) $new_selected[] = $selected[$i];
|
|
|
|
}
|
|
|
|
$selected = $new_selected;
|
|
|
|
$typeSettings['modules_' . $scope] = implode(',', $selected);
|
|
|
|
}
|
|
|
|
// add modules to selection
|
|
|
|
elseif (isset($_POST[$scope . '_available']) && isset($_POST[$scope . '_add'])) {
|
|
|
|
$new_selected = $selected;
|
|
|
|
for ($i = 0; $i < sizeof($_POST[$scope . '_available']); $i++) {
|
|
|
|
if (! in_array($_POST[$scope . '_available'][$i], $selected)) $new_selected[] = $_POST[$scope . '_available'][$i];
|
|
|
|
}
|
|
|
|
$selected = $new_selected;
|
|
|
|
$typeSettings['modules_' . $scope] = implode(',', $selected);
|
|
|
|
}
|
|
|
|
// check dependencies
|
|
|
|
$depends = check_module_depends($selected, getModulesDependencies($scope));
|
|
|
|
if ($depends != false) {
|
2005-01-10 10:41:38 +00:00
|
|
|
for ($i = 0; $i < sizeof($depends); $i++) {
|
2009-07-12 17:41:44 +00:00
|
|
|
$errors[] = array('ERROR', getTypeAlias($scope), _("Unsolved dependency:") . ' ' .
|
|
|
|
$depends[$i][0] . " (" . $depends[$i][1] . ")");
|
2005-01-10 10:41:38 +00:00
|
|
|
}
|
2009-07-12 17:41:44 +00:00
|
|
|
}
|
|
|
|
// check conflicts
|
|
|
|
$conflicts = check_module_conflicts($selected, getModulesDependencies($scope));
|
|
|
|
if ($conflicts != false) {
|
2005-01-10 10:41:38 +00:00
|
|
|
for ($i = 0; $i < sizeof($conflicts); $i++) {
|
2009-07-12 17:41:44 +00:00
|
|
|
$errors[] = array('ERROR', getTypeAlias($scope), _("Conflicting module:") . ' ' .
|
|
|
|
$conflicts[$i][0] . " (" . $conflicts[$i][1] . ")");
|
2005-01-10 10:41:38 +00:00
|
|
|
}
|
|
|
|
}
|
2009-07-12 17:41:44 +00:00
|
|
|
// check for base module
|
|
|
|
$baseCount = 0;
|
|
|
|
for ($i = 0; $i < sizeof($selected); $i++) {
|
|
|
|
if (is_base_module($selected[$i], $scope)) {
|
|
|
|
$baseCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($baseCount != 1) {
|
|
|
|
$errors[] = array('ERROR', getTypeAlias($scope), _("No or more than one base module selected!"));
|
|
|
|
}
|
2004-02-01 12:33:21 +00:00
|
|
|
}
|
2009-07-12 17:41:44 +00:00
|
|
|
$conf->set_typeSettings($typeSettings);
|
2004-02-01 12:33:21 +00:00
|
|
|
|
2009-07-12 17:41:44 +00:00
|
|
|
return $errors;
|
|
|
|
}
|
2004-02-01 12:33:21 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|