OptionalEndDateDateTimeRangeTrait.php in Optional End Date 8
File
src/OptionalEndDateDateTimeRangeTrait.php
View source
<?php
namespace Drupal\optional_end_date;
use Drupal\Core\Field\FieldItemListInterface;
trait OptionalEndDateDateTimeRangeTrait {
public function viewElements(FieldItemListInterface $items, $langcode) {
$elements = [];
$separator = $this
->getSetting('separator');
foreach ($items as $delta => $item) {
if (!empty($item->start_date)) {
$start_date = $item->start_date;
$end_date = $item->end_date;
if ($end_date !== NULL && $start_date
->getTimestamp() !== $end_date
->getTimestamp()) {
$elements[$delta] = [
'start_date' => $this
->buildDateWithIsoAttribute($start_date),
'separator' => [
'#plain_text' => ' ' . $separator . ' ',
],
'end_date' => $this
->buildDateWithIsoAttribute($end_date),
];
}
else {
$elements[$delta] = $this
->buildDateWithIsoAttribute($start_date);
if (!empty($item->_attributes)) {
$elements[$delta]['#attributes'] += $item->_attributes;
unset($item->_attributes);
}
}
}
}
return $elements;
}
}