<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Peacock Suit &#187; Zend Framework</title>
	<atom:link href="http://www.peacocksuit.com/blog/tag/zend-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.peacocksuit.com/blog</link>
	<description>PHP, (X)HTML, CSS and Everything Else</description>
	<lastBuildDate>Fri, 12 Jun 2009 14:00:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ZF 1.8 Zend_Form automatically sets form encoding on upload</title>
		<link>http://www.peacocksuit.com/blog/2009/06/12/zf-18-zend_form-automatically-sets-form-encoding-on-upload/</link>
		<comments>http://www.peacocksuit.com/blog/2009/06/12/zf-18-zend_form-automatically-sets-form-encoding-on-upload/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:00:05 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend_Form]]></category>
		<category><![CDATA[Zend_Form_Element_File]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=147</guid>
		<description><![CDATA[As of ZF 1.8 Zend_Form&#8217;s enctype defaults to multipart when a file element is attached. Prior to this version you have to do this manually like so:

$form-&#62;setAttrib&#40;'enctype', 'multipart/form-data'&#41;;
//or
$form-&#62;setAttrib&#40;'enctype', Zend_Form::ENCTYPE_MULTIPART&#41;;

More info on Zend_Form_Element_File
]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2009/06/12/zf-18-zend_form-automatically-sets-form-encoding-on-upload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The past months useful links</title>
		<link>http://www.peacocksuit.com/blog/2009/02/05/the-past-months-useful-links/</link>
		<comments>http://www.peacocksuit.com/blog/2009/02/05/the-past-months-useful-links/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 23:39:49 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Eclipse PDT]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Model-View-Controller]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=144</guid>
		<description><![CDATA[Lots has been going on since last my post. I&#8217;ve been awful busy and could find no time to commit to regular posts or any for that matter so I&#8217;ll start with some useful links and try to post more often.
Zend Framework
We&#8217;ve seen the release of 1.7.0 and since four mini releases bringing us up [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2009/02/05/the-past-months-useful-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.7.0 is now available!</title>
		<link>http://www.peacocksuit.com/blog/2008/11/17/zend-framework-1-7-0/</link>
		<comments>http://www.peacocksuit.com/blog/2008/11/17/zend-framework-1-7-0/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 15:37:43 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend_Form_Element_Select]]></category>
		<category><![CDATA[Zend Framework Performance Guide]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=137</guid>
		<description><![CDATA[Almost three hundred bugs fixed and many welcome additions, one of which is the new Performance Guide in the reference manual.
1.7.0 can  be downloaded from the Zend Framework download site.
Well done ZF Team!
]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/11/17/zend-framework-1-7-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend_Dojo_Form and Form Validation on the Client Side</title>
		<link>http://www.peacocksuit.com/blog/2008/11/10/zend_dojo_form-and-form-validation-on-the-client-side/</link>
		<comments>http://www.peacocksuit.com/blog/2008/11/10/zend_dojo_form-and-form-validation-on-the-client-side/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 03:00:12 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend_Dojo_Form]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend_View_Helper]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=107</guid>
		<description><![CDATA[One thing those of you who have been using Zend_Dojo_Form might have noticed is that dojo enabled forms don&#8217;t show validation warnings when submitted i.e. when the submit button is clicked. This can be quite confusing for the end user. 
So, how do we get our dojo enabled forms to validate when submitted? 


Matthew Weier [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/11/10/zend_dojo_form-and-form-validation-on-the-client-side/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zend framework: Logging Database Queries to FireBug</title>
		<link>http://www.peacocksuit.com/blog/2008/09/02/zend-framework-logging-database-queries-to-firebug/</link>
		<comments>http://www.peacocksuit.com/blog/2008/09/02/zend-framework-logging-database-queries-to-firebug/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:34:32 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend_Db_Profiler_Firebug]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=93</guid>
		<description><![CDATA[Logging database queries to FireBug is sinfully simple with the new component Zend_Db_Profiler_Firebug in ZF 1.6, now available, you can download it here Zend Framework Download Page.
Requirements:

Firefox Browser ideally version 3 but version 2 is also supported.
Firebug Firefox Extension.
FirePHP Firefox Extension.

More information on requirements at the Zend Framework Documentation -  Profiling with Firebug
Let&#8217;s look at [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/09/02/zend-framework-logging-database-queries-to-firebug/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What&#8217;s new in Zend framework 1.6</title>
		<link>http://www.peacocksuit.com/blog/2008/09/02/whats-new-in-zend-framework-16/</link>
		<comments>http://www.peacocksuit.com/blog/2008/09/02/whats-new-in-zend-framework-16/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 10:37:01 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=91</guid>
		<description><![CDATA[Wildfire, captcha and dojo integration are just some of the highlights.
&#8220;Watch this presentation to hear the entire Zend Framework team talk about what to expect from Zend Framework 1.6, soon to be released.
Presented by Wil Sinclair, Development Manager, Matthew Weier O’phinney, Software Architect, Alexander Veremyev, Software Engineer and Ralph Schindler, Software Engineer. &#8211; Zend&#8220;
Click here [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/09/02/whats-new-in-zend-framework-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend_Acl and MVC</title>
		<link>http://www.peacocksuit.com/blog/2008/09/01/zend_acl-and-mvc/</link>
		<comments>http://www.peacocksuit.com/blog/2008/09/01/zend_acl-and-mvc/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 14:19:36 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend_Acl]]></category>
		<category><![CDATA[Zend_Auth]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=67</guid>
		<description><![CDATA[Quickstart Screencasts
Zend_Auth
Zend_Acl
Zend Developer Zone Tutorials
Zend_Acl and MVC Integration Part I (Basic Use)
Zend_Acl and MVC Integration Part II (Advanced Use)
Matthew Weier O&#8217;Phinney Tutorial
Login and Authentication with Zend Framework
&#8220;Zend_Auth does a lot of behind the scenes work to make persisting an identity in the session trivial. Combine it with Zend_Form, and you have a very easy to [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/09/01/zend_acl-and-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Populate a Zend_Form select with database returned data</title>
		<link>http://www.peacocksuit.com/blog/2008/08/30/populate-a-zend_form-select-with-mysql-returned-data/</link>
		<comments>http://www.peacocksuit.com/blog/2008/08/30/populate-a-zend_form-select-with-mysql-returned-data/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 11:33:15 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend_Form_Element_Select]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend_Form]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=46</guid>
		<description><![CDATA[The code speaks for itself:

$category = new Zend_Form_Element_Select&#40;'category'&#41;;
$category-&#62;setLabel&#40;'Category'&#41;
         -&#62;setRequired&#40;true&#41;;
&#160;
$table = new Category&#40;&#41;;
foreach &#40;$table-&#62;fetchAll&#40;&#41; as $c&#41; &#123;
    $category-&#62;addMultiOption&#40;$c-&#62;id, $c-&#62;name&#41;;
&#125;

&#8220;By default, this element registers an InArray validator which validates against the array keys of registered options. You can disable this behavior by either calling setRegisterInArrayValidator(false), or [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/08/30/populate-a-zend_form-select-with-mysql-returned-data/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Good OOP Practice / Zend framework</title>
		<link>http://www.peacocksuit.com/blog/2008/08/28/good-oop-practice-zend-framework/</link>
		<comments>http://www.peacocksuit.com/blog/2008/08/28/good-oop-practice-zend-framework/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 08:42:03 +0000</pubDate>
		<dc:creator>Gerard Roche</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://peacocksuit.com/blog/?p=33</guid>
		<description><![CDATA[An interesting post on nabble yesterday by Matthew Weier O&#8217;Phinney on the difference between:

if &#40;$this-&#62;getRequest&#40;&#41;-&#62;isPost&#40;&#41;&#41; &#123;
     // process
&#125;
&#160;
if &#40;$this-&#62;_request-&#62;isPost&#40;&#41;&#41; &#123;
     // process
&#125;
&#160;
if &#40;$_SERVER&#91;'REQUEST_METHOD'&#93; == 'POST'&#41; &#123;
    // process
&#125;

Sometimes, he explains
“the obvious and simple solutions simply are not portable, or would circumvent custom logic the [...]]]></description>
		<wfw:commentRss>http://www.peacocksuit.com/blog/2008/08/28/good-oop-practice-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
