<?php
my $children = $directory->children;
$children->execute;
while (my $file = $children->fetch)
{
next if (substr($file->name,0,1) eq '.' || $system->param('extension') && $file->type ne 'directory' && $file->extension ne $system->param('extension'));
?>