e_schrade wrote a neat way of doing things in the service layer; Let’s take a quick look at something that’s kind of neat in Zend Framework. I’ve been doing some work with Adobe on some articles and one of them was on working with mobile clients with Flash. Well, me being the masochist I did […]
Till posted this little snippet; It’s so useful I just had to share it find . \( –name “*.php” –o –name “*.phtml” \) –exec php –l {} \; Just go to your project directory and fire it off, it will help you find those pesky unmatched {}
Bill Karwin posts a useful little snippet that will list and search each class for function names that match except for the underscore prefix, private / protected functions. <?php /** * Find methods that differ only by the underscore prefix. * by Bill Karwin August 2010 * * I release this […]
What I do is I have my controllers fetch all their dependencies from the bootstrap and/or front controller. The most common example is to pull the db resource from the bootstrap: // in controller $db = $this->getInvokeArg(‘bootstrap’)->getResource(‘db’); But I also take it a step further. For example, if I’m using data mappers, I have the […]
Yesterday, the Zend Framework team tagged the first development milestone of Zend Framework 2.0 (2.0.0dev1). It is immediately downloadable from the Zend Framework servers: * Zip package: http://framework.zend.com/releases/ZendFramework-2.0.0dev1/ZendFramework-2.0.0dev1.zip * tar.gz package: http://framework.zend.com/releases/ZendFramework-2.0.0dev1/ZendFramework-2.0.0dev1.tar.gz NOTE! This release is not considered of production quality, and is released solely to provide a development snapshot for purposes of testing and […]
Jon Lebensold posts; In the last video, I discussed ZendX_JQuery integration. Now we’re going to take it a step further by developing our own jQuery autocomplete control, using a country list, PHP 5.3 and anonymous functions. Grab a copy of the project or browse the repository. via Zendcasts.
Jon Lebensold posts; I’ve received a lot of feedback about jQuery integration in the Zend Framework. This little video will show you how you can quickly integrate jQuery and jQuery UI into your Zend Framework project. Grab a copy of the project or browse the repository. via Zendcasts.
Rob Allen writes; After too many months of neglect, I have completely rewritten my Zend_Auth tutorial so that it is compatible with Zend Framework 1.10! As an experiment, I have written it directly in HTML, rather than PDF as before and cover the login form along with the login controller code required to authenticate a user […]
Jeroen Keppens writes; Recently I had to create a soap webservice. The WSDL generator put in too much, so I decided to make the WSDL myself. Luckily a colleague gave me a quick intro. via Jeroen Keppens : Introduction to WSDL.
Cappuccino based web application to manage OpenStack compute and storage. The OpenStack Open Source Cloud Mission: to produce the ubiquitous Open Source Cloud Computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable. via OpenStack Web Control Panel in Launchpad.
Hosting company RackSpace is open sourcing the software behind its cloud storage and computing platforms on Monday, the company is saying. The company is also preparing to launch OpenStack, an open source cloud platform, and will donate the open source code to that project. NASA is also incorporating technology from the NASA Nebula Cloud Platform […]
To achieve complete Doctrine 1 integration with Zend Framework some glue is required, Benjamin Eberlei has created a complete solution thats straight forward, easy to use and understand. This project tries to offer a complete Integration of Doctrine 1 with Zend Framework. The following components belong to this Integration: Zend_Application Resource Zend Framework Modular Project […]
Jon Lebensold post another screencast; This video outlines a little trick I’ve found immensely helpful in larger applications: managing your css selectively. Luckily, the Zend Framework is built with some great features for handling this case using Zend_View and Zend_Layout. Enjoy! Grab a copy of the project or browse the repository. via Zendcasts.
Jon Lebensold posts a quick video explaining how quickly and easy it is to write designer-friendly HTML emails using Zend_View and Zend_Mail. Grab a copy of the project or browse the repository. via Zendcasts. (Sorry for the late addition of this)
Simon R Jones writes a very helpful article about the stack index (the order you fire plugins) and how to customize it; Zend Framework Controller plugins are a powerful way to inject logic into your controller system at various points, such as before and after an action dispatch. Plugins are run in the order they […]