You are here

function activity_comments_views_handlers in Activity 6.2

Same name and namespace in other branches
  1. 7 activity_comments/views/activity_comments.views.inc \activity_comments_views_handlers()

Implementation of hook_views_handlers().

File

activity_comments/views/activity_comments.views.inc, line 69

Code

function activity_comments_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'activity_comments') . '/views',
    ),
    'handlers' => array(
      'activity_comments_handler_field_comments' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}