class Checkbox extends FormElement {
var $mChecked = false;
var $mOptions = null;
- var $cClassName = "Checkbox";
- function __construct($name,$value="")
- {
- $this->name = $name;
- $this->value = $value;
- }
+ function __construct($name, $value = '') {
+ $this->class = 'Checkbox';
+ $this->name = $name;
+ $this->value = $value;
+ }
function setChecked($value) { $this->mChecked = $value; }
function isChecked() { return $this->mChecked; }
function setData($value) { $this->mOptions = $value; }
function getData() { return $this->mOptions; }
- function toStringControl() {
+ function getHtml() {
if ($this->id=="") $this->id = $this->name;
if ($this->mChecked || (($this->value == $this->mOptions) && ($this->value != null)))
$html .= " checked=\"true\"";
- if (!$this->isEnable())
+ if (!$this->isEnabled())
$html .= " disabled=\"disabled\"";
$html .= " value=\"".htmlspecialchars($this->mOptions)."\"";