Source for file package.php
Documentation is available at package.php
* <b>Package Description</b>: The idea of having an inheritance based class structure in the area of the system's controllers is aimed at maximising versatility and code sharing in the system.
* The Controller class is the highest level parent class of all controllers in the system. This class is extended by all other
* classes in the ParentClasses sub package, such as mainScreen and tabScreen, which server to set the
* view template for the kind of screen to be displayed and prepare data to be passed to this view template. Every
* Controller in the controllers system folder extends one of these parent controller classes, and thus also indirectly
* inherits all functionality of the top level Controller class.
* @author Jan van der Breggen
|