You are here

function views_handler_field_tweetbutton_node::option_definition in Tweet Button 6

Overrides views_handler_field_tweetbutton::option_definition

File

./tweetbutton_views_field_handlers.inc, line 78

Class

views_handler_field_tweetbutton_node

Code

function option_definition() {
  $options = parent::option_definition();
  $options['entity_type'] = array(
    'default' => 'node',
  );
  return $options;
}