function views_handler_area_text::option_definition

Overrides views_handler_area::option_definition

1 call to views_handler_area_text::option_definition()
views_handler_area_text_custom::option_definition in handlers/views_handler_area_text_custom.inc
Information about options for all kinds of purposes will be held here.
1 method overrides views_handler_area_text::option_definition()
views_handler_area_text_custom::option_definition in handlers/views_handler_area_text_custom.inc
Information about options for all kinds of purposes will be held here.

File

handlers/views_handler_area_text.inc, line 18

Class

views_handler_area_text
Views area text handler.

Code

public function option_definition() {
    $options = parent::option_definition();
    $options['content'] = array(
        'default' => '',
        'translatable' => TRUE,
        'format_key' => 'format',
    );
    $options['format'] = array(
        'default' => NULL,
    );
    $options['tokenize'] = array(
        'default' => FALSE,
        'bool' => TRUE,
    );
    return $options;
}