You are here

function field_collection_views_views_api in Field Collection Views 7

Same name and namespace in other branches
  1. 8 field_collection_views.module \field_collection_views_views_api()

Implements hook_views_api().

File

./field_collection_views.module, line 128
Module implementing a field-collection views formatter.

Code

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