コード例 #1
0
ファイル: Owners.php プロジェクト: pko22/vgs
 /**
  * Loads the controller and an instance of the owners model class
  */
 public function __construct()
 {
     parent::__construct();
     $this->data = new \Videogames\Model\Owners();
 }
コード例 #2
0
ファイル: Games.php プロジェクト: pko22/vgs
 /**
  * Loads the controller and an instance of the games model class
  */
 public function __construct()
 {
     parent::__construct();
     $this->data = new \Videogames\Model\Games();
     $this->actHeader = $this->stdHeader;
 }