var $mOptions = null;
var $cClassName = "Checkbox";
- function Checkbox($name,$value="")
+ function __construct($name,$value="")
{
- $this->mName = $name;
+ $this->name = $name;
$this->mValue = $value;
}
function toStringControl() {
if (!$this->isRenderable()) return "";
- if ($this->mId=="") $this->mId = $this->mName;
+ if ($this->id=="") $this->id = $this->name;
$html = "\n\t<input type=\"checkbox\"";
- $html .= " name=\"$this->mName\" id=\"$this->mId\"";
+ $html .= " name=\"$this->name\" id=\"$this->id\"";
if ($this->mTabindex!="")
$html .= " tabindex=\"$this->mTabindex\"";