You are here

function _datex_date_views_argument_handler_simple::option_definition in Datex 7.3

Default value for the date_fields option.

Overrides views_handler_argument::option_definition

File

./datex.views.inc, line 501
Datex views integration.

Class

_datex_date_views_argument_handler_simple
Copied from date_views module. So we have no hard dependency on it.

Code

function option_definition() {
  $options = $this
    ->_option_definition();
  $options['datex_schema'] = [
    'default' => 'default',
  ];
  return $options;
}