options['empty'])) { return $this->render_textarea_custom($this->options['content']); } return ''; } /** * Render a text area with filter_xss_admin. * * @param string $value * The text area string to process. * * @return string * The string after it has been sanitized, optionally tokenized too. */ public function render_textarea_custom($value) { if ($value) { if ($this->options['tokenize']) { $value = $this->view->style_plugin->tokenize_value($value, 0); } return $this->sanitize_value($value, 'xss_admin'); } } }