You are here

function clients_views_handler_field::label in Web Service Clients 6

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

Get this field's label.

File

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

Class

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

Code

function label() {
  if (!isset($this->options['label'])) {
    return '';
  }
  return $this->options['label'];
}