| 
<?php
 // actual pasta é esta!
 chdir(dirname(__FILE__));
 
 
 $core = "core";
 
 $controller = "controller";
 
 $config = "config";
 
 $views = "views";
 
 if(!is_dir($core)){
 die("Core folder missing!");
 }
 
 // Core path
 define("CORE", $core."/");
 
 // Controller path
 define("CONTROLLER", $controller."/");
 
 // Config path
 define("CONFIG", $config."/");
 
 // View path
 define("VIEWS", $views."/" );
 
 
 $request_url = "REQUEST_URI";
 
 // keep rolling the ball...
 require CORE."JF.Work.php";
 
 
 ?>
 |