className = $className; $this->allowHTML = $allowHTML; parent::__construct(null, $title, null, $form); } /** * Returns a label containing the title, and an HTML class if given. */ function Field() { $classClause = $this->className ? " class=\"$this->className\"" : ''; return "" . ($this->allowHTML ? $this->title : htmlentities($this->title)) . ""; } } ?>