function feeds_views_api in Feeds 6
Same name and namespace in other branches
- 8.2 feeds.module \feeds_views_api()
- 7.2 feeds.module \feeds_views_api()
- 7 feeds.module \feeds_views_api()
Implementation of hook_views_api().
Related topics
File
- ./
feeds.module, line 287 - Feeds - basic API functions and hook implementations.
Code
function feeds_views_api() {
return array(
'api' => '2.0',
'path' => drupal_get_path('module', 'feeds') . '/views',
);
}