To name some patterns:
- Front Controller pattern in
Zend_Controller_Front
(index.php + .htaccess)
- Registry pattern in
Zend_Registry
- Dependency Injection in
Zend_Application_Bootstrap_Bootstrap
's container
- Singleton (in
grep getInstance
)
- Strategy patters in
Zend_Form
's validators
- Decorator patterns in
Zend_Form
's decorators
- Adapter pattern in
| grep adapter
File and method names are obvious, so grep
is your friend.
Any volunteer to edit and provide the links and sample code?