function taxonomy_image_blocks_theme in Taxonomy Image 6
File
- contributed/
taxonomy_image_blocks/ taxonomy_image_blocks.module, line 235 - Add a block to show the images attached to the terms of a node.
Code
function taxonomy_image_blocks_theme($existing, $type, $theme, $path) {
return array(
'taxonomy_image_block' => array(
'arguments' => array(
'rows' => NULL,
),
),
'taxonomy_image_block_rows' => array(
'arguments' => array(
'img' => NULL,
'term_path' => NULL,
'name_link' => NULL,
'edit_link' => NULL,
),
),
);
}