13.1.06 slider 6.3 + changes
This commit is contained in:
parent
6f2447533c
commit
e6b9cb16b5
@ -5,6 +5,7 @@
|
||||
### Corrections
|
||||
|
||||
- Ajout d'utilisateur, étiquette non sauvegardée.
|
||||
- Slider, corrige un tri non pris en compte.
|
||||
|
||||
## Version 13.1.05
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
# Version 6.3
|
||||
- Corrige un tri non fonctionnel.
|
||||
# Version 6.2
|
||||
- Applique les profils
|
||||
# Version 6.1
|
||||
|
@ -27,7 +27,7 @@ class slider extends common
|
||||
'index' => self::GROUP_VISITOR
|
||||
];
|
||||
|
||||
const VERSION = '6.2';
|
||||
const VERSION = '6.3';
|
||||
const REALNAME = 'Carrousel';
|
||||
const DELETE = true;
|
||||
const UPDATE = '0.0';
|
||||
@ -237,7 +237,7 @@ class slider extends common
|
||||
}
|
||||
}
|
||||
// Tri des images pour affichage de la liste dans la page d'édition
|
||||
switch ($this->getData(['module', $this->getUrl(0), 'theme', 'tri'])) {
|
||||
switch ($this->getData(['module', $this->getUrl(0), 'theme', 'sort'])) {
|
||||
case 'dsc':
|
||||
krsort(self::$pictures, SORT_NATURAL | SORT_FLAG_CASE);
|
||||
break;
|
||||
@ -385,7 +385,7 @@ class slider extends common
|
||||
}
|
||||
|
||||
// Tri des images par ordre alphabétique, alphabétique inverse, aléatoire ou pas
|
||||
switch ($this->getData(['module', $galleryId, 'config', 'tri'])) {
|
||||
switch ($this->getData(['module', $galleryId, 'config', 'sort'])) {
|
||||
case 'SORT_DSC':
|
||||
krsort(self::$pictures, SORT_NATURAL | SORT_FLAG_CASE);
|
||||
break;
|
||||
@ -445,7 +445,7 @@ class slider extends common
|
||||
'speed' => 1000,
|
||||
'timeout' => 3000,
|
||||
'namespace' => 'centered-btns',
|
||||
'tri' => 'RAND',
|
||||
'sort' => 'RAND',
|
||||
],
|
||||
'directory' => null,
|
||||
'legends' => [],
|
||||
|
Loading…
Reference in New Issue
Block a user