forked from ZwiiCMS-Team/ZwiiCMS
Gallery 2.3 bug image de couverture création d'une galerie de zéro
This commit is contained in:
parent
e5e0f2c471
commit
b79138e15e
@ -24,9 +24,9 @@ class gallery extends common {
|
|||||||
];
|
];
|
||||||
|
|
||||||
public static $sort = [
|
public static $sort = [
|
||||||
'SORT_HAND' => 'Tri manuel',
|
|
||||||
'SORT_ASC' => 'Alphabétique ',
|
'SORT_ASC' => 'Alphabétique ',
|
||||||
'SORT_DSC' => 'Alphabétique inversé'
|
'SORT_DSC' => 'Alphabétique inversé',
|
||||||
|
'SORT_HAND' => 'Tri manuel'
|
||||||
];
|
];
|
||||||
|
|
||||||
public static $directories = [];
|
public static $directories = [];
|
||||||
@ -43,7 +43,7 @@ class gallery extends common {
|
|||||||
|
|
||||||
public static $thumbs = [];
|
public static $thumbs = [];
|
||||||
|
|
||||||
const GALLERY_VERSION = '2.2';
|
const GALLERY_VERSION = '2.3';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -117,24 +117,6 @@ class gallery extends common {
|
|||||||
if($this->isPost()) {
|
if($this->isPost()) {
|
||||||
if (!$this->getInput('galleryConfigFilterResponse')) {
|
if (!$this->getInput('galleryConfigFilterResponse')) {
|
||||||
$galleryId = helper::increment($this->getInput('galleryConfigName', helper::FILTER_ID, true), (array) $this->getData(['module', $this->getUrl(0)]));
|
$galleryId = helper::increment($this->getInput('galleryConfigName', helper::FILTER_ID, true), (array) $this->getData(['module', $this->getUrl(0)]));
|
||||||
$directory = $this->getInput('galleryConfigDirectory', helper::FILTER_STRING_SHORT, true);
|
|
||||||
$iterator = new DirectoryIterator($directory);
|
|
||||||
foreach($iterator as $fileInfos) {
|
|
||||||
if($fileInfos->isDot() === false AND $fileInfos->isFile() AND @getimagesize($fileInfos->getPathname())) {
|
|
||||||
// Créer la miniature si manquante
|
|
||||||
if (!file_exists( str_replace('source','thumb',$fileInfos->getPathname()) . '/' . self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename()))) {
|
|
||||||
$this->makeThumb($fileInfos->getPathname(),
|
|
||||||
str_replace('source','thumb',$fileInfos->getPath()) . '/' . self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename()),
|
|
||||||
self::THUMBS_WIDTH);
|
|
||||||
}
|
|
||||||
// Miniatures
|
|
||||||
$homePicture = file_exists( str_replace('source','thumb',$directory) . '/' . self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename()))
|
|
||||||
? self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename())
|
|
||||||
: strtolower($fileInfos->getFilename());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->setData(['module', $this->getUrl(0), $galleryId, [
|
$this->setData(['module', $this->getUrl(0), $galleryId, [
|
||||||
'config' => [
|
'config' => [
|
||||||
'name' => $this->getInput('galleryConfigName'),
|
'name' => $this->getInput('galleryConfigName'),
|
||||||
@ -143,7 +125,8 @@ class gallery extends common {
|
|||||||
'sort' => $this->getInput('galleryConfigSort'),
|
'sort' => $this->getInput('galleryConfigSort'),
|
||||||
'position' => count($this->getData(['module',$this->getUrl(0)])) + 1
|
'position' => count($this->getData(['module',$this->getUrl(0)])) + 1
|
||||||
],
|
],
|
||||||
'legend' => []
|
'legend' => [],
|
||||||
|
'position' => []
|
||||||
]]);
|
]]);
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
@ -271,7 +254,6 @@ class gallery extends common {
|
|||||||
'notification' => 'Modifications enregistrées',
|
'notification' => 'Modifications enregistrées',
|
||||||
'state' => true
|
'state' => true
|
||||||
]);
|
]);
|
||||||
|
|
||||||
}
|
}
|
||||||
// Met en forme le tableau
|
// Met en forme le tableau
|
||||||
$directory = $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'config', 'directory']);
|
$directory = $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'config', 'directory']);
|
||||||
|
Loading…
Reference in New Issue
Block a user