function views_handler::option_definition

Same name in other branches
  1. 6.x-3.x includes/handlers.inc \views_handler::option_definition()

Overrides views_object::option_definition

6 calls to views_handler::option_definition()
views_handler_area::option_definition in handlers/views_handler_area.inc
Information about options for all kinds of purposes will be held here.
views_handler_argument::option_definition in handlers/views_handler_argument.inc
Information about options for all kinds of purposes will be held here.
views_handler_field::option_definition in handlers/views_handler_field.inc
Information about options for all kinds of purposes will be held here.
views_handler_filter::option_definition in handlers/views_handler_filter.inc
Information about options for all kinds of purposes will be held here.
views_handler_relationship::option_definition in handlers/views_handler_relationship.inc
Information about options for all kinds of purposes will be held here.

... See full list

6 methods override views_handler::option_definition()
views_handler_area::option_definition in handlers/views_handler_area.inc
Information about options for all kinds of purposes will be held here.
views_handler_argument::option_definition in handlers/views_handler_argument.inc
Information about options for all kinds of purposes will be held here.
views_handler_field::option_definition in handlers/views_handler_field.inc
Information about options for all kinds of purposes will be held here.
views_handler_filter::option_definition in handlers/views_handler_filter.inc
Information about options for all kinds of purposes will be held here.
views_handler_relationship::option_definition in handlers/views_handler_relationship.inc
Information about options for all kinds of purposes will be held here.

... See full list

File

includes/handlers.inc, line 262

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

public function option_definition() {
    $options = parent::option_definition();
    $options['id'] = array(
        'default' => '',
    );
    $options['table'] = array(
        'default' => '',
    );
    $options['field'] = array(
        'default' => '',
    );
    $options['relationship'] = array(
        'default' => 'none',
    );
    $options['group_type'] = array(
        'default' => 'group',
    );
    $options['ui_name'] = array(
        'default' => '',
    );
    return $options;
}