News Feed
Jobs Feed
Sections




News Archive
Matthew Turland's Blog:
The Configuration Pattern in Zend Framework
September 28, 2009 @ 09:07:31

Matthew Turland has pointed out a pattern he's seen happening over and over again in the Zend Framework, what he calls the "Configuration Pattern".

Here's how it works. Have a look at the constructor for Zend_Form. It accepts an $options parameter, which can be an associative array or Zend_Config instance. If it's an array, setOptions() is called. If it's a Zend_Config instance, setConfig() is called, which then converts the Zend_Config instance to an associative array and passes that to setOptions(). So, either way, you end up in the same method with the same type of data. setOptions() then iterates over the associative array it receives. It takes the index of each element and looks for a corresponding setter method.

This method helps to reduce the overall function calls (including a method_exists) and can help to produce cleaner code in the process. A comment on the post also points out related comments from Matthew Weier O'Phinney about these options.

0 comments voice your opinion now!
zendframework configure pattern getoptions


blog comments powered by Disqus

Similar Posts

Stefan Mischook's Blog: PEAR vs. Zend Framework

Lukas Smith's Blog: One thumb up and two down (Zend_Http_Client)

PHPRiot.com: Zend Framework 101: Zend_Oauth

Eran Galperin's Blog: Handling mail and mime in PHP using the Zend Framework

Zend Developer Zone: Who Uses the Zend Framework?


Community Events









Don't see your event here?
Let us know!


language code opinion conference interview testing development release object event framework api podcast functional tool community example composer introduction zendframework2

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework