2.11 gérer le déplacement ou la suppression de l'image de couverture.
This commit is contained in:
parent
229ef395db
commit
6393425895
@ -47,7 +47,7 @@ class gallery extends common {
|
||||
|
||||
public static $thumbs = [];
|
||||
|
||||
const GALLERY_VERSION = '2.11';
|
||||
const GALLERY_VERSION = '2.12';
|
||||
|
||||
|
||||
/**
|
||||
@ -453,6 +453,8 @@ class gallery extends common {
|
||||
foreach($iterator as $fileInfos) {
|
||||
if($fileInfos->isDot() === false AND $fileInfos->isFile() AND @getimagesize($fileInfos->getPathname())) {
|
||||
self::$galleries[$galleryId] = $gallery;
|
||||
// L'image de couverture est-elle supprimée ?
|
||||
if (file_exists( $gallery['config']['directory'] . '/' . $gallery['config']['homePicture'])) {
|
||||
// Créer la miniature si manquante
|
||||
if (!file_exists( str_replace('source','thumb',$gallery['config']['directory']) . '/' . self::THUMBS_SEPARATOR . strtolower($gallery['config']['homePicture']))) {
|
||||
$this->makeThumb($gallery['config']['directory'] . '/' . str_replace(self::THUMBS_SEPARATOR ,'',$gallery['config']['homePicture']),
|
||||
@ -463,9 +465,19 @@ class gallery extends common {
|
||||
self::$firstPictures[$galleryId] = file_exists( str_replace('source','thumb',$gallery['config']['directory']) . '/' . self::THUMBS_SEPARATOR . strtolower($gallery['config']['homePicture']))
|
||||
? str_replace('source','thumb',$gallery['config']['directory']) . '/' . self::THUMBS_SEPARATOR . strtolower($gallery['config']['homePicture'])
|
||||
: str_replace('source','thumb',$gallery['config']['directory']) . '/' . strtolower($gallery['config']['homePicture']);
|
||||
continue(2);
|
||||
} else {
|
||||
// homePicture contient une image invalide, supprimée ou déplacée
|
||||
// Définir l'image de couverture, première image disponible
|
||||
$this->makeThumb($fileInfos->getPath() . '/' . $fileInfos->getFilename(),
|
||||
str_replace('source','thumb',$fileInfos->getPath()) . '/' . self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename()),
|
||||
self::THUMBS_WIDTH);
|
||||
self::$firstPictures[$galleryId] = file_exists( str_replace('source','thumb',$fileInfos->getPath()) . '/' . self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename()))
|
||||
? str_replace('source','thumb',$fileInfos->getPath()) . '/' . self::THUMBS_SEPARATOR . strtolower($fileInfos->getFilename())
|
||||
: str_replace('source','thumb',$fileInfos->getPath()) . '/' . strtolower($fileInfos->getFilename());
|
||||
}
|
||||
}
|
||||
continue(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Valeurs en sortie
|
||||
|
Loading…
Reference in New Issue
Block a user