function Date::defineOptions

Overrides NumericFilter::defineOptions

File

core/modules/views/src/Plugin/views/filter/Date.php, line 16

Class

Date
Filter to handle dates stored as a timestamp.

Namespace

Drupal\views\Plugin\views\filter

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  // Value is already set up properly, we're just adding our new field to it.
  $options['value']['contains']['type']['default'] = 'date';
  return $options;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.