You are here

function Text::render_textarea in Views (for Drupal 7) 8.3

Render a text area, using the proper format.

1 call to Text::render_textarea()
Text::render in lib/Drupal/views/Plugin/views/area/Text.php
Render the area

File

lib/Drupal/views/Plugin/views/area/Text.php, line 110
Definition of Drupal\views\Plugin\views\area\Text.

Class

Text
Views area text handler.

Namespace

Drupal\views\Plugin\views\area

Code

function render_textarea($value, $format) {
  if ($value) {
    if ($this->options['tokenize']) {
      $value = $this->view->style_plugin
        ->tokenize_value($value, 0);
    }
    return check_markup($value, $format, '', FALSE);
  }
}