You are here

function taxonomy_image_views_handlers in Taxonomy Image 6

Implementation of hook_views_handlers().

File

./taxonomy_image.module, line 810
taxonomy_image.module Simple module for providing an association between taxonomy terms and images. Written by Jeremy Andrews <jeremy@kerneltrap.org>, May 2004.

Code

function taxonomy_image_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'taxonomy_image'),
    ),
    'handlers' => array(
      'views_handler_field_taxonomy_image' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}