ZwiiCMS/module/gallery/view/config/config.js.php

47 lines
1.0 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
/**
* 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 <remi.jean@outlook.com>
* @copyright Copyright (C) 2008-2018, Rémi Jean
2020-03-08 18:19:52 +01:00
* @author Frédéric Tempez <frederic.tempez@outlook.com>
2021-12-18 10:25:33 +01:00
* @copyright Copyright (C) 2018-2022, Frédéric Tempez
2018-04-02 08:29:19 +02:00
* @license GNU General Public License, version 3
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
2020-04-01 13:43:15 +02:00
$( document ).ready(function() {
2020-04-09 22:53:24 +02:00
/**
2020-04-09 22:53:24 +02:00
* Tri de la galerie avec drag and drop
2022-03-28 18:57:06 +02:00
*/
$("#galleryTable").tableDnD({
onDrop: function(table, row) {
2020-04-01 13:43:15 +02:00
$("#galleryConfigFilterResponse").val($.tableDnD.serialize());
2020-04-24 12:37:01 +02:00
sortGalleries();
2022-04-01 10:10:15 +02:00
location.reload();
},
// Supprime le tiret des séparateurs
serializeRegexp: ""
2020-04-01 13:43:15 +02:00
});
});
2020-04-09 22:53:24 +02:00
/**
* Tri dynamique des galeries
*/
2020-04-24 12:37:01 +02:00
function sortGalleries() {
var url = "<?php echo helper::baseUrl() . $this->getUrl(0); ?>/sortGalleries";
2022-03-28 18:57:06 +02:00
var data = $("#galleryConfigFilterResponse").val();
2020-04-09 22:53:24 +02:00
$.ajax({
type: "POST",
url: url ,
data: {
response : data
}
});
}