public function FileSize::buildOptionsForm in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/field/FileSize.php \Drupal\views\Plugin\views\field\FileSize::buildOptionsForm()
 - 9 core/modules/views/src/Plugin/views/field/FileSize.php \Drupal\views\Plugin\views\field\FileSize::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\fieldCode
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'),
    ],
  ];
}