function views_handler_field_custom::render
Overrides views_handler_field::render
File
-
handlers/
views_handler_field_custom.inc, line 52
Class
- views_handler_field_custom
- A handler to provide a field that is completely custom by the administrator.
Code
public function render($values) {
// Return the text, so the code never thinks the value is empty.
return $this->options['alter']['text'];
}