Hemos modificado el código del módulo de “Álbum de Fotos” del CMS Pluck, para que ordene los álbumes alfabéticamenteModificamos el archivo “data/modules/albums/pages_site/albums_include.php”.
Puede descargar el nuevo módulo desde este enlace El Código modificado es el siguiente//Open the module-folder
// this code was changed with tip “http://codestips.com/php-read-directory-into-array/”
$directory=”data/settings/modules/albums”;
// create a handler to the directory
$dirhandler = opendir($directory);
// read all the files from directory
$nofiles=0;
while ($file = readdir($dirhandler)) {
// if $file isn’t this directory or its parent
//add to the $files array
if ($file != ‘.’ && $file != ‘..’){
$nofiles++;
$files[$nofiles]=$file;
}
}
//close the handler
closedir($dirhandler);
$files2=sort($files);
//SerInformaticos code
for ($i=0; $i < count($files); $i++){
$dir=$files[$i];