<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Zend framework custom Form decorators</title>
	<atom:link href="http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/feed/" rel="self" type="application/rss+xml" />
	<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/</link>
	<description></description>
	<lastBuildDate>Sat, 14 Nov 2009 05:38:41 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jesse</title>
		<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/#comment-223</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Wed, 25 Feb 2009 04:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=210#comment-223</guid>
		<description>Can someone tell me what the ini file config looks like for this?

I&#039;m trying something like this

    userForm.elements.name_first.type = &quot;text&quot;
    userForm.elements.name_first.options.label = &quot;Name First&quot;
    userForm.elements.name_first.options.validators.notempty.validator = &quot;NotEmpty&quot;
    userForm.elements.name_first.options.validators.notempty.options.messages.isEmpty = &quot;A valid user name is required.&quot;

    userForm.elements.name_first.options.elementprefixPath.my.type   = &quot;decorator&quot;
    userForm.elements.name_first.options.elementprefixPath.my.path   = &quot;My/Form/Decorator/&quot;
    userForm.elements.name_first.options.elementprefixPath.my.prefix = &quot;My_Form_Decorator&quot;
    userForm.elements.name_first.options.decorator = &quot;Simple&quot;</description>
		<content:encoded><![CDATA[<p>Can someone tell me what the ini file config looks like for this?</p>
<p>I&#8217;m trying something like this</p>
<p>    userForm.elements.name_first.type = &#8220;text&#8221;<br />
    userForm.elements.name_first.options.label = &#8220;Name First&#8221;<br />
    userForm.elements.name_first.options.validators.notempty.validator = &#8220;NotEmpty&#8221;<br />
    userForm.elements.name_first.options.validators.notempty.options.messages.isEmpty = &#8220;A valid user name is required.&#8221;</p>
<p>    userForm.elements.name_first.options.elementprefixPath.my.type   = &#8220;decorator&#8221;<br />
    userForm.elements.name_first.options.elementprefixPath.my.path   = &#8220;My/Form/Decorator/&#8221;<br />
    userForm.elements.name_first.options.elementprefixPath.my.prefix = &#8220;My_Form_Decorator&#8221;<br />
    userForm.elements.name_first.options.decorator = &#8220;Simple&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hab</title>
		<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/#comment-159</link>
		<dc:creator>Hab</dc:creator>
		<pubDate>Fri, 30 Jan 2009 17:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=210#comment-159</guid>
		<description>I&#039;ve tried addDecorators(array(&#039;Simple&#039;));

but got error
Warning: Zend_Loader::include_once(Zend\Form\Decorator\Abstact.php) [zend-loader.include-once]: failed to open stream: No such file or directory in E:\wamp\www\matri\library\Zend\Loader.php on line 84

Warning: Zend_Loader::include_once() [function.include]: Failed opening &#039;Zend\Form\Decorator\Abstact.php&#039; for inclusion (include_path=&#039;E:\wamp\www\matri\application/../library;.;C:\php5\pear&#039;) in E:\wamp\www\matri\library\Zend\Loader.php on line 84

Fatal error: Class &#039;Zend_Form_Decorator_Abstact&#039; not found in E:\wamp\www\matri\library\My\Form\Decorators\Simple.php on line 2

But Abstact.php is there at Zend\Form\Decorator\</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried addDecorators(array(&#8216;Simple&#8217;));</p>
<p>but got error<br />
Warning: Zend_Loader::include_once(Zend\Form\Decorator\Abstact.php) [zend-loader.include-once]: failed to open stream: No such file or directory in E:\wamp\www\matri\library\Zend\Loader.php on line 84</p>
<p>Warning: Zend_Loader::include_once() [function.include]: Failed opening &#8216;Zend\Form\Decorator\Abstact.php&#8217; for inclusion (include_path=&#8217;E:\wamp\www\matri\application/../library;.;C:\php5\pear&#8217;) in E:\wamp\www\matri\library\Zend\Loader.php on line 84</p>
<p>Fatal error: Class &#8216;Zend_Form_Decorator_Abstact&#8217; not found in E:\wamp\www\matri\library\My\Form\Decorators\Simple.php on line 2</p>
<p>But Abstact.php is there at Zend\Form\Decorator\</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hab</title>
		<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/#comment-158</link>
		<dc:creator>Hab</dc:creator>
		<pubDate>Fri, 30 Jan 2009 15:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=210#comment-158</guid>
		<description>I&#039;ve tried this

$this-&gt;Name-&gt;addDecorator(&#039;Simple&#039;);

But got this error
Parse error: syntax error, unexpected T_SWITCH in E:\wamp\www\matri\library\My\Form\Decorators\Simple.php on line 76</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried this</p>
<p>$this-&gt;Name-&gt;addDecorator(&#8216;Simple&#8217;);</p>
<p>But got this error<br />
Parse error: syntax error, unexpected T_SWITCH in E:\wamp\www\matri\library\My\Form\Decorators\Simple.php on line 76</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hab</title>
		<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/#comment-157</link>
		<dc:creator>Hab</dc:creator>
		<pubDate>Fri, 30 Jan 2009 14:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=210#comment-157</guid>
		<description>I&#039;m a newbie in ZF. I&#039;ve created my first application with the help http://framework.zend.com/docs/quickstart an I tried to add custom decorator with the help this article.. but it&#039;s getting error &quot;Message: Decorator by name Label does not exist&quot;..

Any idea?

Thanks
Hab</description>
		<content:encoded><![CDATA[<p>I&#8217;m a newbie in ZF. I&#8217;ve created my first application with the help <a href="http://framework.zend.com/docs/quickstart" rel="nofollow">http://framework.zend.com/docs/quickstart</a> an I tried to add custom decorator with the help this article.. but it&#8217;s getting error &#8220;Message: Decorator by name Label does not exist&#8221;..</p>
<p>Any idea?</p>
<p>Thanks<br />
Hab</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Streamer</title>
		<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/#comment-30</link>
		<dc:creator>Streamer</dc:creator>
		<pubDate>Sun, 16 Nov 2008 14:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=210#comment-30</guid>
		<description>Thank you for this article, a tryied to solve my problem with decorators few mounts ago but only this article helps me how to create it, thanks (sorry for my english)</description>
		<content:encoded><![CDATA[<p>Thank you for this article, a tryied to solve my problem with decorators few mounts ago but only this article helps me how to create it, thanks (sorry for my english)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr. Magic</title>
		<link>http://zendguru.wordpress.com/2008/11/13/zend-framework-custom-form-decorators/#comment-26</link>
		<dc:creator>Mr. Magic</dc:creator>
		<pubDate>Thu, 13 Nov 2008 13:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://zendguru.wordpress.com/?p=210#comment-26</guid>
		<description>Have you ever tried reading one of your posts yourself? It&#039;s pretty fun to read text with absolutely no spaces in between clauses...</description>
		<content:encoded><![CDATA[<p>Have you ever tried reading one of your posts yourself? It&#8217;s pretty fun to read text with absolutely no spaces in between clauses&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
