function Date::value_form in Views (for Drupal 7) 8.3
Add a type selector to the value form
Overrides Numeric::value_form
File
- lib/
Drupal/ views/ Plugin/ views/ filter/ Date.php, line 35 - Definition of Drupal\views\Plugin\views\filter\Date.
Class
- Date
- Filter to handle dates stored as a timestamp.
Namespace
Drupal\views\Plugin\views\filterCode
function value_form(&$form, &$form_state) {
if (empty($form_state['exposed'])) {
$form['value']['type'] = array(
'#type' => 'radios',
'#title' => t('Value type'),
'#options' => array(
'date' => t('A date in any machine readable format. CCYY-MM-DD HH:MM:SS is preferred.'),
'offset' => t('An offset from the current time such as "!example1" or "!example2"', array(
'!example1' => '+1 day',
'!example2' => '-2 hours -30 minutes',
)),
),
'#default_value' => !empty($this->value['type']) ? $this->value['type'] : 'date',
);
}
parent::value_form($form, $form_state);
}