function activity_views_api in Activity 7
Same name and namespace in other branches
- 6.2 activity.module \activity_views_api()
- 6 activity.module \activity_views_api()
Implements hook_views_api().
File
- ./
activity.module, line 396 - Records Activity across the site and surfaces that to Views.
Code
function activity_views_api() {
return array(
'api' => '3.0-alpha1',
'path' => drupal_get_path('module', 'activity') . '/views',
);
}