You are here

public function TwitterEmbedWidget::settingsSummary in Twitter Embed 8

Returns a short summary for the current widget settings.

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

Return value

array A short summary of the widget settings.

Overrides WidgetBase::settingsSummary

File

src/Plugin/Field/FieldWidget/TwitterEmbedWidget.php, line 60

Class

TwitterEmbedWidget
Plugin implementation of the 'twitter_timeline_widget' widget.

Namespace

Drupal\twitter_embed\Plugin\Field\FieldWidget

Code

public function settingsSummary() {
  $summary = [];
  $summary[] = t('Textfield size: @size', [
    '@size' => $this
      ->getSetting('size'),
  ]);
  if (!empty($this
    ->getSetting('placeholder'))) {
    $summary[] = t('Placeholder: @placeholder', [
      '@placeholder' => $this
        ->getSetting('placeholder'),
    ]);
  }
  return $summary;
}