new tab design
This commit is contained in:
parent
757c4b5762
commit
40008f9038
Binary file not shown.
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 854 B |
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 3.5 KiB |
|
@ -99,6 +99,14 @@ tr.highlight {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.saveButton {
|
||||||
|
background-image: url(../graphics/save.png) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cancelButton {
|
||||||
|
background-image: url(../graphics/del.png) !important;
|
||||||
|
}
|
||||||
|
|
||||||
table.settingsTab {
|
table.settingsTab {
|
||||||
border-width:0px;
|
border-width:0px;
|
||||||
border-style:solid;
|
border-style:solid;
|
||||||
|
|
|
@ -120,7 +120,15 @@ $tabindex = 1;
|
||||||
echo $_SESSION['header'];
|
echo $_SESSION['header'];
|
||||||
|
|
||||||
echo ("<title>" . _("LDAP Account Manager Configuration") . "</title>\n");
|
echo ("<title>" . _("LDAP Account Manager Configuration") . "</title>\n");
|
||||||
echo ("<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n");
|
|
||||||
|
// include all CSS files
|
||||||
|
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||||
|
$cssDir = dir($cssDirName);
|
||||||
|
while ($cssEntry = $cssDir->read()) {
|
||||||
|
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||||
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"" . $headerPrefix . "../../style/" . $cssEntry . "\">\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
||||||
echo ("</head>\n");
|
echo ("</head>\n");
|
||||||
echo ("<body onload=\"configLoginMethodChanged()\">\n");
|
echo ("<body onload=\"configLoginMethodChanged()\">\n");
|
||||||
|
@ -157,80 +165,66 @@ if (sizeof($errorsToDisplay) > 0) {
|
||||||
|
|
||||||
// display formular
|
// display formular
|
||||||
echo ("<form action=\"confmain.php\" method=\"post\">\n");
|
echo ("<form action=\"confmain.php\" method=\"post\">\n");
|
||||||
echo "<table border=0 width=\"100%\" style=\"border-collapse: collapse;\">\n";
|
|
||||||
echo "<tr valign=\"top\"><td style=\"border-bottom: 1px solid;padding:0px;\" colspan=2>";
|
|
||||||
// show tabs
|
|
||||||
echo "<table width=\"100%\" border=0 style=\"border-collapse: collapse;\">";
|
|
||||||
echo "<tr>\n";
|
|
||||||
$buttonSpace = ' ';
|
|
||||||
// general settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td class=\"settingsActiveTab\" onclick=\"document.getElementsByName('generalSettingsButton')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/bigTools.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"generalSettingsButton\" type=\"submit\" value=\"" . $buttonSpace . _('General settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// account types
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('edittypes')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/gear.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"edittypes\" type=\"submit\" value=\"" . $buttonSpace . _('Account types') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module selection
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('editmodules')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/modules.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"editmodules\" type=\"submit\" value=\"" . $buttonSpace . _('Modules') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('moduleSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/moduleSettings.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"moduleSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Module settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// spacer
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// save button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('saveSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/pass.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"saveSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Save') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// cancel button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('cancelSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/fail.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"cancelSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Cancel') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "</tr></table>\n";
|
|
||||||
// end tabs
|
|
||||||
echo "</td></tr>\n";
|
|
||||||
|
|
||||||
echo "<tr><td><br><br>\n";
|
echo '<div style="text-align: right;">';
|
||||||
|
echo "<button id=\"saveButton\" name=\"saveSettings\" type=\"submit\">" . _('Save') . "</button>";
|
||||||
|
echo " ";
|
||||||
|
echo "<button id=\"cancelButton\" name=\"cancelSettings\" type=\"submit\">" . _('Cancel') . "</button>";
|
||||||
|
echo "<br><br>\n";
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
// 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">';
|
||||||
|
echo '<li id="generalSettingsButton" class="ui-state-default ui-corner-top">';
|
||||||
|
echo '<a href="#" onclick="document.getElementsByName(\'generalSettingsButton\')[0].click();"><img src="../../graphics/tools.png" alt=""> ';
|
||||||
|
echo _('General settings') . '</a>';
|
||||||
|
echo '</li>';
|
||||||
|
echo '<li id="edittypes" class="ui-state-default ui-corner-top">';
|
||||||
|
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>';
|
||||||
|
echo '<li id="moduleSettings" class="ui-state-default ui-corner-top">';
|
||||||
|
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() {
|
||||||
|
jQuery('#generalSettingsButton').addClass('ui-tabs-selected');
|
||||||
|
jQuery('#generalSettingsButton').addClass('ui-state-active');
|
||||||
|
jQuery('#saveButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'saveButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
jQuery('#cancelButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'cancelButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom">
|
||||||
|
<?php
|
||||||
|
|
||||||
echo ("<fieldset><legend><img align=\"middle\" src=\"../../graphics/profiles.png\" alt=\"profiles.png\"> <b>" . _("Server settings") . "</b></legend><br>\n");
|
echo ("<fieldset><legend><img align=\"middle\" src=\"../../graphics/profiles.png\" alt=\"profiles.png\"> <b>" . _("Server settings") . "</b></legend><br>\n");
|
||||||
echo ("<table border=0>");
|
echo ("<table border=0>");
|
||||||
// serverURL
|
// serverURL
|
||||||
|
@ -537,10 +531,8 @@ echo ("</table>\n");
|
||||||
echo ("</fieldset>\n");
|
echo ("</fieldset>\n");
|
||||||
|
|
||||||
echo ("<p>* = ". _("required") . "</p>");
|
echo ("<p>* = ". _("required") . "</p>");
|
||||||
echo ("<p> </p>\n");
|
|
||||||
|
|
||||||
echo '</td></tr></table>';
|
echo ("</div></div></form>\n");
|
||||||
echo ("</form>\n");
|
|
||||||
echo ("</body>\n");
|
echo ("</body>\n");
|
||||||
echo ("</html>\n");
|
echo ("</html>\n");
|
||||||
|
|
||||||
|
|
|
@ -95,7 +95,15 @@ $types = $conf->get_ActiveTypes();
|
||||||
echo $_SESSION['header'];
|
echo $_SESSION['header'];
|
||||||
|
|
||||||
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
||||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n";
|
|
||||||
|
// include all CSS files
|
||||||
|
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||||
|
$cssDir = dir($cssDirName);
|
||||||
|
while ($cssEntry = $cssDir->read()) {
|
||||||
|
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||||
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"" . $headerPrefix . "../../style/" . $cssEntry . "\">\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
||||||
for ($i = 0; $i < sizeof($types); $i++){
|
for ($i = 0; $i < sizeof($types); $i++){
|
||||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $types[$i] . ".css\">\n";
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $types[$i] . ".css\">\n";
|
||||||
|
@ -124,80 +132,65 @@ while ($jsEntry = $jsDir->read()) {
|
||||||
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
||||||
|
|
||||||
echo ("<form action=\"confmodules.php\" method=\"post\">\n");
|
echo ("<form action=\"confmodules.php\" method=\"post\">\n");
|
||||||
echo "<table border=0 width=\"100%\" style=\"border-collapse: collapse;\">\n";
|
|
||||||
echo "<tr valign=\"top\"><td style=\"border-bottom: 1px solid;padding:0px;\" colspan=2>";
|
|
||||||
// show tabs
|
|
||||||
echo "<table width=\"100%\" border=0 style=\"border-collapse: collapse;\">";
|
|
||||||
echo "<tr>\n";
|
|
||||||
$buttonSpace = ' ';
|
|
||||||
// general settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('generalSettingsButton')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/bigTools.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"generalSettingsButton\" type=\"submit\" value=\"" . $buttonSpace . _('General settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// account types
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('edittypes')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/gear.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"edittypes\" type=\"submit\" value=\"" . $buttonSpace . _('Account types') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module selection
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td class=\"settingsActiveTab\" onclick=\"document.getElementsByName('editmodules')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/modules.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"editmodules\" type=\"submit\" value=\"" . $buttonSpace . _('Modules') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('moduleSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/moduleSettings.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"moduleSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Module settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// spacer
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// save button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('saveSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/pass.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"saveSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Save') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// cancel button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('cancelSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/fail.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"cancelSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Cancel') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "</tr></table>\n";
|
|
||||||
// end tabs
|
|
||||||
echo "</td></tr>\n";
|
|
||||||
|
|
||||||
echo "<tr><td><br><br>\n";
|
echo '<div style="text-align: right;">';
|
||||||
|
echo "<button id=\"saveButton\" name=\"saveSettings\" type=\"submit\">" . _('Save') . "</button>";
|
||||||
|
echo " ";
|
||||||
|
echo "<button id=\"cancelButton\" name=\"cancelSettings\" type=\"submit\">" . _('Cancel') . "</button>";
|
||||||
|
echo "<br><br>\n";
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
// 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">';
|
||||||
|
echo '<li id="generalSettingsButton" class="ui-state-default ui-corner-top">';
|
||||||
|
echo '<a href="#" onclick="document.getElementsByName(\'generalSettingsButton\')[0].click();"><img src="../../graphics/tools.png" alt=""> ';
|
||||||
|
echo _('General settings') . '</a>';
|
||||||
|
echo '</li>';
|
||||||
|
echo '<li id="edittypes" class="ui-state-default ui-corner-top">';
|
||||||
|
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>';
|
||||||
|
echo '<li id="moduleSettings" class="ui-state-default ui-corner-top">';
|
||||||
|
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() {
|
||||||
|
jQuery('#editmodules').addClass('ui-tabs-selected');
|
||||||
|
jQuery('#editmodules').addClass('ui-state-active');
|
||||||
|
jQuery('#saveButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'saveButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
jQuery('#cancelButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'cancelButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
$account_list = array();
|
$account_list = array();
|
||||||
|
@ -215,13 +208,11 @@ echo "(*) " . _("Base module");
|
||||||
// help link
|
// help link
|
||||||
echo " ";
|
echo " ";
|
||||||
printHelpLink(getHelp('', '237'), '237');
|
printHelpLink(getHelp('', '237'), '237');
|
||||||
echo "<br><br><br><br><br></p>\n";
|
echo "<br></p>\n";
|
||||||
|
|
||||||
echo '</td></tr></table>';
|
|
||||||
|
|
||||||
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
|
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
|
||||||
|
|
||||||
echo "</form>\n";
|
echo ("</div></div></form>\n");
|
||||||
echo "</body>\n";
|
echo "</body>\n";
|
||||||
echo "</html>\n";
|
echo "</html>\n";
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,15 @@ natcasesort($availableTypes);
|
||||||
echo $_SESSION['header'];
|
echo $_SESSION['header'];
|
||||||
|
|
||||||
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
||||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n";
|
|
||||||
|
// include all CSS files
|
||||||
|
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||||
|
$cssDir = dir($cssDirName);
|
||||||
|
while ($cssEntry = $cssDir->read()) {
|
||||||
|
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||||
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"" . $headerPrefix . "../../style/" . $cssEntry . "\">\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
||||||
for ($i = 0; $i < sizeof($allTypes); $i++){
|
for ($i = 0; $i < sizeof($allTypes); $i++){
|
||||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $allTypes[$i] . ".css\">\n";
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $allTypes[$i] . ".css\">\n";
|
||||||
|
@ -142,80 +150,66 @@ while ($jsEntry = $jsDir->read()) {
|
||||||
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
||||||
|
|
||||||
echo ("<form action=\"conftypes.php\" method=\"post\">\n");
|
echo ("<form action=\"conftypes.php\" method=\"post\">\n");
|
||||||
echo "<table border=0 width=\"100%\" style=\"border-collapse: collapse;\">\n";
|
|
||||||
echo "<tr valign=\"top\"><td style=\"border-bottom: 1px solid;padding:0px;\" colspan=2>";
|
|
||||||
// show tabs
|
|
||||||
echo "<table width=\"100%\" border=0 style=\"border-collapse: collapse;\">";
|
|
||||||
echo "<tr>\n";
|
|
||||||
$buttonSpace = ' ';
|
|
||||||
// general settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('generalSettingsButton')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/bigTools.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"generalSettingsButton\" type=\"submit\" value=\"" . $buttonSpace . _('General settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// account types
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td class=\"settingsActiveTab\" onclick=\"document.getElementsByName('edittypes')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/gear.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"edittypes\" type=\"submit\" value=\"" . $buttonSpace . _('Account types') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module selection
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('editmodules')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/modules.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"editmodules\" type=\"submit\" value=\"" . $buttonSpace . _('Modules') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('moduleSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/moduleSettings.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"moduleSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Module settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// spacer
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// save button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('saveSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/pass.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"saveSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Save') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// cancel button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('cancelSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/fail.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"cancelSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Cancel') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "</tr></table>\n";
|
|
||||||
// end tabs
|
|
||||||
echo "</td></tr>\n";
|
|
||||||
|
|
||||||
echo "<tr><td><br><br>\n";
|
echo '<div style="text-align: right;">';
|
||||||
|
echo "<button id=\"saveButton\" name=\"saveSettings\" type=\"submit\">" . _('Save') . "</button>";
|
||||||
|
echo " ";
|
||||||
|
echo "<button id=\"cancelButton\" name=\"cancelSettings\" type=\"submit\">" . _('Cancel') . "</button>";
|
||||||
|
echo "<br><br>\n";
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
// 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">';
|
||||||
|
echo '<li id="generalSettingsButton" class="ui-state-default ui-corner-top">';
|
||||||
|
echo '<a href="#" onclick="document.getElementsByName(\'generalSettingsButton\')[0].click();"><img src="../../graphics/tools.png" alt=""> ';
|
||||||
|
echo _('General settings') . '</a>';
|
||||||
|
echo '</li>';
|
||||||
|
echo '<li id="edittypes" class="ui-state-default ui-corner-top">';
|
||||||
|
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>';
|
||||||
|
echo '<li id="moduleSettings" class="ui-state-default ui-corner-top">';
|
||||||
|
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() {
|
||||||
|
jQuery('#edittypes').addClass('ui-tabs-selected');
|
||||||
|
jQuery('#edittypes').addClass('ui-state-active');
|
||||||
|
jQuery('#saveButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'saveButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
jQuery('#cancelButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'cancelButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
// show available types
|
// show available types
|
||||||
if (sizeof($availableTypes) > 0) {
|
if (sizeof($availableTypes) > 0) {
|
||||||
|
@ -274,14 +268,11 @@ if (sizeof($activeTypes) > 0) {
|
||||||
echo "</fieldset><br>\n";
|
echo "</fieldset><br>\n";
|
||||||
}
|
}
|
||||||
echo "</fieldset>\n";
|
echo "</fieldset>\n";
|
||||||
echo "<p><br><br></p>\n";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
|
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
|
||||||
|
|
||||||
echo "<p><br><br></p>\n";
|
echo ("</div></div></form>\n");
|
||||||
echo '</td></tr></table>';
|
|
||||||
echo "</form>\n";
|
|
||||||
echo "</body>\n";
|
echo "</body>\n";
|
||||||
echo "</html>\n";
|
echo "</html>\n";
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,15 @@ $allTypes = getTypes();
|
||||||
echo $_SESSION['header'];
|
echo $_SESSION['header'];
|
||||||
|
|
||||||
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
echo "<title>" . _("LDAP Account Manager Configuration") . "</title>\n";
|
||||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/layout.css\">\n";
|
|
||||||
|
// include all CSS files
|
||||||
|
$cssDirName = dirname(__FILE__) . '/../../style';
|
||||||
|
$cssDir = dir($cssDirName);
|
||||||
|
while ($cssEntry = $cssDir->read()) {
|
||||||
|
if (substr($cssEntry, strlen($cssEntry) - 4, 4) != '.css') continue;
|
||||||
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"" . $headerPrefix . "../../style/" . $cssEntry . "\">\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
echo "<link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"../../graphics/favicon.ico\">\n";
|
||||||
for ($i = 0; $i < sizeof($allTypes); $i++){
|
for ($i = 0; $i < sizeof($allTypes); $i++){
|
||||||
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $allTypes[$i] . ".css\">\n";
|
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../../style/type_" . $allTypes[$i] . ".css\">\n";
|
||||||
|
@ -123,80 +131,66 @@ while ($jsEntry = $jsDir->read()) {
|
||||||
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
for ($i = 0; $i < sizeof($errorsToDisplay); $i++) call_user_func_array('StatusMessage', $errorsToDisplay[$i]);
|
||||||
|
|
||||||
echo ("<form action=\"moduleSettings.php\" method=\"post\">\n");
|
echo ("<form action=\"moduleSettings.php\" method=\"post\">\n");
|
||||||
echo "<table border=0 width=\"100%\" style=\"border-collapse: collapse;\">\n";
|
|
||||||
echo "<tr valign=\"top\"><td style=\"border-bottom: 1px solid;padding:0px;\" colspan=2>";
|
|
||||||
// show tabs
|
|
||||||
echo "<table width=\"100%\" border=0 style=\"border-collapse: collapse;\">";
|
|
||||||
echo "<tr>\n";
|
|
||||||
$buttonSpace = ' ';
|
|
||||||
// general settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('generalSettingsButton')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/bigTools.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"generalSettingsButton\" type=\"submit\" value=\"" . $buttonSpace . _('General settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// account types
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('edittypes')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/gear.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"edittypes\" type=\"submit\" value=\"" . $buttonSpace . _('Account types') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module selection
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('editmodules')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/modules.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"editmodules\" type=\"submit\" value=\"" . $buttonSpace . _('Modules') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// module settings
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td class=\"settingsActiveTab\" onclick=\"document.getElementsByName('moduleSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/moduleSettings.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"moduleSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Module settings') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// spacer
|
|
||||||
echo "<td width=\"100%\"> </td>";
|
|
||||||
// save button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('saveSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/pass.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"saveSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Save') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
// cancel button
|
|
||||||
echo "<td class=\"settingsTab\">\n";
|
|
||||||
echo "<table class=\"settingsTab\" width=\"100%\">\n";
|
|
||||||
echo "<tr><td onclick=\"document.getElementsByName('cancelSettings')[0].click();\"";
|
|
||||||
echo " align=\"center\">\n";
|
|
||||||
$buttonStyle = 'background-image: url(../../graphics/fail.png);';
|
|
||||||
echo "<input style=\"" . $buttonStyle . "\" name=\"cancelSettings\" type=\"submit\" value=\"" . $buttonSpace . _('Cancel') . "\"";
|
|
||||||
echo ">\n";
|
|
||||||
echo "</td></tr></table>\n";
|
|
||||||
echo '</td>';
|
|
||||||
echo "</tr></table>\n";
|
|
||||||
// end tabs
|
|
||||||
echo "</td></tr>\n";
|
|
||||||
|
|
||||||
echo "<tr><td><br><br>\n";
|
echo '<div style="text-align: right;">';
|
||||||
|
echo "<button id=\"saveButton\" name=\"saveSettings\" type=\"submit\">" . _('Save') . "</button>";
|
||||||
|
echo " ";
|
||||||
|
echo "<button id=\"cancelButton\" name=\"cancelSettings\" type=\"submit\">" . _('Cancel') . "</button>";
|
||||||
|
echo "<br><br>\n";
|
||||||
|
echo '</div>';
|
||||||
|
|
||||||
|
// 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">';
|
||||||
|
echo '<li id="generalSettingsButton" class="ui-state-default ui-corner-top">';
|
||||||
|
echo '<a href="#" onclick="document.getElementsByName(\'generalSettingsButton\')[0].click();"><img src="../../graphics/tools.png" alt=""> ';
|
||||||
|
echo _('General settings') . '</a>';
|
||||||
|
echo '</li>';
|
||||||
|
echo '<li id="edittypes" class="ui-state-default ui-corner-top">';
|
||||||
|
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>';
|
||||||
|
echo '<li id="moduleSettings" class="ui-state-default ui-corner-top">';
|
||||||
|
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() {
|
||||||
|
jQuery('#moduleSettings').addClass('ui-tabs-selected');
|
||||||
|
jQuery('#moduleSettings').addClass('ui-state-active');
|
||||||
|
jQuery('#saveButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'saveButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
jQuery('#cancelButton').button({
|
||||||
|
icons: {
|
||||||
|
primary: 'cancelButton'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
// module settings
|
// module settings
|
||||||
$types = $conf->get_ActiveTypes();
|
$types = $conf->get_ActiveTypes();
|
||||||
|
@ -236,9 +230,7 @@ for ($i = 0; $i < sizeof($modules); $i++) {
|
||||||
|
|
||||||
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
|
echo "<input type=\"hidden\" name=\"postAvailable\" value=\"yes\">\n";
|
||||||
|
|
||||||
echo "<p><br><br></p>\n";
|
echo ("</div></div></form>\n");
|
||||||
echo '</td></tr></table>';
|
|
||||||
echo "</form>\n";
|
|
||||||
echo "</body>\n";
|
echo "</body>\n";
|
||||||
echo "</html>\n";
|
echo "</html>\n";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue