<?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>On Tech and Software &#187; zendframework</title>
	<atom:link href="http://jmgtan.com/tag/zendframework/feed/" rel="self" type="application/rss+xml" />
	<link>http://jmgtan.com</link>
	<description>Random thoughts on technology, ventures, algorithms, frameworks, gadgets and THE MAN</description>
	<lastBuildDate>Fri, 02 Jul 2010 11:14:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hands on Usage of ZF 1.8.x</title>
		<link>http://jmgtan.com/2009/05/13/hands-on-usage-of-zf-18x/</link>
		<comments>http://jmgtan.com/2009/05/13/hands-on-usage-of-zf-18x/#comments</comments>
		<pubDate>Thu, 14 May 2009 02:38:25 +0000</pubDate>
		<dc:creator>Jan Michael Tan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[zendframework]]></category>

		<guid isPermaLink="false">http://jmgtan.com/?p=141</guid>
		<description><![CDATA[Well that was fast, new maintenance release of Zend Framework is now out! Checking out the changelog, noticed this little gem: Addition of module generation capabilities to Zend_Tool; I posted about that in my initial thoughts of ZF 1.8 post. I started using 1.8 on a new project recently, while actual hands-on usage of the [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Well that was fast, new maintenance release of Zend Framework is now out! Checking out the changelog, noticed this little gem: <strong>Addition of module generation capabilities to Zend_Tool</strong>; I posted about that in <a href="http://jmgtan.com/2009/05/12/thoughts-on-the-new-zend-framework-18/">my initial thoughts of ZF 1.8 post</a>.</p>
<p><span id="more-141"></span></p>
<p>I started using 1.8 on a new project recently, while actual hands-on usage of the new stuff (<em>Zend_Application</em>, <em>Zend_Tool</em>) and the documentations are great, there are still some confusion with regards to how the <em>Resource Autoloader </em>works, there are some conflict with the quick-start tutorial from Zend and the actual reference documentation. According to the documentation, <em>Resource Autoloader </em>should work automatically when using <em>Zend_Application</em>, but according to the quick-start tutorial, you have to initialize it in the <em>Bootstrap</em>. Maybe i&#8217;m missing something, but I&#8217;ve decided to go with the quick-start tutorial for the time being since it works. I&#8217;ve also noticed that there are some new view helpers like ($this-&gt;cycle for one) minor stuff but very helpful!</p>
<p>Using Zend_Form is still an exercise in frustration, especially the decorators. I love the way <em>symfony </em>handles the form layouts, it just passes the form object as an array to the view layer and gets out of the way, allowing designers to actually do the form design. Zend_Form just seems counter-intuitive. They got majority of the stuff correct, but laying out the forms to display how you want them is very hard. Let the view layer handle the layout stuff, allowing the Form object to be more flexible and reusable.</p>
<p></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjmgtan.com%2F2009%2F05%2F13%2Fhands-on-usage-of-zf-18x%2F&amp;linkname=Hands%20on%20Usage%20of%20ZF%201.8.x"><img src="http://jmgtan.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jmgtan.com/2009/05/13/hands-on-usage-of-zf-18x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thoughts on the new Zend Framework 1.8</title>
		<link>http://jmgtan.com/2009/05/12/thoughts-on-the-new-zend-framework-18/</link>
		<comments>http://jmgtan.com/2009/05/12/thoughts-on-the-new-zend-framework-18/#comments</comments>
		<pubDate>Tue, 12 May 2009 07:57:59 +0000</pubDate>
		<dc:creator>Jan Michael Tan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[zendframework]]></category>

		<guid isPermaLink="false">http://jmgtan.com/?p=127</guid>
		<description><![CDATA[Been playing around with the new version of Zend Framework (1.8). The command line Zend_Tools has alot of potential and is very useful for newbies, but still lacks a lot of functionality (support for modules in the command line would be pretty cool!). I loved the Application/Bootstrap approach this puts a lot of much needed [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>Been playing around with the new version of Zend Framework (1.8). The command line Zend_Tools has alot of potential and is very useful for newbies, but still lacks a lot of functionality (support for modules in the command line would be pretty cool!). I loved the Application/Bootstrap approach this puts a lot of much needed structure to a very flexible framework. It also centralizes plugins to the front controller and of course custom initializations using _init methods in the Bootstrap file. Although missing in the reference documentation are examples when using a more modular approach when using the Zend_Application.</p>
<p><span id="more-127"></span></p>
<p>Also the quick-start tutorial from Zend&#8217;s website has been updated! It includes a very nice approach to models (much needed overhaul in the next version of ZF). Overall a very solid release from the community. Looking forward to using it in new projects.</p>
<p></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fjmgtan.com%2F2009%2F05%2F12%2Fthoughts-on-the-new-zend-framework-18%2F&amp;linkname=Thoughts%20on%20the%20new%20Zend%20Framework%201.8"><img src="http://jmgtan.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jmgtan.com/2009/05/12/thoughts-on-the-new-zend-framework-18/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
