Shahar has posted a new article about how to generate ZF2 autoloader classmaps with phing. As the ZF2 classmap autoloader is quicker than the standard autoloader, this can be a benefit in production, so being able to automate the creation is beneficial.
Fortunately, using ZF2′s autoloader stack and Phing, we can enjoy both worlds: while in development, standard PSR-0 autoloading is used and the developer can work smoothly without worrying about updating class maps. As we push code towards production, our build system takes care of updating class map files, ensuring super-fast autoloading in production using the ClassMapAutoloader. How is this done? Read on to learn.
He then goes to show how to set up the autoloader in your project and writes a new ping task called ‘classmap’ that you can then use in your build.xml files.
Posted by Rob on 21st February 2012 under Around the web | 1 Comment »
Florian Eibeck has put up a Zend Framework 1 application.ini file on GitHub that lists every configuration option available for Zend_Application and associated bootstrap resources.
Very useful. Thanks Florian!
Posted by Rob on 1st February 2012 under Around the web | 3 Comments »
Evan has posted the first of a series of articles on his blog about using git and github successfully:
Let’s face it, nobody likes a dirty fork. In this series, I’ll show you some of the tricks I’ve learned over the years to successfully maintain a clean fork on GitHub for projects I actively contribute to.
The first article covers creating your clone, adding remotes, keeping things up to date and working in topic branches. It’s definitely worth a read and I’m looking forward to the subsequent articles in the series.
Posted by Rob on 5th December 2011 under Around the web | Comments Off
In #zf2 news, effective immediately, we no longer require a CLA for #zf2 contributions. Let the pull requests flow! – @weierophinney
Matthew Weir O’Phinney has announced that contributors to Zend Framework 2 do not need to have signed Zend’s Contributor License Agreement from now on. Zend Framework 2 is developed using git and there’s a mirror on github, this means that contribution to ZF2 is now just a pull request away!
Posted by Rob on 10th November 2011 under News | Comments Off
Remi Woler has posted a useful article on getting support via IRC. Zend Framework has the #zftalk irc channel and I strongly recommend going through his points.
I especially liked point 4:
Ask a complete question, directed to anyone willing to answer (that is: don’t direct it to any person or group in particular). If someone knows and has time, they will respond. Why rule out people in advance, without even telling what your question is?
Also, I can only echo the comment about being patient in point 7!
Read the whole thing though and you’ll find that you get your answers from IRC with much less pain.
Posted by Rob on 19th September 2011 under Around the web | Comments Off
Bradley Holt has posted an interesting article on why rapid release cycles are a good idea for Zend Framework major versions.
For a framework (and maybe for other software), I think the following rules are necessary in order for a rapid release cycle to work:
- Minimize backwards compatibility changes between major releases. Targeted and strategic refactoring, rather than major overhauls, are preferable if you are releasing often. Small backwards compatibility changes makes migrating from one major version to another much easier.
- Mark some major releases as “Long Term Support” (LTS) releases. Provide bug fix updates and security patches to these releases for three to five years. This provides a “safe” option to those who value stability and don’t want to upgrade very often. In the context of Zend Framework, it is obviously Zend’s decision if they want to take on this burden. If not, then I don’t think a rapid release cycle is viable.
What are the concerns with a rapid release cycle? I’ll paraphrase, and then address, the major concerns that I’ve heard.
Well worth a read.
Posted by Rob on 9th August 2011 under Around the web | Comments Off
A few months ago, Robert Basic wrote about this handy organisational tip:
Thanks to a discussion on the Zend Framework mailing list I learned about a new feature, a feature that allows for grouping action controllers in subdirectories!
He then goes on to explain how he can now group controllers related to admin within a subdirectory of controllers which makes organisation easier:
Best part is that this feature requires no additional configuration. Create a subdirectory under the controllers directory and place the controller file under that subdirectory. In that pretty screenshot image you can see a FooController.php in the directory called Sub; the class name in that example is Sub_FooController and is accessible via the sub_foo/controller URI. The corresponding view files should be placed in views/scripts/sub/foo/ directory.
Posted by Rob on 9th July 2011 under Around the web | 1 Comment »
Tim de Pater of Enrise has written a new article on how to integrate MemCacheQ with Zend Framework application using Zend_Queue_Adapter_Memcacheq component:
For www.nd.nl (a Dutch newspaper) we wanted a simple and free queue mechanism that integrates with Zend Framework for handling a number of jobs. We found MemcacheQ.
The article then goes through how to run the memcacheq daemon and then shows the PHP code to add a job to the queue and then how to retrieve them elsewhere and process them.
Posted by Rob on 10th January 2011 under Around the web | Comments Off
David Papadogiannakis has posted a new article on the new features for forms with HTML5 and how it applies to Zend Framework’s Zend_Form component.
HTML4 had a few different input elements that could be added to your form : text, password, hidden, checkboxes etc. HTML5 brings even more types that can be added to your <input> tag.
He then goes on to provide a override to Zend_Form_Element_Text showing how to use the new attributes with Zend_Form.
Posted by Rob on 15th December 2010 under Around the web | Comments Off
Ralph has just posted an excellent article on how many to many relationships work with Zend_Db_Table:
Basically, I’ve created a single class that effectively take the place of Zend_Db_Table_Row::findManyToManyRowset() for the purposes of creating an iterable rowset that allows access to both the target many-to-many rowset as well as the junction rowset. This solution is called a Composite Rowset. In this solution, both rowsets (iterators) are kept in sync with one another. This proves to be an ideal solution in a couple of ways. First, it will produce consistent row objects that are explicitly tied to a row in a database. Second, the cost of creating this composite rowset is at the expense of 2 queries: the original many-to-many query and a similar query to retrieve the junction rowset. This is ideal since previously, to get the junction data, findDependentRowset() would have had to been called on each row within the rowset produced by the Zend_Db_Table_Row::findManyToManyRowset().
He then goes on to show the API for the Composite Rowset class and provides an example of usage.
If you’re using Zend_Db_Table at all, have a read.
My favourite text in the article is however this:
Over the past several years of working on Zend Framework, I’ve noticed the developer population at large is really good at finding undocumented and previously unthought-of use-cases of Zend Framework components. These use-cases, while sometimes “inventive” to say the least- are also sometimes blatant misuses of a component.
That’s one of the pleasures of providing code to the world
Posted by Rob on 16th November 2010 under Around the web | Comments Off