function views_handler_filter_string::option_definition

Overrides views_handler_filter::option_definition

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

File

handlers/views_handler_filter_string.inc, line 24

Class

views_handler_filter_string
Basic textfield filter to handle string filtering commands including equality, like, not like, etc.

Code

public function option_definition() {
    $options = parent::option_definition();
    $options['expose']['contains']['required'] = array(
        'default' => FALSE,
        'bool' => TRUE,
    );
    return $options;
}