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
00016 define('ABS_ROOT', realpath(dirname(dirname(__FILE__))));
00017 
00021 define( 'DS', DIRECTORY_SEPARATOR );
00022 
00026 include(ABS_ROOT.DS.'paths.php');
00027 
00031 include(ABS_ROOT.DS.'configuration.php');
00032 
00036 include(ABS_CORE.DS.'core.class.php');
00037 
00041 define('BASE_PATH', ROOT_ADMIN);
00042 
00043 $core = new core();
00044 $core->methodPointer();
00045 
00046 ?>