function views_handler_relationship::label

Get this field's label.

File

handlers/views_handler_relationship.inc, line 57

Class

views_handler_relationship
Relationship handler, allows a new version of the primary table to be linked.

Code

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