1 views_handler_area_text_custom.inc | views_handler_area_text_custom::render_textarea_custom($value) |
Render a text area with filter_xss_admin.
File
- core/
modules/ views/ handlers/ views_handler_area_text_custom.inc, line 46 - Definition of views_handler_area_text_custom.
Class
- views_handler_area_text_custom
- Views area text custom handler.
Code
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');
}
}