News Feed
Jobs Feed
Sections



Recent Jobs

News Archive
feed this:

Cal Evans' Blog:
Quickie Zend Framework Bootstrap Note
August 13, 2009 @ 13:25:14

Cal Evans has posted a Zend Framework quickie for working with the bootstrap in your application.

I've been teaching a Zend Framework class this week and my students have been throwing all kinds of questions at me. Most recently, while we were discussing creating a Bootstrap class for an application a question came up about the _init* functions.

The documentation talks about the bootstrap loading those init functions, but it leaves out the order they're executed in. Cal did a bit of research and found that they're executed in the order they're created with one exception - if you specify one to run first in the bootstrap constructor.

0 comments voice your opinion now!
zendframework bootstrap init function



Daniel Cousineau's Blog:
Zend Framework Module Init Script (Controller Plugin)
January 07, 2009 @ 09:35:41

Daniel Cousineau has a new blog post showing off a plugin he's made for Zend Framework applications that allows you to run a script before each controller.

Recently at work I had the need to run a script before every single controller (namely to add a plugin folder to Dwoo) for a specific module that I did not desire for any other modules. I could have subclassed all my controllers to extend a custom action controller that handled this in the init() method, however I'm lazy so I wrote a quick Zend Controller Plugin to handle this for me.

The plugin actually runs when the routeShutdown method is used (after the routing is done, but before the controller is called) and pulls in the contents of the specified file and executes it like the code was already embedded. Complete code is included.

0 comments voice your opinion now!
controller plugin zendframework module init script tutorial


Ben Ramsey's Blog:
Zend Framework View Notes
April 05, 2007 @ 06:59:44

In a new entry today, Ben Ramsey, how's been working with the Zend Framework for a bit now, shares an interesting bit of information about how to use Views a little bit differently.

Most notably, I've started using the "new way" of using views, which is still undocumented in the manual. Rather than create a new Zend_View object, tell it where my views are, and echo a call to its render() method, I'm letting the controller's render() method do it all for me.

He illustrates with a simple example using the default framework directory setup, save for the special "scripts" directory he creates. This makes it possible for the controller to handle the rendering rather than the typical view functionality. Then, using the views is a simple init() call away, automagically.

1 comment voice your opinion now!
zendframework view controller render init zendframework view controller render init



Community Events





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


development symfony2 framework test database phpunit community release opinion custom language unittest introduction interview conference podcast series api component application

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