function theme_taxonomy_image_block in Taxonomy Image 6
1 theme call to theme_taxonomy_image_block()
- taxonomy_image_block in contributed/
taxonomy_image_blocks/ taxonomy_image_blocks.module - Implementation of hook_block(). This creates and populates the "unanswered questions" block.
File
- contributed/
taxonomy_image_blocks/ taxonomy_image_blocks.module, line 246 - Add a block to show the images attached to the terms of a node.
Code
function theme_taxonomy_image_block($rows) {
return theme('table', array(), $rows, array(
'id' => 'taxonomy-image-terms',
));
}