You are here

public function views_handler_field::theme in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_field.inc \views_handler_field::theme()
  2. 6.2 handlers/views_handler_field.inc \views_handler_field::theme()

Call out to the theme() function.

It probably just calls render() but allows sites to override output fairly easily.

File

handlers/views_handler_field.inc, line 1587
Definition of views_handler_field.

Class

views_handler_field
Base field handler that has no options and renders an unformatted field.

Code

public function theme($values) {
  return theme($this
    ->theme_functions(), array(
    'view' => $this->view,
    'field' => $this,
    'row' => $values,
  ));
}