function image_attach_views_handlers in Image 6
Implementation of hook_views_handlers().
File
- contrib/
image_attach/ image_attach.views.inc, line 94
Code
function image_attach_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'image_attach'),
),
'handlers' => array(
'image_attach_views_handler_field_attached_images' => array(
'parent' => 'image_handler_field_image_node_image',
),
),
);
}