You are here

function activity_comments_views_api in Activity 6.2

Same name and namespace in other branches
  1. 7 activity_comments/activity_comments.module \activity_comments_views_api()

Implementation of hook_views_api().

File

activity_comments/activity_comments.module, line 243
Provides comment handling for activity messages

Code

function activity_comments_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'activity_comments') . '/views',
  );
}