Beispiel #1
0
 public function __construct()
 {
     parent::__construct();
     $this->split = new yapo($this->db, DB_PREFIX . 'split');
     $this->account = new yapo($this->db, DB_PREFIX . 'account');
     $this->transaction = new yapo($this->db, DB_PREFIX . 'transaction');
 }
Beispiel #2
0
 public function __construct()
 {
     parent::__construct();
     $this->game = new yapo($this->db, DB_PREFIX . 'game');
     $this->team = new yapo($this->db, DB_PREFIX . 'game_team');
     $this->objective = new yapo($this->db, DB_PREFIX . 'game_objective');
 }
Beispiel #3
0
 public function __construct()
 {
     parent::__construct();
     $this->mundane = new yapo($this->db, DB_PREFIX . 'mundane');
     $this->auth = new yapo($this->db, DB_PREFIX . 'authorization');
     $this->app = new yapo($this->db, DB_PREFIX . 'application');
     $this->app_auth = new yapo($this->db, DB_PREFIX . 'application_auth');
 }
Beispiel #4
0
 public function __construct()
 {
     parent::__construct();
     $this->mundane = new yapo($this->db, DB_PREFIX . 'mundane');
     $this->kingdom = new yapo($this->db, DB_PREFIX . 'kingdom');
     $this->park = new yapo($this->db, DB_PREFIX . 'park');
     $this->unit = new yapo($this->db, DB_PREFIX . 'unit');
     $this->event = new yapo($this->db, DB_PREFIX . 'event');
 }
Beispiel #5
0
 public function __construct()
 {
     parent::__construct();
     $this->Bracket = new yapo($this->db, DB_PREFIX . 'bracket');
     $this->Glicko2 = new yapo($this->db, DB_PREFIX . 'glicko2');
     $this->Match = new yapo($this->db, DB_PREFIX . 'match');
     $this->Participant = new yapo($this->db, DB_PREFIX . 'participant');
     $this->Player = new yapo($this->db, DB_PREFIX . 'participant_mundane');
     $this->Tournament = new yapo($this->db, DB_PREFIX . 'tournament');
 }
Beispiel #6
0
 public function __construct()
 {
     parent::__construct();
 }
Beispiel #7
0
 public function __construct()
 {
     parent::__construct();
     $this->attendance = new yapo($this->db, DB_PREFIX . 'attendance');
     $this->class = new yapo($this->db, DB_PREFIX . 'class');
 }
Beispiel #8
0
 public function __construct()
 {
     parent::__construct();
     $this->award = new yapo($this->db, DB_PREFIX . 'award');
 }
Beispiel #9
0
 public function __construct()
 {
     parent::__construct();
     $this->mundane = new yapo($this->db, DB_PREFIX . 'mundane');
 }
Beispiel #10
0
 public function __construct()
 {
     parent::__construct();
     $this->park = new yapo($this->db, DB_PREFIX . 'park');
     $this->kingdom = new yapo($this->db, DB_PREFIX . 'kingdom');
 }
Beispiel #11
0
 public function __construct()
 {
     parent::__construct();
     $this->unit = new yapo($this->db, DB_PREFIX . 'unit');
     $this->members = new yapo($this->db, DB_PREFIX . 'unit_mundane');
 }
Beispiel #12
0
 public function __construct()
 {
     parent::__construct();
     $this->event = new yapo($this->db, DB_PREFIX . 'event');
     $this->detail = new yapo($this->db, DB_PREFIX . 'event_calendardetail');
 }
Beispiel #13
0
 public function __construct()
 {
     parent::__construct();
     $this->park = new yapo($this->db, DB_PREFIX . 'park');
     $this->parkday = new yapo($this->db, DB_PREFIX . 'parkday');
 }