Ejemplo n.º 1
0
Archivo: Owners.php Proyecto: pko22/vgs
 /**
  * Loads the controller and an instance of the owners model class
  */
 public function __construct()
 {
     parent::__construct();
     $this->data = new \Videogames\Model\Owners();
 }
Ejemplo n.º 2
0
Archivo: Games.php Proyecto: 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;
 }