コード例 #1
0
ファイル: class.Treasury.php プロジェクト: zellfaze/ORK3
 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');
 }
コード例 #2
0
ファイル: class.Game.php プロジェクト: jfefes/ORK3
 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');
 }
コード例 #3
0
ファイル: Authorization.php プロジェクト: jfefes/ORK3
 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');
 }
コード例 #4
0
ファイル: class.Heraldry.php プロジェクト: jfefes/ORK3
 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');
 }
コード例 #5
0
ファイル: class.Tournament.php プロジェクト: jfefes/ORK3
 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');
 }
コード例 #6
0
ファイル: DataSet.php プロジェクト: jfefes/ORK3
 public function __construct()
 {
     parent::__construct();
 }
コード例 #7
0
ファイル: class.Attendance.php プロジェクト: zellfaze/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->attendance = new yapo($this->db, DB_PREFIX . 'attendance');
     $this->class = new yapo($this->db, DB_PREFIX . 'class');
 }
コード例 #8
0
ファイル: class.Award.php プロジェクト: jfefes/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->award = new yapo($this->db, DB_PREFIX . 'award');
 }
コード例 #9
0
ファイル: class.SearchService.php プロジェクト: zellfaze/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->mundane = new yapo($this->db, DB_PREFIX . 'mundane');
 }
コード例 #10
0
ファイル: Principality.php プロジェクト: jfefes/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->park = new yapo($this->db, DB_PREFIX . 'park');
     $this->kingdom = new yapo($this->db, DB_PREFIX . 'kingdom');
 }
コード例 #11
0
ファイル: Unit.php プロジェクト: jfefes/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->unit = new yapo($this->db, DB_PREFIX . 'unit');
     $this->members = new yapo($this->db, DB_PREFIX . 'unit_mundane');
 }
コード例 #12
0
ファイル: class.Event.php プロジェクト: zellfaze/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->event = new yapo($this->db, DB_PREFIX . 'event');
     $this->detail = new yapo($this->db, DB_PREFIX . 'event_calendardetail');
 }
コード例 #13
0
ファイル: class.Park.php プロジェクト: jfefes/ORK3
 public function __construct()
 {
     parent::__construct();
     $this->park = new yapo($this->db, DB_PREFIX . 'park');
     $this->parkday = new yapo($this->db, DB_PREFIX . 'parkday');
 }