function views_handler_field::theme

Same name in other branches
  1. 7.x-3.x handlers/views_handler_field.inc \views_handler_field::theme()

Call out to the theme() function, which probably just calls render() but allows sites to override output fairly easily.

File

handlers/views_handler_field.inc, line 1119

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(), $this->view, $this, $values);
}