- added new "select connection" feature to map - ctrl + click for multiselect, closed #174 - added new "wormhole type" table to "Jump info" dialog, closed #174 - added new re-order drag&drop feature for pannels, #470 closed #234 - fixed PHP-Doc comments - added @throw statements - fixed some Javascript memory leaks with infinite counters - updated "Peity jQuery plugin" `3.2.0` -> `3.2.1`
34 lines
642 B
PHP
34 lines
642 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: exodus4d
|
|
* Date: 08.02.15
|
|
* Time: 21:18
|
|
*/
|
|
|
|
namespace Controller;
|
|
|
|
use lib\Config;
|
|
|
|
|
|
class MapController extends AccessController {
|
|
|
|
/**
|
|
* @param \Base $f3
|
|
* @throws \Exception
|
|
* @throws \Exception\PathfinderException
|
|
*/
|
|
public function init(\Base $f3) {
|
|
$character = $this->getCharacter();
|
|
|
|
// page title
|
|
$f3->set('tplPageTitle', $character->name . ' | ' . Config::getPathfinderData('name'));
|
|
|
|
// main page content
|
|
$f3->set('tplPageContent', false);
|
|
|
|
// JS main file
|
|
$f3->set('tplJsView', 'mappage');
|
|
}
|
|
|
|
}
|