You are here

function fb_social_like_views_handlers in Facebook social plugins integration 6

Implementation of hook_views_handlers() to register all of the basic handlers views uses.

File

modules/fb_social_like/fb_social_like.views.inc, line 38
fb_social_like.views.inc

Code

function fb_social_like_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'fb_social_like') . '/views',
    ),
    'handlers' => array(
      'fb_social_like_handler_field_like' => array(
        'parent' => 'views_handler_field_node',
      ),
    ),
  );
}