Example #1
0
 /**
  * Constructor
  *
  * @param string $display 
  * @param string or array $options 
  * @author Justin Palmer
  */
 function __construct($name, $options = null, $checked_value = 1, $unchecked_value = 0)
 {
     $this->Hidden = new InputHidden($name, $unchecked_value, $options);
     parent::__construct($name, $checked_value, $options);
 }
Example #2
0
 /**
  * Constructor
  *
  * @param string $display 
  * @param string or array $options 
  * @author Justin Palmer
  */
 function __construct($name, $value, $checked = false, $options = null)
 {
     parent::__construct($name, $value, $checked, $options);
 }