You are here

function theme_taxonomy_image_block_rows in Taxonomy Image 6

1 theme call to theme_taxonomy_image_block_rows()
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 250
Add a block to show the images attached to the terms of a node.

Code

function theme_taxonomy_image_block_rows($img, $term_path, $name_link, $edit_link) {
  return array(
    l($img, $term_path, array(
      'html' => true,
    )) . $name_link . $edit_link,
  );
}