1 date_views_filter_handler_simple.inc date_views_filter_handler_simple::init(&$view, &$options)

Provide some extra help to get the operator/value easier to use.

This likely has to be overridden by filters which are more complex than simple operator/value.

Overrides views_handler_filter::init

File

core/modules/date/views/date_views_filter_handler_simple.inc, line 28
A standard Views filter for a single date field, using Date API form selectors and sql handling.

Class

date_views_filter_handler_simple
@file A standard Views filter for a single date field, using Date API form selectors and sql handling.

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  $this->date_handler = new date_sql_handler(DATE_UNIX);
  if (!empty($this->definition['field_name'])) {
    $field = field_info_field($this->definition['field_name']);
    if (!empty($field) && !empty($field['type'])) {
      $this->date_handler->date_type = $field['type'];
    }
    $this->date_handler->db_timezone = date_get_timezone_db($field['settings']['tz_handling']);
    $this->date_handler->local_timezone = date_get_timezone($field['settings']['tz_handling']);
  }
  $this->date_handler->granularity = isset($options['granularity']) ? $options['granularity'] : 'day';
  $this->format = $this->date_handler->views_formats($this->options['granularity'], 'sql');

  // Identify the base table for this field.
  // It will be used to call for the right query field options.
  $this->base_table = $this->table;
}