예제 #1
0
 /**
  * @return Bengine_Game_Model_Friend
  */
 protected function init()
 {
     $this->setTableName("buddylist");
     $this->setPrimaryKey("relid");
     $this->setModelName("game/friend");
     return parent::init();
 }
예제 #2
0
 /**
  * (non-PHPdoc)
  * @see lib/Object#init()
  */
 protected function init()
 {
     $this->setTableName("user");
     $this->setPrimaryKey("userid");
     $this->setModelName("game/user");
     return parent::init();
 }
 /**
  * @return Bengine_Game_Model_AchievementReward
  */
 protected function init()
 {
     $this->setTableName("achievement_reward");
     $this->setPrimaryKey("achievement_reward_id");
     $this->setModelName("game/achievementReward");
     return parent::init();
 }
예제 #4
0
 /**
  * (non-PHPdoc)
  * @see lib/Object#init()
  */
 protected function init()
 {
     $this->setTableName("events");
     $this->setPrimaryKey("eventid");
     $this->setModelName("game/event");
     return parent::init();
 }
예제 #5
0
 /**
  * (non-PHPdoc)
  * @see lib/Object#init()
  */
 protected function init()
 {
     $this->setTableName("galaxy");
     $this->setPrimaryKey("planetid");
     $this->setModelName("game/debris");
     return parent::init();
 }
예제 #6
0
 /**
  * Initializes the model.
  *
  * @return Bengine_Game_Model_Construction
  */
 protected function init()
 {
     $this->setTableName("construction");
     $this->setModelName("game/construction");
     $this->setPrimaryKey("buildingid");
     return parent::init();
 }
예제 #7
0
 /**
  * (non-PHPdoc)
  * @see lib/Object#init()
  */
 protected function init()
 {
     $this->setTableName("message");
     $this->setPrimaryKey("msgid");
     $this->setModelName("game/message");
     return parent::init();
 }
예제 #8
0
 /**
  * Initializes the model.
  *
  * @return Bengine_Game_Model_Alliance
  */
 protected function init()
 {
     $this->setTableName("alliance");
     $this->setModelName("game/alliance");
     return parent::init();
 }
예제 #9
0
 /**
  * Initializes the model.
  *
  * @return Bengine_Game_Model_Profile
  */
 protected function init()
 {
     $this->setTableName("profile");
     $this->setModelName("game/profile");
     return parent::init();
 }
예제 #10
0
 /**
  * Initializes the model.
  *
  * @return Bengine_Game_Model_Event_Type
  */
 protected function init()
 {
     $this->setTableName("event_type");
     $this->setModelName("game/event_type");
     return parent::init();
 }