Comments on: Bootstrapping Zend Framework Applications http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/ Mon, 29 Sep 2014 19:50:55 +0000 hourly 1 https://wordpress.org/?v=4.6.1 By: Zend Framework News » Blog Archive » Bootstrapping für Zend Framework Applikationen http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/comment-page-1/#comment-236 Sat, 13 Mar 2010 14:14:52 +0000 http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/#comment-236 […] http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/ […]

]]>
By: MVC in Zend Framework – Bradley Holt http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/comment-page-1/#comment-204 Mon, 08 Feb 2010 17:51:40 +0000 http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/#comment-204 […] my previous post in this series we looked at how Zend Framework applications can be bootstrapped. We saw the […]

]]>
By: marsbomber http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/comment-page-1/#comment-190 Sun, 31 Jan 2010 09:59:51 +0000 http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/#comment-190 hi rob, thanks very much. btw, it's your zend framework in action book that got me going with zf. just want to say thank you for that too.

]]>
By: akrabat http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/comment-page-1/#comment-189 Sun, 31 Jan 2010 09:52:59 +0000 http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/#comment-189 marsbomber,

Anything you return from an _initXyz() method is available to the application via getResource. Therefore, you return data that you want the rest of the application to have access to.

In this case, _initViewHeadTitle() doesnt need to share anything, so returns nothing. _initNavigation() shares a Navigation object that the application will want to use elsewhere.

Regards,

Rob…
(http://akrabat.com)

]]>
By: marsbomber http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/comment-page-1/#comment-188 Sun, 31 Jan 2010 06:54:42 +0000 http://bradley-holt.com/2010/01/bootstrapping-zend-framework-applications/#comment-188 Bradley, may I ask the difference between the return types of these _initBlah functions? ie, _initViewHeadTitle() returns nothing, void in another term. compare to _initNavigation(), which returns Zend_Application_Resource_Navigation. thanks

]]>