<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Hooks in Action Helpers</title>
	<atom:link href="http://akrabat.com/zend-framework/hooks-in-action-helpers/feed/" rel="self" type="application/rss+xml" />
	<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/</link>
	<description>Developing PHP software in the Real World, by Rob Allen</description>
	<lastBuildDate>Mon, 15 Mar 2010 11:38:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Fadi Chalfoun</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-31653</link>
		<dc:creator>Fadi Chalfoun</dc:creator>
		<pubDate>Sun, 07 Mar 2010 03:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-31653</guid>
		<description>Thanks for the informative post! I was stuck for hours trying to get this working. Now I have a custom context switcher that gets auto-run from an action helper. This makes for a very clean solution.

Rob&#039;s idea helped me get this to work in 1.8+</description>
		<content:encoded><![CDATA[<p>Thanks for the informative post! I was stuck for hours trying to get this working. Now I have a custom context switcher that gets auto-run from an action helper. This makes for a very clean solution.</p>
<p>Rob's idea helped me get this to work in 1.8+</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-27553</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Tue, 16 Jun 2009 20:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-27553</guid>
		<description>Well, it needs to go somewhere in your bootstrapping process, so creating an &lt;tt&gt;__initActionHelpers()&lt;/tt&gt; isn&#039;t a bad idea.

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>Well, it needs to go somewhere in your bootstrapping process, so creating an <tt>__initActionHelpers()</tt> isn't a bad idea.</p>
<p>Regards,</p>
<p>Rob...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Devon</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-27551</link>
		<dc:creator>Joe Devon</dc:creator>
		<pubDate>Tue, 16 Jun 2009 19:35:42 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-27551</guid>
		<description>I was wondering about if the bootstrap section needed to change? Does that just go into Bootstrap.php?
&quot; // Action Helpers
    Zend_Controller_Action_HelperBroker::addPath(
        APPLICATION_PATH .&#039;/controllers/helpers&#039;);
        
    $hooks = Zend_Controller_Action_HelperBroker::getStaticHelper(&#039;Quote&#039;);
    Zend_Controller_Action_HelperBroker::addHelper($hooks);&quot;</description>
		<content:encoded><![CDATA[<p>I was wondering about if the bootstrap section needed to change? Does that just go into Bootstrap.php?<br />
" // Action Helpers<br />
    Zend_Controller_Action_HelperBroker::addPath(<br />
        APPLICATION_PATH .'/controllers/helpers');</p>
<p>    $hooks = Zend_Controller_Action_HelperBroker::getStaticHelper('Quote');<br />
    Zend_Controller_Action_HelperBroker::addHelper($hooks);"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-27536</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Tue, 16 Jun 2009 09:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-27536</guid>
		<description>Joe,

It shouldn&#039;t need any changes except to double check that the method signatures haven&#039;t changed.

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>Joe,</p>
<p>It shouldn't need any changes except to double check that the method signatures haven't changed.</p>
<p>Regards,</p>
<p>Rob...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Devon</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-27531</link>
		<dc:creator>Joe Devon</dc:creator>
		<pubDate>Tue, 16 Jun 2009 05:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-27531</guid>
		<description>Hi Rob,

So how would this code need to be modified to work in ZF 1.8+ ?</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>So how would this code need to be modified to work in ZF 1.8+ ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Outsourcing India</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-23526</link>
		<dc:creator>Outsourcing India</dc:creator>
		<pubDate>Fri, 21 Nov 2008 10:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-23526</guid>
		<description>Rob,

//return $quotes[rand(0, count($quotes)-1)];//

Greate Rob, Thanks Lot</description>
		<content:encoded><![CDATA[<p>Rob,</p>
<p>//return $quotes[rand(0, count($quotes)-1)];//</p>
<p>Greate Rob, Thanks Lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg Lobach</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-23472</link>
		<dc:creator>Oleg Lobach</dc:creator>
		<pubDate>Mon, 17 Nov 2008 12:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-23472</guid>
		<description>Hi Rob!

Very usefull post. Thanks.

I translate it to Russian if you don&#039;t mind.</description>
		<content:encoded><![CDATA[<p>Hi Rob!</p>
<p>Very usefull post. Thanks.</p>
<p>I translate it to Russian if you don't mind.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaldia</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-23448</link>
		<dc:creator>kaldia</dc:creator>
		<pubDate>Sat, 15 Nov 2008 07:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-23448</guid>
		<description>really very informative tutorial Rob...</description>
		<content:encoded><![CDATA[<p>really very informative tutorial Rob...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eddie</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-23355</link>
		<dc:creator>eddie</dc:creator>
		<pubDate>Wed, 05 Nov 2008 16:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-23355</guid>
		<description>hi, it&#039;s eddie again.
I just downloaded the updated ZF_Action_Helper_example.zip, but the &quot;getStaticHelper(&#039;Hooks&#039;)&quot; still in the bootstrap.php :)</description>
		<content:encoded><![CDATA[<p>hi, it's eddie again.<br />
I just downloaded the updated ZF_Action_Helper_example.zip, but the "getStaticHelper('Hooks')" still in the bootstrap.php :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/zend-framework/hooks-in-action-helpers/#comment-23354</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Wed, 05 Nov 2008 15:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/?p=288#comment-23354</guid>
		<description>Lorna,

Glad it was helpful :)

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>Lorna,</p>
<p>Glad it was helpful :)</p>
<p>Regards,</p>
<p>Rob...</p>
]]></content:encoded>
	</item>
</channel>
</rss>
