function views_handler_argument_numeric::option_definition
Same name in other branches
- 6.x-3.x handlers/views_handler_argument_numeric.inc \views_handler_argument_numeric::option_definition()
Overrides views_handler_argument::option_definition
1 call to views_handler_argument_numeric::option_definition()
- views_handler_argument_field_list::option_definition in modules/
field/ views_handler_argument_field_list.inc - Information about options for all kinds of purposes will be held here.
1 method overrides views_handler_argument_numeric::option_definition()
- views_handler_argument_field_list::option_definition in modules/
field/ views_handler_argument_field_list.inc - Information about options for all kinds of purposes will be held here.
File
-
handlers/
views_handler_argument_numeric.inc, line 34
Class
- views_handler_argument_numeric
- Basic argument handler for arguments that are numeric.
Code
public function option_definition() {
$options = parent::option_definition();
$options['break_phrase'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['not'] = array(
'default' => FALSE,
'bool' => TRUE,
);
return $options;
}