Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
pointer.php
Go to the documentation of this file.
00001 <?php
00017 define('ABS_ROOT', realpath(dirname(__FILE__)));
00018 
00022 define( 'DS', DIRECTORY_SEPARATOR );
00023 
00027 include(ABS_ROOT.DS.'paths.php');
00028 
00032 include(ABS_ROOT.DS.'configuration.php');
00033 
00037 include(ABS_CORE.DS.'core.class.php');
00038 
00042 define('BASE_PATH', ROOT);
00043 
00044 $core = new core();
00045 $core->methodPointer();
00046 
00047 ?>