You are here

public function Sql::setFieldTimezoneOffset in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/query/Sql.php \Drupal\views\Plugin\views\query\Sql::setFieldTimezoneOffset()

Applies a timezone offset to the given field.

Parameters

string &$field: The date field, in string format.

int $offset: The timezone offset to apply to the field.

Overrides QueryPluginBase::setFieldTimezoneOffset

1 call to Sql::setFieldTimezoneOffset()
Sql::getDateField in core/modules/views/src/Plugin/views/query/Sql.php
Returns a Unix timestamp to database native timestamp expression.

File

core/modules/views/src/Plugin/views/query/Sql.php, line 1823

Class

Sql
Views query plugin for an SQL query.

Namespace

Drupal\views\Plugin\views\query

Code

public function setFieldTimezoneOffset(&$field, $offset) {
  $this->dateSql
    ->setFieldTimezoneOffset($field, $offset);
}