You are here

function _datex_views_handler_argument_node_created_fulldate::options_form in Datex 7.3

Schema to use for the displayed date.

Overrides views_handler_argument::options_form

File

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

Class

_datex_views_handler_argument_node_created_fulldate

Code

function options_form(&$form, &$form_state) {
  parent::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'],
  ];
}