ZwiiCMS/core/module/config/view/index/index.js.php

91 lines
2.7 KiB
PHP
Raw Normal View History

/**
* This file is part of Zwii.
*
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2021-02-17 13:49:58 +01:00
* @copyright Copyright (C) 2018-2021, Frédéric Tempez
* @license GNU General Public License, version 3
* @link http://zwiicms.fr/
*/
$( document).ready(function() {
/**
* Afficher et masquer options SMTP
*/
if ($("input[name=SmtpEnable]").is(':checked')) {
$("#SmtpParam").addClass("disabled");
$("#SmtpParam").slideDown();
} else {
$("#SmtpParam").removeClass("disabled");
$("#SmtpParam").slideUp();
}
/**
* Afficher et masquer options Auth
*/
if ($("select[name=SmtpEnable]").val() == true) {
$("#SmtpAuthParam").addClass("disabled");
$("#SmtpAuthParam").slideDown();
} else {
$("#SmtpAuthParam").removeClass("disabled");
$("#SmtpAuthParam").slideUp();
}
2021-10-29 18:34:01 +02:00
/**
* Afficher et masquer options SMTP
*/
$("input[name=SmtpEnable]").on("change", function() {
if ($("input[name=SmtpEnable]").is(':checked')) {
$("#SmtpParam").addClass("disabled");
$("#SmtpParam").slideDown();
} else {
$("#SmtpParam").removeClass("disabled");
$("#SmtpParam").slideUp();
}
});
/**
* Afficher et masquer options Auth
*/
$("select[name=SmtpAuth]").on("change", function() {
if ($("select[name=SmtpAuth]").val() == true) {
$("#SmtpAuthParam").addClass("disabled");
$("#SmtpAuthParam").slideDown();
} else {
$("#SmtpAuthParam").removeClass("disabled");
$("#SmtpAuthParam").slideUp();
}
});
/**
* Options de blocage de connexions
* Contrôle la cohérence des sélections et interdit une seule valeur Aucune
*/
$("select[name=configConnectAttempt]").on("change", function() {
if ($("select[name=configConnectAttempt]").val() === "999") {
$("select[name=configConnectTimeout]").val(0);
} else {
if ($("select[name=configConnectTimeout]").val() === "0") {
$("select[name=configConnectTimeout]").val(300);
}
}
});
$("select[name=configConnectTimeout]").on("change", function() {
if ($("select[name=configConnectTimeout]").val() === "0") {
$("select[name=configConnectAttempt]").val(999);
} else {
if ($("select[name=configConnectAttempt]").val() === "999") {
$("select[name=configConnectAttempt]").val(3);
}
}
});
});