function FileVideoFormatter::settingsSummary

Same name and namespace in other branches
  1. 9 core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php \Drupal\file\Plugin\Field\FieldFormatter\FileVideoFormatter::settingsSummary()
  2. 8.9.x core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php \Drupal\file\Plugin\Field\FieldFormatter\FileVideoFormatter::settingsSummary()
  3. 11.x core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php \Drupal\file\Plugin\Field\FieldFormatter\FileVideoFormatter::settingsSummary()

Overrides FileMediaFormatterBase::settingsSummary

File

core/modules/file/src/Plugin/Field/FieldFormatter/FileVideoFormatter.php, line 76

Class

FileVideoFormatter
Plugin implementation of the 'file_video' formatter.

Namespace

Drupal\file\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary = parent::settingsSummary();
  $summary[] = $this->t('Muted: %muted', [
    '%muted' => $this->getSetting('muted') ? $this->t('yes') : $this->t('no'),
  ]);
  if ($width = $this->getSetting('width')) {
    $summary[] = $this->t('Width: %width pixels', [
      '%width' => $width,
    ]);
  }
  if ($height = $this->getSetting('height')) {
    $summary[] = $this->t('Height: %height pixels', [
      '%height' => $height,
    ]);
  }
  return $summary;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.