function FileSize::buildOptionsForm
Default option form that provides 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\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'),
    ],
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.