foreach ftw

git-svn-id: file:///home/shish/svn/shimmie2/trunk@483 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2007-08-27 23:24:57 +00:00
parent e910df8e6b
commit 825db240de

View File

@ -49,22 +49,10 @@ class CustomIndexTheme extends IndexTheme {
}
protected function build_table($images, $query) {
global $config;
$width = $config->get_int('index_width');
$height = $config->get_int('index_height');
$table = "<div>\n";
for($i=0; $i<$height; $i++) {
for($j=0; $j<$width; $j++) {
$image = isset($images[$i*$width+$j]) ? $images[$i*$width+$j] : null;
if(!is_null($image)) {
$table .= "\t<span class=\"thumb\">" . build_thumb_html($image, $query) . "</span>\n";
}
}
$table = "";
foreach($images as $image) {
$table .= "\t<span class=\"thumb\">" . build_thumb_html($image, $query) . "</span>\n";
}
$table .= "</div>";
return $table;
}
}