closed #90 (IGB map not working) jsPlumb v2.0.5 downgraded to v1.7.6

#84 renamed "landingpage" view to "login" view
#84 added some basic CREST API data mappers
#84 added "isNPC" flag t Corporation table (WIP)
#84  added CREST API settings to environment.ini
This commit is contained in:
Exodus4D
2016-02-06 16:18:24 +01:00
parent 18cb3a7987
commit 27c069848e
61 changed files with 38995 additions and 139 deletions

View File

@@ -12,15 +12,15 @@ namespace Controller;
class AppController extends Controller {
/**
* show the main landing page
* show main login (index) page
* @param $f3
*/
public function showLandingpage($f3) {
public function init($f3) {
// page title
$f3->set('pageTitle', 'Login');
// main page content
$f3->set('pageContent', $f3->get('PATHFINDER.VIEW.LANDINGPAGE'));
$f3->set('pageContent', $f3->get('PATHFINDER.VIEW.LOGIN'));
// body element class
$f3->set('bodyClass', 'pf-body pf-landing');
@@ -29,7 +29,7 @@ class AppController extends Controller {
$f3->set('trusted', 1);
// JS main file
$f3->set('jsView', 'landingpage');
$f3->set('jsView', 'login');
}
}
}