1 views_handler_field.inc views_handler_field::label()

Get this field's label.

File

core/modules/views/handlers/views_handler_field.inc, line 183
@todo.

Class

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

Code

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