예제 #1
0
 /**
  * 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();
 }
예제 #2
0
 /**
  * PHP5 type constructor
  */
 function __construct($name, $defaultValue, $label = '', $textBefore = '', $textAfter = '')
 {
     parent::__construct($name, $defaultValue, $label, $textBefore, $textAfter);
     $this->deselect();
 }
예제 #3
0
 /**
  * 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;
 }
예제 #4
0
 /**
  * PHP5 type constructor
  */
 function __construct($name, $defaultValue)
 {
     parent::__construct($name, $defaultValue, '', '', '');
 }
예제 #5
0
 /**
  * PHP5 type constructor
  */
 function __construct($name, $defaultValue = 1, $label = '', $textBefore = '', $textAfter = '')
 {
     parent::__construct($name, $defaultValue, $label, $textBefore, $textAfter);
     $this->_children = array();
 }