<?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>Resident Geek &#187; Zend Framework</title> <atom:link href="http://www.danielrs.com/tag/zend-framework/feed/" rel="self" type="application/rss+xml" /><link>http://www.danielrs.com</link> <description>The weblog of Daniel Smith.</description> <lastBuildDate>Thu, 19 Jan 2012 19:30:50 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Wisdom Teeth</title><link>http://www.danielrs.com/2010/01/27/wisdom-teeth/</link> <comments>http://www.danielrs.com/2010/01/27/wisdom-teeth/#comments</comments> <pubDate>Wed, 27 Jan 2010 21:37:39 +0000</pubDate> <dc:creator>Daniel Smith</dc:creator> <category><![CDATA[Computing]]></category> <category><![CDATA[Life]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Tech]]></category> <category><![CDATA[wisdom teeth]]></category> <category><![CDATA[Zend Framework]]></category> <guid
isPermaLink="false">http://www.danielrs.com/2010/01/27/wisdom-teeth/</guid> <description><![CDATA[Wisdom teeth come out tomorrow. I am for sure not looking forward to it. In better news Zend Framework 1.10 was released today.]]></description> <content:encoded><![CDATA[<p>Wisdom teeth come out tomorrow.   I am for sure not looking forward to it.</p><p>In better news Zend Framework 1.10 was released today.</p> ]]></content:encoded> <wfw:commentRss>http://www.danielrs.com/2010/01/27/wisdom-teeth/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Back from Keys Vacation</title><link>http://www.danielrs.com/2009/09/13/back-from-keys-vacation/</link> <comments>http://www.danielrs.com/2009/09/13/back-from-keys-vacation/#comments</comments> <pubDate>Mon, 14 Sep 2009 02:05:05 +0000</pubDate> <dc:creator>Daniel Smith</dc:creator> <category><![CDATA[Computing]]></category> <category><![CDATA[Life]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Tech]]></category> <category><![CDATA[cloud computing]]></category> <category><![CDATA[Florida Keys]]></category> <category><![CDATA[Rackspace]]></category> <category><![CDATA[technical debt]]></category> <category><![CDATA[Zend Framework]]></category> <guid
isPermaLink="false">http://www.danielrs.com/?p=271</guid> <description><![CDATA[I am back from my Florida Keys Vacation with the family and ready to get back to my usual! Posts to come include posts on: Technical Debt, Cloud Hosting and Zend Framework. Can&#8217;t to write them and put them out there. Also can&#8217;t wait to post pictures from the vacation and post some pretty cool stories!]]></description> <content:encoded><![CDATA[<p><a
href="http://www.danielrs.com/wordpress/wp-content/uploads/2009/09/10627_791784405592_5101595_46342110_4049372_n.jpg"><img
src="http://www.danielrs.com/wordpress/wp-content/uploads/2009/09/10627_791784405592_5101595_46342110_4049372_n-248x300.jpg" alt="10627_791784405592_5101595_46342110_4049372_n" title="10627_791784405592_5101595_46342110_4049372_n" width="248" height="300" class="alignleft size-medium wp-image-274" /></a>I am back from my Florida Keys Vacation with the family and ready to get back to my usual!  Posts to come include posts on: Technical Debt, Cloud Hosting and Zend Framework.</p><p>Can&#8217;t to write them and put them out there.  Also can&#8217;t wait to post pictures from the vacation and post some pretty cool stories!</p> ]]></content:encoded> <wfw:commentRss>http://www.danielrs.com/2009/09/13/back-from-keys-vacation/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Zend Framework 1.5 Released</title><link>http://www.danielrs.com/2008/03/17/zend-framework-15-released/</link> <comments>http://www.danielrs.com/2008/03/17/zend-framework-15-released/#comments</comments> <pubDate>Mon, 17 Mar 2008 15:27:28 +0000</pubDate> <dc:creator>Daniel Smith</dc:creator> <category><![CDATA[Computing]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Zend Framework]]></category> <guid
isPermaLink="false">http://www.danielrs.com/2008/03/17/zend-framework-15-released/</guid> <description><![CDATA[Zend has finally released the 1.5 version of their Framework. I have been using their Release candidates for a little over a month now and am very excited that they have hit this milestone. Check out http://framework.zend.com to download the framework, and read tutorials on setting it up and using it. They also have video tutorials. One bitt of advice after briefly reading their new Quick Start Guide. The author has us using &#8216;require_once&#8217; on his controller class files, where instead we can better use the Zend_Loader which is instantiated in your bootstrap file, to autoload the classes, that way you call them anywhere in your project, without worrying about loading them. Here is the original code: IndexController.php require_once 'Zend/Controller/Action.php'; class IndexController extends Zend_Controller_Action { public function indexAction() { } } We can remove the &#8216;require_once&#8217; line, and then we need to set up the Zend Autoloader which can be done in your bootstrap file as follows: index.php ... require_once 'Zend/Loader.php'; Zend_Loader::registerAutoload(); ... I am not saying that my way is the &#8216;right&#8217; way, but this might help streamline the design of your project, and remove some un-necessary &#8216;includes&#8217;. You can also load a class using the Zend_Loader by calling: ... Zend_Loader::loadClass('CLASS NAME'); ... All of the tutorials are great. Maurice Fonk has some great insight into ZF, and has a great article on Integrating Smarty Templating Engine into ZF. Rob Allen&#8217;s blog also has some great stuff.]]></description> <content:encoded><![CDATA[<p>Zend has finally released the 1.5 version of their Framework.  I have been using their Release candidates for   a little over a month now and am very excited that they have hit this milestone.  Check out <a
href="http://framework.zend.com" title="Zend Framework">http://framework.zend.com</a> to download the framework, and read tutorials on setting it up and using it.  They   also have video tutorials.  One bitt of advice after briefly reading their new <a
href="http://framework.zend.com/wiki/display/ZFDEV/Official+ZF+QuickStart" title="Zend Framework Quick Start">Quick Start Guide</a>. <span
id="more-33"></span>The author has us using &#8216;require_once&#8217; on his controller class files, where instead we can better use the Zend_Loader which is instantiated in your bootstrap file, to autoload the classes, that way you call them anywhere in your project, without worrying about loading them.</p><p>Here is the original code:</p><p>IndexController.php</p><pre name="code" class="php">
require_once 'Zend/Controller/Action.php';
class IndexController extends Zend_Controller_Action
{
    public function indexAction()
    {
    }
}
</pre><p>We can remove the &#8216;require_once&#8217; line, and then we need to set up the Zend Autoloader which can be done in your bootstrap file as follows:</p><p>index.php</p><pre name="code" class="php">
...
require_once 'Zend/Loader.php';
Zend_Loader::registerAutoload();
...
</pre><p>I am not saying that my way is the &#8216;right&#8217; way, but this might help streamline the design of your project, and remove some un-necessary &#8216;includes&#8217;.  You can also load a class using the Zend_Loader by calling:</p><pre name="code" class="php">
...
Zend_Loader::loadClass('CLASS NAME');
...
</pre><p>All of the tutorials are great. <a
href="http://naneau.nl" title="Naneau">Maurice Fonk</a> has some great insight into ZF, and has a great article on <a
href="http://naneau.nl/2007/05/31/using-naneau_view_smarty-with-rc1/" title="Using Smarty with ZF">Integrating Smarty Templating Engine into ZF</a>. <a
href="http://akrabat.com/">Rob Allen&#8217;s blog</a> also has some great stuff.</p> ]]></content:encoded> <wfw:commentRss>http://www.danielrs.com/2008/03/17/zend-framework-15-released/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
