Render a text area with filter_xss_admin.
function render_textarea($value) {
if ($value) {
if ($this->options['tokenize']) {
$value = $this->view->style_plugin
->tokenize_value($value, 0);
}
return $this
->sanitizeValue($this
->globalTokenReplace($value), 'xss_admin');
}
}