' . $this->HtmlHead() . '
';
$tests = $this->getDirFromDir($this->testDirectoryName . $day);
// Loop over tests
foreach($tests as $test) {
echo $test . ' : ';
$testDir = $this->testDirectoryName . $day . '/' . $test . '/';
// Search for HTML files in current test directory
$htmlFiles = $this->getFilesFromDir($testDir, 'html');
// Search for ROOT files in current test directory
$rootFiles = $this->getFilesFromDir($testDir, 'root');
if (count($htmlFiles) == 0 && count($rootFiles) == 0) {
echo '
No results found.';
} else {
// Loop over all HTML files in current test directory
foreach($htmlFiles as $htmlFile) {
$link = $testDir . $htmlFile;
echo '
' . $htmlFile . ' ';
}
// Loop over all ROOT files in current test directory
foreach($rootFiles as $rootFile) {
$link = 'rootio.php?files=' . $testDir . $rootFile;
echo '
' . $rootFile . ' ';
}
}
echo '
';
}
echo '
';
}
echo '