You are here

function twitter_views_handler_field_image::option_definition in Twitter 7.5

Default options form.

Overrides views_handler_field::option_definition

File

./twitter_views_field_handlers.inc, line 205
Views handlers for Twitter module.

Class

twitter_views_handler_field_image
Renders the image attached to a tweet.

Code

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