First commit, version 0.1 beta base nibiru framework

This commit is contained in:
Stephan Kasdorf
2017-06-16 12:21:19 +02:00
parent 7d475ceb6b
commit 4bfe207b78
556 changed files with 113905 additions and 26 deletions

15
core/dispatch.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
/**
* User - stephan
* Date - 24.01.17
* Time - 20:22
* @author - Stephan Kasdorf
* @category - [PLEASE SPECIFIY]
* @license - BSD License
*/
Nibiru\Router::getInstance();
Nibiru\Router::getInstance()->route();
require_once __DIR__ . '/../application/controller/' . Nibiru\Router::getInstance()->tplName() . 'Controller.php';
eval("new Nibiru\\".Nibiru\Router::getInstance()->tplName()."Controller();");
Nibiru\Debug::getInstance();
Nibiru\Display::getInstance()->display();