コード例 #1
0
ファイル: entity.php プロジェクト: bushvin/wingman
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_SPACE_entity");
     $this->setObjectType("entity");
     return $this;
 }
コード例 #2
0
ファイル: role.php プロジェクト: bushvin/wingman
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_auth_role");
     $this->setObjectType("role");
     return $this;
 }
コード例 #3
0
ファイル: inventory.php プロジェクト: bushvin/wingman
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_SPACE_inventory_item");
     $this->setObjectType("inventory");
     return $this;
 }
コード例 #4
0
ファイル: language.php プロジェクト: bushvin/wingman
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_language");
     $this->setObjectType("language");
     return $this;
 }
コード例 #5
0
ファイル: customer.php プロジェクト: bushvin/wingman
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_customer");
     $this->setObjectType("customer");
     return $this;
 }
コード例 #6
0
ファイル: user.php プロジェクト: bushvin/wingman
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->_acl = new stdClass();
     $this->setTable("##_auth_user");
     $this->setObjectType("user");
     return $this;
 }