Пример #1
0
 /**
  * Override the default start tag of input to deal with checked.
  *
  * @see Tag::start()
  **/
 public function start()
 {
     return $this->Hidden . "\n" . parent::start();
 }
Пример #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);
 }