Zend Framework FrontController implements Singleton and plus it has some kind a plugin “paradigm” , – what is the idea behind its architecture , maybe it implements some well known paradigm ? and if so then if u could give some links directions where I can find information about reasons that brought up that particular paradigm ?
Zend Framework FrontController implements Singleton and plus it has some kind a plugin paradigm
Share
The basic idea of a FrontController is to provide for a single point of entry to your application.
Quoting PoEAA:
Further definitions:
Also see the chapter in the reference guide about the Front Controller:
About being a Singleton
For a General Definition of the Singleton and the Registry pattern see:
About being pluggable
A good detailed explanation how Zend Framework uses the Front Controller and what happens under the hood during an MVC rquest can be found in: