コード例 #1
0
ファイル: textfield_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 = 'textfield';
     $this->_totf = 'text';
 }
コード例 #2
0
ファイル: upload_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 = 'upload';
 }
コード例 #3
0
ファイル: child_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())
 {
     throw new One_Exception_NotImplemented('Child widget is not yet implemented');
     parent::__construct($id, $name, $label, $config);
     $this->_type = 'child';
 }