コード例 #1
0
ファイル: index.php プロジェクト: tipsyphp/tipsy-example-mvc
 public function init()
 {
     // normaly this would go in your apps init or index file
     $this->tipsy()->service('User', '\\App\\User');
     parent::init();
     $this->inject(function ($View, $Request, $Scope, $User) {
         $Scope->about = $User->data($Request->loc(1));
         $View->display('about');
     });
 }
コード例 #2
0
ファイル: Rest.php プロジェクト: arzynik/hackathon-starter
 public function init($params = null)
 {
     header('Content-Type: application/json');
     parent::init();
 }