You are here

function feeds_views_api in Feeds 7

Same name and namespace in other branches
  1. 8.2 feeds.module \feeds_views_api()
  2. 6 feeds.module \feeds_views_api()
  3. 7.2 feeds.module \feeds_views_api()

Implements hook_views_api().

Related topics

File

./feeds.module, line 288
Feeds - basic API functions and hook implementations.

Code

function feeds_views_api() {
  return array(
    'api' => '2.0',
    'path' => drupal_get_path('module', 'feeds') . '/views',
  );
}