1 views_handler_relationship.inc views_handler_relationship::label()

Get this field's label.

File

core/modules/views/handlers/views_handler_relationship.inc, line 57
Views' relationship handlers.

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