You are here

public function TextCustom::buildOptionsForm in Drupal 10

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

Overrides TokenizeAreaPluginBase::buildOptionsForm

File

core/modules/views/src/Plugin/views/area/TextCustom.php, line 29

Class

TextCustom
Views area text handler.

Namespace

Drupal\views\Plugin\views\area

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  parent::buildOptionsForm($form, $form_state);
  $form['content'] = [
    '#title' => $this
      ->t('Content'),
    '#type' => 'textarea',
    '#description' => $this
      ->t('You may enter data from this view as per the "Available global token replacements" above. You may include the following allowed HTML tags: <code>@tags</code>', [
      '@tags' => '<' . implode('> <', Xss::getAdminTagList()) . '>',
    ]),
    '#default_value' => $this->options['content'],
    '#rows' => 6,
  ];
}