Zend JSON Server
I implemented Zend JSON RPC Server today. The documentation on the Zend website left a lot of room for guesswork and none of the online resources I could find provided the complete picture. Here a step...
View ArticleZF2 Dependency Injection
Now that Zend Framework 2 (ZF2) has been released for more than 6 months and most of the early issues have been fixed I decided to switch from ZF1 to ZF2 for my latest project. ZF2’s MVC layer has been...
View ArticleZF2 Service Manager Aware Objects
In one of my previous posts I explained how to set up Dependency Injection in Zend Framework 2. Even though this approach is highly flexible it doesn’t always fit your project needs. Sometimes it is...
View ArticleZF2 Flash Messages
A consistent message and notification implementation is one of the key building stones of modern web apps. ZF2 makes it very easy to implement this with the FlashMessenger controller plugin. To...
View ArticleInjecting ZF2 Service Manager into Doctrine Entities
Making ZF2 services available within Doctrine entities is not as trivial as with objects that are created via the ZF2 factory methods. The problem is that Doctrine Entities are not generated via...
View Article