support jobs
This commit is contained in:
parent
75b59ce12d
commit
2151a7e373
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
|
@ -92,7 +92,7 @@ if (isset($_SESSION['conf_messages']) && is_array($_SESSION['conf_messages'])) {
|
|||
// check if button was pressed and if we have to save the settings or go to another tab
|
||||
if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
||||
|| isset($_POST['edittypes']) || isset($_POST['generalSettingsButton'])
|
||||
|| isset($_POST['moduleSettings'])) {
|
||||
|| isset($_POST['moduleSettings']) || isset($_POST['jobs'])) {
|
||||
$errorsToDisplay = checkInput();
|
||||
if (sizeof($errorsToDisplay) == 0) {
|
||||
// go to final page
|
||||
|
@ -115,6 +115,11 @@ if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
|||
metaRefresh("moduleSettings.php");
|
||||
exit;
|
||||
}
|
||||
// go to jobs page
|
||||
elseif (isset($_POST['jobs'])) {
|
||||
metaRefresh("jobs.php");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -194,6 +199,7 @@ echo "<div style=\"display: none;\">\n";
|
|||
echo "<input name=\"edittypes\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"editmodules\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"moduleSettings\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"jobs\" type=\"submit\" value=\" \">";
|
||||
echo "</div>\n";
|
||||
|
||||
// tabs
|
||||
|
@ -216,6 +222,12 @@ echo '<li id="moduleSettings" class="ui-state-default ui-corner-top" onmouseover
|
|||
echo '<a href="#" onclick="document.getElementsByName(\'moduleSettings\')[0].click();"><img src="../../graphics/modules.png" alt=""> ';
|
||||
echo _('Module settings') . '</a>';
|
||||
echo '</li>';
|
||||
if (isLAMProVersion()) {
|
||||
echo '<li id="jobs" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
||||
echo '<a href="#" onclick="document.getElementsByName(\'jobs\')[0].click();"><img src="../../graphics/clock.png" alt=""> ';
|
||||
echo _('Jobs') . '</a>';
|
||||
echo '</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
|
||||
?>
|
||||
|
|
|
@ -65,7 +65,7 @@ $errorsToDisplay = checkInput();
|
|||
// check if button was pressed and if we have to save the settings or go to another tab
|
||||
if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
||||
|| isset($_POST['edittypes']) || isset($_POST['generalSettingsButton'])
|
||||
|| isset($_POST['moduleSettings'])) {
|
||||
|| isset($_POST['moduleSettings']) || isset($_POST['jobs'])) {
|
||||
if (sizeof($errorsToDisplay) == 0) {
|
||||
// go to final page
|
||||
if (isset($_POST['saveSettings'])) {
|
||||
|
@ -87,6 +87,11 @@ if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
|||
metaRefresh("moduleSettings.php");
|
||||
exit;
|
||||
}
|
||||
// go to jobs page
|
||||
elseif (isset($_POST['jobs'])) {
|
||||
metaRefresh("jobs.php");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -153,6 +158,7 @@ echo "<div style=\"display: none;\">\n";
|
|||
echo "<input name=\"edittypes\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"editmodules\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"moduleSettings\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"jobs\" type=\"submit\" value=\" \">";
|
||||
echo "</div>\n";
|
||||
|
||||
// tabs
|
||||
|
@ -175,6 +181,12 @@ echo '<li id="moduleSettings" class="ui-state-default ui-corner-top" onmouseover
|
|||
echo '<a href="#" onclick="document.getElementsByName(\'moduleSettings\')[0].click();"><img src="../../graphics/modules.png" alt=""> ';
|
||||
echo _('Module settings') . '</a>';
|
||||
echo '</li>';
|
||||
if (isLAMProVersion()) {
|
||||
echo '<li id="jobs" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
||||
echo '<a href="#" onclick="document.getElementsByName(\'jobs\')[0].click();"><img src="../../graphics/clock.png" alt=""> ';
|
||||
echo _('Jobs') . '</a>';
|
||||
echo '</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
|
||||
?>
|
||||
|
|
|
@ -64,7 +64,7 @@ $errorsToDisplay = checkInput();
|
|||
// check if button was pressed and if we have to save the settings or go to another tab
|
||||
if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
||||
|| isset($_POST['edittypes']) || isset($_POST['generalSettingsButton'])
|
||||
|| isset($_POST['moduleSettings'])) {
|
||||
|| isset($_POST['moduleSettings']) || isset($_POST['jobs'])) {
|
||||
if (sizeof($errorsToDisplay) == 0) {
|
||||
// check if all types have modules
|
||||
$activeTypes = $conf->get_ActiveTypes();
|
||||
|
@ -96,6 +96,11 @@ if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
|||
metaRefresh("moduleSettings.php");
|
||||
exit;
|
||||
}
|
||||
// go to jobs page
|
||||
elseif (isset($_POST['jobs'])) {
|
||||
metaRefresh("jobs.php");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -171,6 +176,7 @@ echo "<div style=\"display: none;\">\n";
|
|||
echo "<input name=\"edittypes\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"editmodules\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"moduleSettings\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"jobs\" type=\"submit\" value=\" \">";
|
||||
echo "</div>\n";
|
||||
|
||||
// tabs
|
||||
|
@ -193,6 +199,12 @@ echo '<li id="moduleSettings" class="ui-state-default ui-corner-top" onmouseover
|
|||
echo '<a href="#" onclick="document.getElementsByName(\'moduleSettings\')[0].click();"><img src="../../graphics/modules.png" alt=""> ';
|
||||
echo _('Module settings') . '</a>';
|
||||
echo '</li>';
|
||||
if (isLAMProVersion()) {
|
||||
echo '<li id="jobs" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
||||
echo '<a href="#" onclick="document.getElementsByName(\'jobs\')[0].click();"><img src="../../graphics/clock.png" alt=""> ';
|
||||
echo _('Jobs') . '</a>';
|
||||
echo '</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
|
||||
?>
|
||||
|
|
|
@ -64,7 +64,7 @@ $errorsToDisplay = checkInput();
|
|||
// check if button was pressed and if we have to save the settings or go to another tab
|
||||
if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
||||
|| isset($_POST['edittypes']) || isset($_POST['generalSettingsButton'])
|
||||
|| isset($_POST['moduleSettings'])) {
|
||||
|| isset($_POST['moduleSettings']) || isset($_POST['jobs'])) {
|
||||
if (sizeof($errorsToDisplay) == 0) {
|
||||
// go to final page
|
||||
if (isset($_POST['saveSettings'])) {
|
||||
|
@ -86,6 +86,11 @@ if (isset($_POST['saveSettings']) || isset($_POST['editmodules'])
|
|||
metaRefresh("confmain.php");
|
||||
exit;
|
||||
}
|
||||
// go to jobs page
|
||||
elseif (isset($_POST['jobs'])) {
|
||||
metaRefresh("jobs.php");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -152,6 +157,7 @@ echo "<div style=\"display: none;\">\n";
|
|||
echo "<input name=\"edittypes\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"editmodules\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"moduleSettings\" type=\"submit\" value=\" \">";
|
||||
echo "<input name=\"jobs\" type=\"submit\" value=\" \">";
|
||||
echo "</div>\n";
|
||||
|
||||
// tabs
|
||||
|
@ -174,6 +180,12 @@ 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>';
|
||||
if (isLAMProVersion()) {
|
||||
echo '<li id="jobs" class="ui-state-default ui-corner-top" onmouseover="jQuery(this).addClass(\'tabs-hover\');" onmouseout="jQuery(this).removeClass(\'tabs-hover\');">';
|
||||
echo '<a href="#" onclick="document.getElementsByName(\'jobs\')[0].click();"><img src="../../graphics/clock.png" alt=""> ';
|
||||
echo _('Jobs') . '</a>';
|
||||
echo '</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue