public function actionGpxfile($id){ $this->layout=""; $newline = "\r\n"; $WalkingRoute = WalkingRoute::findOne($id); if (!$WalkingRoute->AllowGpxDownload){ throw new CHttpException(404,'Not allowed to download GPX file.'); } // log download Yii::$app->PiwikTracker->TrackFileDownload ($this->DownloadGpxUrl($id)); ob_end_clean (); ob_start(); header("Content-type:application/gpx+xml" ); header('Content-Disposition: attachment; filename="'. $WalkingRoute->RouteName .'.gpx";'); header('Cache-Control:no-cache'); echo ('<?xml version="1.0" encoding="UTF-8"?>' . $newline); echo ('<gpx version="1.1" creator="Walking.ElleArt,nl" xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://www.topografix.com/GPX/1/1" elementFormDefault="qualified" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">' . $newline); echo ('<trk>' . $newline); echo ('<name>'. $WalkingRoute->RouteName .'</name>' . $newline); echo ('<desc>'. $WalkingRoute->RouteName .'</desc>' . $newline);
$WalkingRoute = WalkingRoute::findOne($id); if (!$WalkingRoute->AllowGpxDownload){ throw new CHttpException(404,'Not allowed to download GPX file.'); } // log download Yii::$app->PiwikTracker->TrackFileDownload ($this->DownloadGpxUrl($id)); ob_end_clean (); ob_start(); header("Content-type:application/gpx+xml" ); header('Content-Disposition: attachment; filename="'. $WalkingRoute->RouteName .'.gpx";'); header('Cache-Control:no-cache'); echo ('<?xml version="1.0" encoding="UTF-8"?>' . $newline); echo ('<gpx version="1.1" creator="Walking.ElleArt,nl" xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://www.topografix.com/GPX/1/1" elementFormDefault="qualified" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">' . $newline);
$args = $this->controller->bindActionParams($this, $params); Yii::trace('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
} $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
$parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); if ($oldController !== null) { Yii::$app->controller = $oldController; } return $result; }
$params = $this->catchAll; unset($params[0]); } try { Yii::trace("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } else { $response = $this->getResponse(); if ($result !== null) { $response->data = $result;
try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
require(__DIR__ . '/../mCloud/vendor/autoload.php'); require(__DIR__ . '/../mCloud/vendor/yiisoft/yii2/Yii.php'); $config = require(__DIR__ . '/../mCloud/config/web.php'); (new yii\web\Application($config))->run();
$_GET = [ 'r' => 'topography/walkingroute/gpxfile', 'id' => 'DuinEnKrui', ];