Add new "Setup" routine for database bootstrapping (closes #6, closes), fixed redirect (closes #79), removed registration mail (closes #80), some minor bugfixes

This commit is contained in:
Exodus4D
2015-12-26 23:28:50 +01:00
parent 04087561da
commit e2cf68fb0f
151 changed files with 5100 additions and 696 deletions

View File

@@ -16,9 +16,8 @@ class AppController extends Controller {
* @param $f3
*/
public function showLandingpage($f3) {
// main page content
$f3->set('pageContent','templates/view/landingpage.html');
$f3->set('pageContent', $f3->get('PATHFINDER.VIEW.LANDINGPAGE'));
// body element class
$this->f3->set('bodyClass', 'pf-body pf-landing');
@@ -29,7 +28,7 @@ class AppController extends Controller {
// JS main file
$f3->set('jsView', 'landingpage');
$this->setTemplate('templates/view/index.html');
$this->setTemplate( $f3->get('PATHFINDER.VIEW.INDEX') );
}
}