Files
pathfinder/app/main/controller/mapcontroller.php
Exodus4D f943f31d9a - removed IGB support #206
- removed location tracking by IGB
2016-07-06 19:04:40 +02:00

31 lines
511 B
PHP

<?php
/**
* Created by PhpStorm.
* User: exodus4d
* Date: 08.02.15
* Time: 21:18
*/
namespace Controller;
class MapController extends AccessController {
/**
* @param \Base $f3
*/
public function init($f3) {
// page title
$f3->set('pageTitle', 'Maps');
// main page content
$f3->set('pageContent', false);
// body element class
$f3->set('bodyClass', 'pf-body');
// JS main file
$f3->set('jsView', 'mappage');
}
}