Implements \Drupal\views\Plugin\views\area\AreaPluginBase::render().
Overrides AreaPluginBase::render
function render($empty = FALSE) {
$format = isset($this->options['format']) ? $this->options['format'] : filter_default_format();
if (!$empty || !empty($this->options['empty'])) {
return array(
'#markup' => $this
->renderTextarea($this->options['content'], $format),
);
}
return array();
}