Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Date.php

function Date::defineOptions

Same name in this branch
  1. 11.1.x core/modules/views/src/Plugin/views/sort/Date.php \Drupal\views\Plugin\views\sort\Date::defineOptions()
  2. 11.1.x core/modules/views/src/Plugin/views/filter/Date.php \Drupal\views\Plugin\views\filter\Date::defineOptions()

Overrides FieldPluginBase::defineOptions

File

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

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;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal