You are here

function tweetbutton_views_handlers in Tweet Button 7

Same name and namespace in other branches
  1. 6 tweetbutton.module \tweetbutton_views_handlers()

Implements of hook_views_handlers().

File

./tweetbutton.views.inc, line 32

Code

function tweetbutton_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'tweetbutton'),
    ),
    'handlers' => array(
      'tweetbutton_handler_field_tweet' => array(
        'parent' => 'views_handler_field_node',
      ),
    ),
  );
}