Lines Matching defs:label
17 * @param string $label The label text for this element
19 public function __construct($type, $name, $label)
21 parent::__construct($type, $name, $label);
66 * The HTML representation of this element wrapped in a label
67 * Note: allow HTML tags in label text
73 if ($this->label) {
74 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF
76 . '<span>' . $this->label->val() . '</span>' . DOKU_LF
77 . '</label>';