public function Text::renderTextarea

Render a text area, using the proper format.

1 call to Text::renderTextarea()
Text::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php
Implements \Drupal\views\Plugin\views\area\AreaPluginBase::render().

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php, line 69
Definition of Drupal\views\Plugin\views\area\Text.

Class

Text
Views area text handler.

Namespace

Drupal\views\Plugin\views\area

Code

public function renderTextarea($value, $format) {
  if ($value) {
    return check_markup($this
      ->tokenizeValue($value), $format, '', FALSE);
  }
}