function views_handler_field::label

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

Get this field's label.

1 call to views_handler_field::label()
views_handler_field::admin_summary in handlers/views_handler_field.inc
Provide extra data to the administration form

File

handlers/views_handler_field.inc, line 141

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'];
}