function FileExtensionFormatter::settingsForm

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

Overrides BaseFieldFileFormatterBase::settingsForm

File

core/modules/file/src/Plugin/Field/FieldFormatter/FileExtensionFormatter.php, line 35

Class

FileExtensionFormatter
Formatter to render a filename as file extension.

Namespace

Drupal\file\Plugin\Field\FieldFormatter

Code

public function settingsForm(array $form, FormStateInterface $form_state) {
    $form = parent::settingsForm($form, $form_state);
    $form['extension_detect_tar'] = [
        '#type' => 'checkbox',
        '#title' => $this->t('Include tar in extension'),
        '#description' => $this->t("If the part of the filename just before the extension is '.tar', include this in the extension output."),
        '#default_value' => $this->getSetting('extension_detect_tar'),
    ];
    return $form;
}

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