コード例 #1
0
ファイル: controller.php プロジェクト: veritech/RESTeasy
 function LocationController()
 {
     //Create model instances
     $this->models['Location'] = new LocationModel();
     //instantiate the parent, it automatically echos, so it must be placed last
     parent::FRRestServer();
 }
コード例 #2
0
ファイル: controller.php プロジェクト: veritech/RESTeasy
 function ArticleController()
 {
     $this->models['Article'] = new ArticleModel();
     parent::FRRestServer();
 }
コード例 #3
0
ファイル: controller.php プロジェクト: veritech/RESTeasy
 function UserController()
 {
     $this->models['User'] = new UserModel();
     $this->returnXML = true;
     parent::FRRestServer();
 }