1.20.x views_handler_field.inc | views_handler_field::theme($values) |
Call out to the theme() function, which probably just calls render() but allows sites to override output more easily.
File
- modules/
views/ handlers/ views_handler_field.inc, line 1577 - @todo.
Class
- views_handler_field
- Base field handler that has no options and renders an unformatted field.
Code
function theme($values) {
return theme($this->theme_functions(),
array(
'view' => $this->view,
'field' => $this,
'row' => $values
));
}