コード例 #1
0
ファイル: route.php プロジェクト: andrewmunro/pathfinder
 function __construct()
 {
     parent::__construct();
     // set cache time for static jump data
     $this->jumpDataCacheTime = 60 * 60 * 24;
     // set static system jump data
     $this->setSystemJumpData();
 }
コード例 #2
0
ファイル: access.php プロジェクト: Quarky9/pathfinder
 /**
  * event handler
  * @param $f3
  */
 function beforeroute($f3)
 {
     parent::beforeroute($f3);
     // set header for all routes
     header('Content-type: application/json');
 }
コード例 #3
0
ファイル: mapcontroller.php プロジェクト: mglinski/pathfinder
 function __construct()
 {
     parent::__construct();
 }