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