2017-11-11 15:39:53 +00:00
|
|
|
<?php
|
|
|
|
namespace LAM\CONFIG;
|
|
|
|
/*
|
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2019-05-12 07:50:23 +00:00
|
|
|
Copyright (C) 2017 - 2019 Roland Gruber
|
2017-11-11 15:39:53 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Common functions for configuration pages.
|
|
|
|
*
|
|
|
|
* @package configuration
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of tabs.
|
|
|
|
*
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
class ConfigurationPageTab {
|
|
|
|
|
|
|
|
/** general settings */
|
|
|
|
const GENERAL = 'general';
|
|
|
|
/** account types */
|
|
|
|
const TYPES = 'types';
|
|
|
|
/** account modules */
|
|
|
|
const MODULES = 'modules';
|
|
|
|
/** module settings */
|
|
|
|
const MODULE_SETTINGS = 'moduleSettings';
|
|
|
|
/** jobs */
|
|
|
|
const JOBS = 'jobs';
|
|
|
|
/** job history */
|
|
|
|
const JOB_HISTORY = 'jobHistory';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the header bar.
|
|
|
|
*
|
|
|
|
* @param \LAMConfig $conf configuration object
|
|
|
|
*/
|
|
|
|
function printConfigurationPageHeaderBar($conf) {
|
|
|
|
?>
|
|
|
|
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
|
|
|
<tr>
|
|
|
|
<td align="left" height="30">
|
2019-05-12 07:50:23 +00:00
|
|
|
<a class="lamLogo" href="http://www.ldap-account-manager.org/" target="new_window">
|
|
|
|
<?php echo getLAMVersionText(); ?>
|
|
|
|
</a>
|
2017-11-11 15:39:53 +00:00
|
|
|
</td>
|
|
|
|
<td align="right">
|
|
|
|
<?php echo _('Server profile') . ': ' . $conf->getName(); ?>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the tab list.
|
|
|
|
*
|
|
|
|
* @param ConfigurationPageTab $active active tab
|
|
|
|
*/
|
|
|
|
function printConfigurationPageTabs($active) {
|
|
|
|
$tabs = array(
|
|
|
|
ConfigurationPageTab::GENERAL => array(
|
|
|
|
'id' => 'generalSettingsButton',
|
|
|
|
'icon' => 'tools.png',
|
|
|
|
'label' => _('General settings')
|
|
|
|
),
|
|
|
|
ConfigurationPageTab::TYPES => array(
|
|
|
|
'id' => 'edittypes',
|
|
|
|
'icon' => 'gear.png',
|
|
|
|
'label' => _('Account types')
|
|
|
|
),
|
|
|
|
ConfigurationPageTab::MODULES => array(
|
|
|
|
'id' => 'editmodules',
|
|
|
|
'icon' => 'modules.png',
|
|
|
|
'label' => _('Modules')
|
|
|
|
),
|
|
|
|
ConfigurationPageTab::MODULE_SETTINGS => array(
|
|
|
|
'id' => 'moduleSettings',
|
|
|
|
'icon' => 'moduleSettings.png',
|
|
|
|
'label' => _('Module settings')
|
|
|
|
),
|
|
|
|
);
|
|
|
|
if (isLAMProVersion()) {
|
|
|
|
$tabs[ConfigurationPageTab::JOBS] = array(
|
|
|
|
'id' => 'jobs',
|
|
|
|
'icon' => 'clock.png',
|
|
|
|
'label' => _('Jobs')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// hidden submit buttons which are clicked by tabs
|
|
|
|
?>
|
|
|
|
<div style="display: none;">
|
|
|
|
<input name="generalSettingsButton" type="submit" value=" ">
|
|
|
|
<input name="edittypes" type="submit" value=" ">
|
|
|
|
<input name="editmodules" type="submit" value=" ">
|
|
|
|
<input name="moduleSettings" type="submit" value=" ">
|
|
|
|
<input name="jobs" type="submit" value=" ">
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
// tabs
|
|
|
|
?>
|
2018-11-02 16:51:12 +00:00
|
|
|
<div class="ui-tabs ui-corner-all ui-widget ui-widget-content user-bright">
|
2017-11-11 15:39:53 +00:00
|
|
|
|
2018-11-01 10:21:03 +00:00
|
|
|
<ul class="ui-tabs-nav ui-corner-all ui-helper-reset ui-helper-clearfix ui-widget-header">
|
2017-11-11 15:39:53 +00:00
|
|
|
<?php
|
|
|
|
foreach ($tabs as $tab => $settings) {
|
|
|
|
$isActive = ($tab === $active);
|
2018-11-01 10:21:03 +00:00
|
|
|
$liClasses = 'ui-tabs-tab ui-corner-top ui-state-default ui-tab';
|
2017-11-11 15:39:53 +00:00
|
|
|
$hover = ' onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');"';
|
|
|
|
if ($isActive) {
|
|
|
|
$liClasses .= ' lam-active-tab';
|
|
|
|
$hover = '';
|
|
|
|
}
|
|
|
|
echo '<li id="' . $settings['id'] . '" class="' . $liClasses . '"' . $hover . '>';
|
2018-11-01 10:21:03 +00:00
|
|
|
echo '<a class="ui-tabs-anchor" href="#" onclick="document.getElementsByName(\'' . $settings['id'] . '\')[0].click();"><img src="../../graphics/' . $settings['icon'] . '" alt=""> ';
|
2017-11-11 15:39:53 +00:00
|
|
|
echo '<span class="hide-on-mobile">' . $settings['label'] . '</span>';
|
|
|
|
echo '</a>';
|
|
|
|
echo '</li>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
2018-11-02 16:51:12 +00:00
|
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom">
|
2017-11-11 15:39:53 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|