function cumulus_views_api in Cumulus 6.2
Implementation of hook_views_api(). Notifies the Views module that we're compatible with a particular API revision.
File
- ./
cumulus.module, line 25 - The brain of Cumulus.
Code
function cumulus_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'cumulus') . '/includes/views',
);
}