You are here

function taxonomy_image_node_display_theme in Taxonomy Image 6

Implementation of hook_theme().

File

contributed/taxonomy_image_node_display/taxonomy_image_node_display.module, line 137
Display taxonomy images in nodes where and when you want them.

Code

function taxonomy_image_node_display_theme() {
  return array(
    'taxonomy_image_display' => array(
      'arguments' => array(
        'image',
        'term',
      ),
    ),
    'taxonomy_image_display_images' => array(
      'arguments' => array(
        'images',
      ),
    ),
  );
}