コード例 #1
0
ファイル: eptSale.php プロジェクト: xuezheng17/pozvfs
 public function __construct($type = '')
 {
     parent::__construct();
     if ($type == '') {
         $this->type = eptSale::OTHER;
     } else {
         $this->type = $type;
     }
 }
コード例 #2
0
ファイル: eptItem.php プロジェクト: BGCX067/ezpdo2-svn-to-git
 public function __construct($type)
 {
     parent::__construct();
     $this->type = $type;
 }
コード例 #3
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #4
0
ファイル: eptPerson.php プロジェクト: xuezheng17/pozvfs
 /**
  * Constructor
  * @param string $name author name
  */
 public function __construct($name = '')
 {
     parent::__construct();
     $this->name = $name;
 }