function views_handler_relationship::label

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

Get this field's label.

File

handlers/views_handler_relationship.inc, line 55

Class

views_handler_relationship
Simple relationship handler that allows a new version of the primary table to be linked in.

Code

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