function Date::defineOptions

Overrides FieldPluginBase::defineOptions

File

core/modules/views/src/Plugin/views/field/Date.php, line 87

Class

Date
A handler to provide proper displays for dates.

Namespace

Drupal\views\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['date_format'] = [
    'default' => 'small',
  ];
  $options['custom_date_format'] = [
    'default' => '',
  ];
  $options['timezone'] = [
    'default' => '',
  ];
  return $options;
}

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