コード例 #1
0
ファイル: reset_tbd.php プロジェクト: pdelbar/onethree
 /**
  * Class constructor
  *
  * @param string $id
  * @param string $name
  * @param string $label
  * @param array $config
  */
 public function __construct($id = NULL, $name = '', $value = NULL, $label = NULL, array $config = array())
 {
     parent::__construct($id, $name, $value, $label, $config);
     $this->_type = 'reset';
     $this->_totf = 'reset';
 }
コード例 #2
0
ファイル: hidden_tbd.php プロジェクト: pdelbar/onethree
 /**
  * Class constructor
  *
  * @param string $id
  * @param string $name
  * @param string $label
  * @param array $config
  */
 public function __construct($id = NULL, $name = '', $label = NULL, $config = array())
 {
     parent::__construct($id, $name, $label, $config);
     $this->_type = 'hidden';
     $this->_totf = 'hidden';
 }