You are here

function views_handler_field_quotes::option_definition in Quotes 7

Same name and namespace in other branches
  1. 6 views_handler_field_quotes.inc \views_handler_field_quotes::option_definition()

Define options available for this field.

Overrides views_handler_field::option_definition

File

./views_handler_field_quotes.inc, line 16
Provide views data and handlers for quotes.module

Class

views_handler_field_quotes
Field handler to provide an embedded image.

Code

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