| 1: | <?php
|
| 2: | namespace Sphp{
|
| 3: | use Sphp\core\Request;
|
| 4: | use Sphp\core\Response;
|
| 5: | use Sphp\core\Router;
|
| 6: | use Sphp\core\SphpAPI;
|
| 7: | use Sphp\core\GateLoader;
|
| 8: | use Sphp\core\DebugProfiler;
|
| 9: | use Sphp\core\DebugProfiler2;
|
| 10: | use Sphp\kit\Session;
|
| 11: | use Sphp\kit\JQuery;
|
| 12: | use Sphp\kit\JSServer;
|
| 13: | use Sphp\kit\Page;
|
| 14: | use Sphp\core\SphpVersion;
|
| 15: | class Engine{
|
| 16: | public $engine_start_time = 0.0;
|
| 17: | public $engine_end_time = 0.0;
|
| 18: | public $drespath = "";
|
| 19: | public $dphppath = "";
|
| 20: | public function exitMe() {}
|
| 21: | public function setDebugger(){}
|
| 22: | public function start()
|
| 23: | {}
|
| 24: | public function executeinit()
|
| 25: | {}
|
| 26: | public function execute($globalGate = false)
|
| 27: | {}
|
| 28: | public function sendDataCaseOfError($ermsg="",$erfile="",$erline=0,$nofatel=true) {}
|
| 29: | public function stopOutput(){}
|
| 30: | public function cleanOutput(){}
|
| 31: | public function registerRouter($rout)
|
| 32: | {}
|
| 33: | public function getRequest(){}
|
| 34: | public function getResponse(){}
|
| 35: | public function getSettings(){}
|
| 36: | public function getRouter(){}
|
| 37: | public function getSphpAPI() {}
|
| 38: | public function getSession() {}
|
| 39: | |
| 40: | |
| 41: | |
| 42: |
|
| 43: | public function getDefaultPageObject() {}
|
| 44: | |
| 45: | |
| 46: | |
| 47: | |
| 48: |
|
| 49: | public function setDefaultPageObject($pageobject){}
|
| 50: | public function getDebug() {}
|
| 51: | public function getDBEngine() {}
|
| 52: | public function setDBEngine($dbengine) {}
|
| 53: | public function getJSServer() {}
|
| 54: | public function getJQuery() {}
|
| 55: | public function getDrespath() {}
|
| 56: | public function getDphppath() {}
|
| 57: | public function setDrespath($drespath) {}
|
| 58: | public function setDphppath($dphppath) {}
|
| 59: | }
|
| 60: | }
|
| 61: | |