Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
controller.class.php
Go to the documentation of this file.
00001 <?php
00014 require_once('model.class.php');
00015 require_once('view.class.php');
00016 
00030 class controller {
00031 
00035         protected $_registry;
00036         
00040         protected $_router;
00041 
00045         protected $_view;
00046 
00050         protected $_cpath;
00051 
00055         protected $_mdl_name;
00056 
00064         function __construct() {
00065         
00066                 $this->_registry = registry::instance();
00067                 $this->_router = $this->_registry->router;
00068                 $this->_view = new view();
00069                 
00070         }
00071 
00072 }
00073 
00074 ?>