Overrides AreaPluginBase::render
public function render($empty = FALSE) { $format = $this->options['content']['format'] ?? filter_default_format(); if (!$empty || !empty($this->options['empty'])) { return [ '#type' => 'processed_text', '#text' => $this->tokenizeValue($this->options['content']['value']), '#format' => $format, ]; } return []; }