You are here

easy_social.views.inc in Easy Social 7.2

Easy Social Views hooks.

File

easy_social.views.inc
View source
<?php

/**
 * @file
 * Easy Social Views hooks.
 */

/**
 * Implements hook_views_data().
 */
function easy_social_views_data() {
  $data['node']['easy_social'] = array(
    'field' => array(
      'title' => t('Easy Social'),
      'help' => t('Display Easy Social share widgets.'),
      'handler' => 'easy_social_handler_field',
    ),
  );
  return $data;
}

Functions

Namesort descending Description
easy_social_views_data Implements hook_views_data().