You are here

function clients_views_handler_field::theme in Web Service Clients 7

Same name and namespace in other branches
  1. 6 clients/clients_views/handlers/clients_views_handler_field.inc \clients_views_handler_field::theme()

Call out to the theme() function.

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

Overrides views_handler_field::theme

File

clients/clients_views/handlers/clients_views_handler_field.inc, line 72

Class

clients_views_handler_field
@todo Is this handler doing anything useful or can it be removed??

Code

function theme($values) {
  return theme($this
    ->theme_functions(), $this->view, $this, $values);
}