function theme_image_block_latest in Image 6
Same name and namespace in other branches
- 5.2 image.module \theme_image_block_latest()
Theme a latest block
1 theme call to theme_image_block_latest()
- image_block in ./
image.module - Implementation of hook_block.
File
- ./
image.module, line 725
Code
function theme_image_block_latest($images, $size) {
$output = '';
foreach ($images as $image) {
$output .= l(image_display($image, $size), 'node/' . $image->nid, array(
'html' => TRUE,
));
}
return $output;
}