function views_handler_relationship::label
3.x views_handler_relationship.inc | views_handler_relationship::label() |
2.x views_handler_relationship.inc | views_handler_relationship::label() |
Get this field's label.
File
- handlers/
views_handler_relationship.inc, line 58 - 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'];
}