function cache_actions_views_api in Cache Actions 7
Same name and namespace in other branches
- 6.2 cache_actions.module \cache_actions_views_api()
- 6 cache_actions.module \cache_actions_views_api()
- 7.2 cache_actions.module \cache_actions_views_api()
Implementation of hook_views_api().
File
- ./
cache_actions.module, line 11 - This is the module file. It contains hooks for panels and views.
Code
function cache_actions_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'cache_actions') . '/plugins/views',
);
}