You are here

function fb_social_views_handlers in Facebook social plugins integration 6.2

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

File

./fb_social.views.inc, line 40
fb_social_like.views.inc

Code

function fb_social_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'fb_social') . '/plugins/views',
    ),
    'handlers' => array(
      'fb_social_handler_field' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}