You are here

public function FileSize::buildOptionsForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/field/FileSize.php \Drupal\views\Plugin\views\field\FileSize::buildOptionsForm()
  2. 10 core/modules/views/src/Plugin/views/field/FileSize.php \Drupal\views\Plugin\views\field\FileSize::buildOptionsForm()

Default options form that provides the label widget that all fields should have.

Overrides FieldPluginBase::buildOptionsForm

File

core/modules/views/src/Plugin/views/field/FileSize.php, line 31

Class

FileSize
Render a numeric value as a size.

Namespace

Drupal\views\Plugin\views\field

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  parent::buildOptionsForm($form, $form_state);
  $form['file_size_display'] = [
    '#title' => $this
      ->t('File size display'),
    '#type' => 'select',
    '#options' => [
      'formatted' => $this
        ->t('Formatted (in KB or MB)'),
      'bytes' => $this
        ->t('Raw bytes'),
    ],
  ];
}