label = $label; } /** * Get or set the element's label text * * @param null|string $value * @return string|$this */ public function val($value = null) { if($value !== null) { $this->label = $value; return $this; } return $this->label; } /** * The HTML representation of this element * * @return string */ public function toHTML() { return ''; } }