Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
index.php
Go to the documentation of this file.
00001 <?php
00024 define('ABS_ROOT', realpath(dirname(__FILE__)));
00025 
00029 define( 'DS', DIRECTORY_SEPARATOR );
00030 
00031 // system paths 
00032 include(ABS_ROOT.DS.'paths.php');
00033 
00034 // system configuration  
00035 include(ABS_ROOT.DS.'configuration.php');
00036 
00037 // core class  
00038 include(ABS_CORE.DS.'core.class.php');
00039 
00043 define('BASE_PATH', ROOT);
00044 
00048 $core = new core();
00049 $core->renderApp();
00050 
00051 ?>