/** * PHP5 type constructor */ function __construct($name, $defaultValue = '', $label = '', $textBefore = '', $textAfter = '', $size = 50, $maxlength = 100) { parent::__construct($name, $defaultValue, $label, $textBefore, $textAfter); $this->_size = $size; $this->_maxlength = $maxlength; $this->_tests = array(); }
/** * PHP5 type constructor */ function __construct($name, $defaultValue, $label = '', $textBefore = '', $textAfter = '') { parent::__construct($name, $defaultValue, $label, $textBefore, $textAfter); $this->deselect(); }
/** * PHP5 type constructor */ function __construct($name, $defaultValue, $label = '', $textBefore = '', $textAfter = '', $rows = 10, $cols = 50) { parent::__construct($name, $defaultValue, $label, $textBefore, $textAfter); $this->_rows = $rows; $this->_cols = $cols; }
/** * PHP5 type constructor */ function __construct($name, $defaultValue) { parent::__construct($name, $defaultValue, '', '', ''); }
/** * PHP5 type constructor */ function __construct($name, $defaultValue = 1, $label = '', $textBefore = '', $textAfter = '') { parent::__construct($name, $defaultValue, $label, $textBefore, $textAfter); $this->_children = array(); }