public function SmartDateDurationFormatter::viewElements in Smart Date 8.2
Same name and namespace in other branches
- 3.x src/Plugin/Field/FieldFormatter/SmartDateDurationFormatter.php \Drupal\smart_date\Plugin\Field\FieldFormatter\SmartDateDurationFormatter::viewElements()
- 3.0.x src/Plugin/Field/FieldFormatter/SmartDateDurationFormatter.php \Drupal\smart_date\Plugin\Field\FieldFormatter\SmartDateDurationFormatter::viewElements()
- 3.1.x src/Plugin/Field/FieldFormatter/SmartDateDurationFormatter.php \Drupal\smart_date\Plugin\Field\FieldFormatter\SmartDateDurationFormatter::viewElements()
- 3.2.x src/Plugin/Field/FieldFormatter/SmartDateDurationFormatter.php \Drupal\smart_date\Plugin\Field\FieldFormatter\SmartDateDurationFormatter::viewElements()
- 3.3.x src/Plugin/Field/FieldFormatter/SmartDateDurationFormatter.php \Drupal\smart_date\Plugin\Field\FieldFormatter\SmartDateDurationFormatter::viewElements()
- 3.4.x src/Plugin/Field/FieldFormatter/SmartDateDurationFormatter.php \Drupal\smart_date\Plugin\Field\FieldFormatter\SmartDateDurationFormatter::viewElements()
Overrides SmartDateTrait::viewElements
File
- src/
Plugin/ Field/ FieldFormatter/ SmartDateDurationFormatter.php, line 80
Class
- SmartDateDurationFormatter
- Plugin implementation of a duration-based formatter for 'smartdate' fields.
Namespace
Drupal\smart_date\Plugin\Field\FieldFormatterCode
public function viewElements(FieldItemListInterface $items, $langcode) {
$elements = [];
// TODO: intelligent switching between retrieval methods.
// Look for a defined format and use it if specified.
$format_label = $this
->getSetting('format');
if ($format_label) {
$entity_storage_manager = \Drupal::entityTypeManager()
->getStorage('smart_date_format');
$format = $entity_storage_manager
->load($format_label);
$settings = $format
->getOptions();
}
else {
$settings = [
'separator' => $this
->getSetting('separator'),
'join' => $this
->getSetting('join'),
'time_format' => $this
->getSetting('time_format'),
'time_hour_format' => $this
->getSetting('time_hour_format'),
'date_format' => $this
->getSetting('date_format'),
'date_first' => $this
->getSetting('date_first'),
'ampm_reduce' => $this
->getSetting('ampm_reduce'),
'allday_label' => $this
->getSetting('allday_label'),
];
}
foreach ($items as $delta => $item) {
if (!empty($item->value) && !empty($item->end_value)) {
$elements[$delta] = static::formatSmartDate($item->value, $item->value, $settings);
$elements[$delta]['spacer'] = [
'#markup' => $this
->getSetting('duration_separator'),
];
$duration_output = \Drupal::service('date.formatter')
->formatDiff($item->value, $item->end_value);
$elements[$delta]['duration'] = [
'#markup' => $duration_output,
];
if (!empty($item->_attributes)) {
$elements[$delta]['#attributes'] += $item->_attributes;
// Unset field item attributes since they have been included in the
// formatter output and should not be rendered in the field template.
unset($item->_attributes);
}
}
}
return $elements;
}