function _datex_date_views_argument_handler_simple::options_form in Datex 7.3
Schema to use for the displayed date.
Overrides views_handler_argument::options_form
File
- ./
datex.views.inc, line 510 - 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 options_form(&$form, &$form_state) {
$this
->_options_form($form, $form_state);
$form['datex_schema'] = [
'#title' => t('Datex Schema'),
'#type' => 'select',
'#options' => _datex_schema_form_options(),
'#default_value' => $this->options['datex_schema'],
];
}