You are here

function field_extractor_views_api in Field Extractor 7

Implements hook_views_api().

File

./field_extractor.module, line 11
Provides a formatter that displays a field from the referenced entities.

Code

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