You are here

tweet.views.inc in Tweet 7.4

Integrates the Tweet module with Views.

File

tweet.views.inc
View source
<?php

/**
 * @file
 *   Integrates the Tweet module with Views.
 */

/**
 * Implements hook_views_data().
 */
function tweet_views_data() {
  $data = array();
  $data['node']['tweet'] = array(
    'group' => t('Tweet'),
    'title' => t('Tweet button'),
    'help' => t('Display the Tweet button for the relevant node.'),
    'field' => array(
      'field' => 'nid',
      'handler' => 'tweet_views_handler_field_button',
      'click sortable' => FALSE,
    ),
  );
  return $data;
}

Functions

Namesort descending Description
tweet_views_data Implements hook_views_data().