示例#1
0
 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
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_SPACE_inventory_item");
     $this->setObjectType("inventory");
     return $this;
 }
示例#4
0
 public function __construct($id = -1)
 {
     parent::__construct($id);
     $this->setTable("##_language");
     $this->setObjectType("language");
     return $this;
 }
示例#5
0
 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;
 }