Photo Gallery
Selection
//echo "Seleccione Galeria a desplegar
";
//echo 'Photo Gallery: '.$title.'
';
// =============================== GALLERY FUNCTIONS ================================
//-------------------------------- Directory Navigation -----------------------------
function dir_list($dir) // gets the list of directories in the current folder
{
global $subdir;
$rootname = str_replace("_", " ", $subdir['0']); // name of the root photo gallery
$dlist = array();
if ($hdir = opendir('./'.$dir))
{
while ($obj = readdir($hdir))
{
if (((preg_match("/^\./",$obj)==0) && (!eregi('^(.*).[php]$', $obj))) && is_dir($dir.$obj))
//if(is_dir($dir.$obj))
if ($obj <> 'js' && $obj <> 'css' && $obj <> 'images') //not includ folder css, images, js
$dlist[] = $obj;
}
closedir($hdir);
}
else
die('Cannot list files for ' . $dir. '