You are here

public function TimestampAgoFormatter::settingsSummary in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/TimestampAgoFormatter.php \Drupal\Core\Field\Plugin\Field\FieldFormatter\TimestampAgoFormatter::settingsSummary()

Returns a short summary for the current formatter settings.

If an empty result is returned, a UI can still be provided to display a settings form in case the formatter has configurable settings.

Return value

string[] A short summary of the formatter settings.

Overrides FormatterBase::settingsSummary

File

core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/TimestampAgoFormatter.php, line 142
Contains \Drupal\Core\Field\Plugin\Field\FieldFormatter\TimestampAgoFormatter.

Class

TimestampAgoFormatter
Plugin implementation of the 'timestamp' formatter as time ago.

Namespace

Drupal\Core\Field\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary = parent::settingsSummary();
  $future_date = strtotime('1 year 1 month 1 week 1 day 1 hour 1 minute');
  $past_date = strtotime('-1 year -1 month -1 week -1 day -1 hour -1 minute');
  $summary[] = $this
    ->t('Future date: %display', array(
    '%display' => $this
      ->formatTimestamp($future_date),
  ));
  $summary[] = $this
    ->t('Past date: %display', array(
    '%display' => $this
      ->formatTimestamp($past_date),
  ));
  return $summary;
}