X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fdatetime%2Fsrc%2FDateTimeComputed.php;fp=web%2Fcore%2Fmodules%2Fdatetime%2Fsrc%2FDateTimeComputed.php;h=16f664be5283df95400a25b1abb87c7932b19f0f;hp=9320bafa42db7746a70921c7f3dc22efa2417825;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/core/modules/datetime/src/DateTimeComputed.php b/web/core/modules/datetime/src/DateTimeComputed.php index 9320bafa4..16f664be5 100644 --- a/web/core/modules/datetime/src/DateTimeComputed.php +++ b/web/core/modules/datetime/src/DateTimeComputed.php @@ -7,6 +7,7 @@ use Drupal\Core\Datetime\DrupalDateTime; use Drupal\Core\TypedData\DataDefinitionInterface; use Drupal\Core\TypedData\TypedDataInterface; use Drupal\Core\TypedData\TypedData; +use Drupal\datetime\Plugin\Field\FieldType\DateTimeItemInterface; /** * A computed property for dates of date time field items. @@ -36,7 +37,7 @@ class DateTimeComputed extends TypedData { /** * {@inheritdoc} */ - public function getValue($langcode = NULL) { + public function getValue() { if ($this->date !== NULL) { return $this->date; } @@ -46,9 +47,9 @@ class DateTimeComputed extends TypedData { $value = $item->{($this->definition->getSetting('date source'))}; $datetime_type = $item->getFieldDefinition()->getSetting('datetime_type'); - $storage_format = $datetime_type === DateTimeItem::DATETIME_TYPE_DATE ? DATETIME_DATE_STORAGE_FORMAT : DATETIME_DATETIME_STORAGE_FORMAT; + $storage_format = $datetime_type === DateTimeItem::DATETIME_TYPE_DATE ? DateTimeItemInterface::DATE_STORAGE_FORMAT : DateTimeItemInterface::DATETIME_STORAGE_FORMAT; try { - $date = DrupalDateTime::createFromFormat($storage_format, $value, DATETIME_STORAGE_TIMEZONE); + $date = DrupalDateTime::createFromFormat($storage_format, $value, DateTimeItemInterface::STORAGE_TIMEZONE); if ($date instanceof DrupalDateTime && !$date->hasErrors()) { $this->date = $date; // If the format did not include an explicit time portion, then the @@ -56,12 +57,10 @@ class DateTimeComputed extends TypedData { // set the time to 12:00:00 UTC for date-only fields. This is used so // that the local date portion is the same, across nearly all time // zones. - // @see datetime_date_default_time() - // @see http://php.net/manual/en/datetime.createfromformat.php - // @todo Update comment and/or code per the chosen solution in - // https://www.drupal.org/node/2830094 + // @see \Drupal\Component\Datetime\DateTimePlus::setDefaultDateTime() + // @see http://php.net/manual/datetime.createfromformat.php if ($datetime_type === DateTimeItem::DATETIME_TYPE_DATE) { - $this->date->setTime(12, 0, 0); + $this->date->setDefaultDateTime(); } } }