/** * 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 Rémi Jean * @copyright Copyright (C) 2008-2018, Rémi Jean * @author Frédéric Tempez * @copyright Copyright (C) 2018-2022, Frédéric Tempez * @license GNU General Public License, version 3 * @link http://zwiicms.fr/ */ $(document).ready(function () { var pluginLayout = getCookie("pluginLayout"); if (pluginLayout == null) { pluginLayout = "module"; setCookie("pluginLayout", "module"); } console.log(pluginLayout); $("#moduleContainer").hide(); $("#dataContainer").hide(); $("#" + pluginLayout + "Container").show(); $("#plugin" + capitalizeFirstLetter(pluginLayout) + "Button").addClass("activeButton"); }); /** * Confirmation de suppression */ $(".moduleDelete").on("click", function() { var _this = $(this); var message_delete = ""; return core.confirm(message_delete, function() { $(location).attr("href", _this.attr("href")); }); }); /** * Confirmation de suppression */ $(".dataDelete").on("click", function() { var _this = $(this); var message_unlink = ""; return core.confirm(message_unlink, function() { $(location).attr("href", _this.attr("href")); }); }); // Sélecteur de fonctions $("#pluginModuleButton").on("click", function () { $("#dataContainer").hide(); $("#moduleContainer").show(); $("#pluginModuleButton").addClass("activeButton"); $("#pluginDataButton").removeClass("activeButton"); setCookie("pluginLayout", "module"); }); $("#pluginDataButton").on("click", function () { $("#moduleContainer").hide(); $("#dataContainer").show(); $("#pluginModuleButton").removeClass("activeButton"); $("#pluginDataButton").addClass("activeButton"); setCookie("pluginLayout", "data"); }); // Fonctions function setCookie(name, value, days) { var expires = ""; if (days) { var date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } document.cookie = name + "=" + (value || "") + expires + "; path=/; samesite=lax"; } function getCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); } return null; } // Define function to capitalize the first letter of a string function capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); }