method getThumbsPath documentation in bbn\Appui\Medias
If the thumbs files exists for this path it returns an array of the the thumbs filename
function(string $path)
{
$res = [];
if (file_exists($path) && $this->isImage($path)) {
foreach($this->thumbs_sizes as $size){
if (($result = $this->getThumbPath($path, $size)) !== null) {
$res[] = $result;
}
}
}
return $res;
}
If the thumbs files exists for this path it returns an array of the the thumbs filename BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2022
BBN Solutions