<?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: View Helper Case Notes</title>
	<atom:link href="http://akrabat.com/php/view-helpers-case-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://akrabat.com/php/view-helpers-case-notes/</link>
	<description>Developing PHP software in the Real World, by Rob Allen</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:06:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/php/view-helpers-case-notes/#comment-19269</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Thu, 20 Dec 2007 15:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/09/17/view-helpers-case-notes/#comment-19269</guid>
		<description>Hi Johnny,

TBH, I haven&#039;t really used them as I haven&#039;t found a need for filters in any of our apps so far.

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>Hi Johnny,</p>
<p>TBH, I haven't really used them as I haven't found a need for filters in any of our apps so far.</p>
<p>Regards,</p>
<p>Rob...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnny Loke</title>
		<link>http://akrabat.com/php/view-helpers-case-notes/#comment-19266</link>
		<dc:creator>Johnny Loke</dc:creator>
		<pubDate>Thu, 20 Dec 2007 02:52:47 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/09/17/view-helpers-case-notes/#comment-19266</guid>
		<description>Hi Rob,

Do you have experience with Zend_View&#039;s filter? I seek high and low but couldn&#039;t get any useful info on this topic.

Thanks,
Loke</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>Do you have experience with Zend_View's filter? I seek high and low but couldn't get any useful info on this topic.</p>
<p>Thanks,<br />
Loke</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: felipe tonello</title>
		<link>http://akrabat.com/php/view-helpers-case-notes/#comment-14076</link>
		<dc:creator>felipe tonello</dc:creator>
		<pubDate>Fri, 21 Sep 2007 02:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/09/17/view-helpers-case-notes/#comment-14076</guid>
		<description>Rob:
I really want to know when it&#039;s necessary to use a helper and how can I use it.

Thanks,
Felipe</description>
		<content:encoded><![CDATA[<p>Rob:<br />
I really want to know when it's necessary to use a helper and how can I use it.</p>
<p>Thanks,<br />
Felipe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/php/view-helpers-case-notes/#comment-14032</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Wed, 19 Sep 2007 20:56:30 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/09/17/view-helpers-case-notes/#comment-14032</guid>
		<description>Roy,

The reason that Zend_View_Helper is there is so that the default view helpers map to the directory where the view helper is stored.

You can set the prefix to whatever you like when you set up the helper path for your own helpers:

&lt;pre class=&quot;phpcode&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&lt;br /&gt;$view&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;setHelperPath&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;/path/to/more/helpers&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;,&#160;&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;My_View_Helper&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;/span&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>Roy,</p>
<p>The reason that Zend_View_Helper is there is so that the default view helpers map to the directory where the view helper is stored.</p>
<p>You can set the prefix to whatever you like when you set up the helper path for your own helpers:</p>
<pre class="phpcode"><span style="color: #0000BB">
$view</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setHelperPath</span><span style="color: #007700">(</span><span style="color: #DD0000">'/path/to/more/helpers'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'My_View_Helper'</span><span style="color: #007700">);
</span>
</pre>
<p>Regards,</p>
<p>Rob...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Ganor</title>
		<link>http://akrabat.com/php/view-helpers-case-notes/#comment-14028</link>
		<dc:creator>Roy Ganor</dc:creator>
		<pubDate>Wed, 19 Sep 2007 17:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/09/17/view-helpers-case-notes/#comment-14028</guid>
		<description>Hi Rob,
I have a small question about this convention: Why we have to prefix the helper classes with &quot;Zend_View_Helper_&quot;? it is, from my point of view, unnessacery. Moreover if you want use this convention let&#039;s create a base class Zend_View_Helper_BaseHelper which includes setView($view) and everyone else will inherit from that class.

Hope it is not too late,
Thank you for your time,
Roy</description>
		<content:encoded><![CDATA[<p>Hi Rob,<br />
I have a small question about this convention: Why we have to prefix the helper classes with "Zend_View_Helper_"? it is, from my point of view, unnessacery. Moreover if you want use this convention let's create a base class Zend_View_Helper_BaseHelper which includes setView($view) and everyone else will inherit from that class.</p>
<p>Hope it is not too late,<br />
Thank you for your time,<br />
Roy</p>
]]></content:encoded>
	</item>
</channel>
</rss>
