You are here

function image_field_caption_views_api in Image Field Caption 7.2

Implements of hook_views_api().

File

./image_field_caption.module, line 451
Provides a caption textarea for image fields.

Code

function image_field_caption_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'image_field_caption') . '/views',
  );
}