You are here

public function OfficeHoursFormatterStatus::settingsSummary in Office Hours 8

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 OfficeHoursFormatterBase::settingsSummary

File

src/Plugin/Field/FieldFormatter/OfficeHoursFormatterStatus.php, line 39

Class

OfficeHoursFormatterStatus
Plugin implementation of the formatter.

Namespace

Drupal\office_hours\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary[] = $this
    ->t("Display only 'Closed'/'Opened' text.");
  return $summary;
}