Lines Matching defs:title
47 /** @var string the tooltip title, defaults to $label */
48 protected $title = '';
95 * Return this item's title
97 * This title should be used to display a tooltip (using the HTML title attribute). If
98 * a title property was not explicitly set, the label will be returned.
104 if ($this->title === '') return $this->getLabel();
105 return $this->title;
137 $attr = ['href' => $this->getLink(), 'title' => $this->getTitle()];
141 $attr['title'] .= ' [' . $this->getAccesskey() . ']';