<?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>Jon&#039;s Blog &#187; Zend Framework</title>
	<atom:link href="http://bombdiggity.net/blog/category/zend-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://bombdiggity.net/blog</link>
	<description>Ramblings of a php coder</description>
	<lastBuildDate>Fri, 14 May 2010 17:36:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Accessing ZF Application Resources In Controller</title>
		<link>http://bombdiggity.net/blog/2009/12/09/accessing-zf-application-resources-in-controller/</link>
		<comments>http://bombdiggity.net/blog/2009/12/09/accessing-zf-application-resources-in-controller/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 04:15:35 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[zend_application]]></category>
		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=162</guid>
		<description><![CDATA[My friend Rob Allen recently posted a quick how-to on how to access your configuration data in application.ini file while in a controller or action helper. The one part Rob didn&#8217;t touch on was how to get resources back. Resources are set when you return something out of your _init&#60;MethodName&#62;. For example when you use [...]]]></description>
			<content:encoded><![CDATA[<p>My friend Rob Allen recently posted a quick how-to on how to <a href="http://akrabat.com/zend-framework/accessing-your-configuration-data-in-application-ini/">access your configuration data in application.ini</a> file while in a controller or action helper. The one part Rob didn&#8217;t touch on was how to get resources back.</p>
<p><span id="more-162"></span></p>
<p>Resources are set when you return something out of your _init&lt;MethodName&gt;. For example when you use the following source code and return the $_logger, Zend_Application stores the returned value in a registry inside the application.</p>
<pre class="brush: php">
// place in your bootstrap file.
public function _initLogger()
{
    $writer = new Zend_Log_Writer_Firebug();
    $_logger = new Zend_Log($writer);
    return $_logger;
}
</pre>
<p>Now the way you get access to the logger is by doing the following inside your controller or controller helper:</p>
<pre class="brush: php">
class IndexController extends Zend_Controller_Action
{
    public function indexAction()
    {
        // action body
        $logger = $this-&gt;getInvokeArg(&#039;bootstrap&#039;)
                        -&gt;getResource(&#039;logger&#039;);
    }
}
</pre>
<p>The key is the getResource() method.  You pass in the part following the _init from your method name.  This will return the instance of what ever object was returned in the _init method. </p>
<p>Where I got stuck, was since I&#8217;m using the Module Bootstrap for my modules and I only want the logger on specific modules and not the whole application when I used the above code it returned null.  The reason for null was because it was not in the global bootstrap file. To get access to the resources from the module bootstrap you need to use the following code:</p>
<pre class="brush: php">
class Admin_IndexController extends Zend_Controller_Action
{
    public function indexAction()
    {
        // action body
        $logger = $this-&gt;getInvokeArg(&#039;bootstrap&#039;)
                        -&gt;getResource(&#039;modules&#039;)
                        -&gt;offsetGet($this-&gt;getRequest()-&gt;getModuleName())
                        -&gt;getResource(&#039;logger&#039;);
    }
}
</pre>
<p>I hope this helps someone else out there as it was an eye opener to me when I was told about it via the ZF mailing list.</p>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2009/12/09/accessing-zf-application-resources-in-controller/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ZF Curly Quote Character Filter</title>
		<link>http://bombdiggity.net/blog/2009/12/09/zf-curly-quote-character-filter/</link>
		<comments>http://bombdiggity.net/blog/2009/12/09/zf-curly-quote-character-filter/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 15:15:08 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[curly quotes]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[zend_filter]]></category>
		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=144</guid>
		<description><![CDATA[If your like me and have people who like to write stuff in MS Office first and then post it to the web you get the silly quotes and such that word uses. The quotes and such are not valid UFT-8 and that&#8217;s how I like to store my data in my database so it [...]]]></description>
			<content:encoded><![CDATA[<p>If your like me and have people who like to write stuff in MS Office first and then post it to the web you get the silly quotes and such that word uses. The quotes and such are not valid UFT-8 and that&#8217;s how I like to store my data in my database so it usually dumps out with an error.</p>
<p>I&#8217;ve come up with the following Zend_Filer_Interface so that way you can plug it into anything that has the ability to use Zend_Filter.</p>
<p>Read More for the source code.<br />
<span id="more-144"></span></p>
<p><del datetime="2009-12-10T21:39:16+00:00"><strong>Updated on 12/10/09 to include more characters and remove the html version</strong></del></p>
<p><strong>Updated again on 12/10/09 to make it work with UTF-8 Submitted Forms.  I&#8217;ve spent half the day validaing this and testing it with a HEX editor</strong></p>
<pre class="brush: php">
&lt;?php

class Util_Filter_WordChars implements Zend_Filter_Interface
{
    /**
     * Filter out the invalid characters that word puts in.
     * @param string $value
     * @return string
     */
    public function filter($value)
    {

        $search = array(chr(0xe2) . chr(0x80) . chr(0x98),  // &#039;
            chr(0xe2) . chr(0x80) . chr(0x99),  // &#039;
            chr(0xe2) . chr(0x80) . chr(0x9c),  // &quot;
            chr(0xe2) . chr(0x80) . chr(0x9d),  // &quot;
            chr(0xe2) . chr(0x80) . chr(0x93),  // em dash
            chr(0xe2) . chr(0x80) . chr(0x94),  // en dash
            chr(0xe2) . chr(0x80) . chr(0xa6)); // ...

        $replace = array(
            &#039;\&#039;&#039;,
            &#039;\&#039;&#039;,
            &#039;&quot;&#039;,
            &#039;&quot;&#039;,
            &#039;-&#039;,
            &#039;-&#039;,
            &#039;...&#039;);

        return str_replace($search, $replace, $value);
    }
}
</pre>
<p>This could be changed to put them in the html ascii code to display them but I like the standard single quote and double quote online.</p>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2009/12/09/zf-curly-quote-character-filter/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.8 Released</title>
		<link>http://bombdiggity.net/blog/2009/04/30/zend-framework-18-released/</link>
		<comments>http://bombdiggity.net/blog/2009/04/30/zend-framework-18-released/#comments</comments>
		<pubDate>Fri, 01 May 2009 00:44:27 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[EC2]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=137</guid>
		<description><![CDATA[As I&#8217;m sure everyone is almost aware by now Zend Framework 1.8 has been released. This is an extra special release for me as I spend two good weeks back in March writing the Ec2 Component after being pinged by Zend to do it. It was fun writing it and learning more that I ever [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m sure everyone is almost aware by now Zend Framework 1.8 has been released. This is an extra special release for me as I spend two good weeks back in March writing the Ec2 Component after being pinged by Zend to do it.</p>
<p>It was fun writing it and learning more that I ever wanted to know about the Ec2 API&#8217;s but all it all it was a great expierice and I&#8217;m glad that I got the chance to do it.</p>
<p>Other notable items in the 1.8 release are:</p>
<ul>
<li>Zend_Application</li>
<li>Zend_Tool</li>
<li>Zend_Crypt</li>
<li>Zend_Service_Amazon_S3</li>
<li><a title="Zend Framework 1.8 Released" href="http://devzone.zend.com/article/4524-Zend-Framework-1.8.0-Released">and so much more</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2009/04/30/zend-framework-18-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework Ec2 API</title>
		<link>http://bombdiggity.net/blog/2009/03/27/zend-framework-ec2-api/</link>
		<comments>http://bombdiggity.net/blog/2009/03/27/zend-framework-ec2-api/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 04:33:57 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Amazon AWS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[EC2]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=133</guid>
		<description><![CDATA[So about two weeks ago Wil Sinclair from Zend pinged me about creating an Zend Framework API interface for Amazon Ec2. I was coming off of playing around with Ec2 for work and figured I would give it a shot. With the proposal filed I began the task of coding it out. After two weeks [...]]]></description>
			<content:encoded><![CDATA[<p>So about two weeks ago Wil Sinclair from Zend pinged me about creating an<a href="http://framework.zend.com/"> Zend Framework</a> API interface for Amazon Ec2. I was coming off of playing around with Ec2 for work and figured I would give it a shot. With the <a title="Zend_Service_Amazon_Ec2 Proposal" href="http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Amazon_Ec2+-+Jon+Whitcraft">proposal filed</a> I began the task of coding it out. After two weeks of writing code I had a working interface for the Query API from Amazon.</p>
<p>I do have to say I learned a lot while doing the inital work and I&#8217;m happy that Wil pinged me to do it. If you want to check out the code currently it lives on <a href="http://github.com/sidhighwind/zend_service_amazon_ec2/tree/master">github</a> but it is on track to make the 1.8 release of Zend Framework.</p>
<p>Please leave a commet here or on the proposal for anything that I may have over looked or if you have any ideas on how I could make it better.</p>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2009/03/27/zend-framework-ec2-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Caching with Zend Framework</title>
		<link>http://bombdiggity.net/blog/2009/03/27/browser-caching-with-zend-framework/</link>
		<comments>http://bombdiggity.net/blog/2009/03/27/browser-caching-with-zend-framework/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 04:27:34 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=130</guid>
		<description><![CDATA[While watching the Zend Devzone RSS feed they posted a link to an article that talks about using the Etag Header to make ZF more cache friendly to the browser. While I was a little hesitant at first about this in my testing on my dev server it seems to have improved page performance in [...]]]></description>
			<content:encoded><![CDATA[<p>While watching the <a title="Zend Developer Zone" href="http://devzone.zend.com">Zend Devzone</a> RSS feed they posted a link to an article that talks about using the Etag Header to make ZF more cache friendly to the browser.</p>
<p><span id="more-130"></span>While I was a little hesitant at first about this in my testing on my dev server it seems to have improved page performance in the form of reduced bandwidth coming off the server which is always a good thing.</p>
<p>All that is required is to create and register a new front controller plugin. <a title="Zend Framework Browser Caching" href="http://smartycode.com/performance/zend-framework-browser-caching/">Click here for the most up to date code</a>.</p>
<p>I personally think it&#8217;s worth checking out if you run a zend framework based site as it&#8217;s only about ~35 lines of code at the time of writing.</p>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2009/03/27/browser-caching-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio for Eclipse &#8211; New Framework Project Problems</title>
		<link>http://bombdiggity.net/blog/2009/01/03/zend-studio-for-eclipse-new-framework-project-problems/</link>
		<comments>http://bombdiggity.net/blog/2009/01/03/zend-studio-for-eclipse-new-framework-project-problems/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 22:11:43 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=64</guid>
		<description><![CDATA[While working on a new project where my base was Zend Framework I desided to give the default layout for new ZF projects in Zend Studio for Eclipse a chance. While it does start a good layout for a project by generating the default code which is a real time saver I did notice some [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a new project where my base was Zend Framework I desided to give the default layout for new ZF projects in Zend Studio for Eclipse a chance. While it does start a good layout for a project by generating the default code which is a real time saver I did notice some problems.<br />
<span id="more-64"></span></p>
<ol>
<li>All of the class files have the closing php tag (?&gt;) on them followed by white space.</li>
<li>Lack of a modules directory in the default project</li>
<li>The Initializer Plug-in does not do some very basic things that should be done.</li>
</ol>
<h3>1. Closing php Tag</h3>
<p>According to the <a title="Zend Framework Wiki" href="http://framework.zend.com/wiki/display/ZFDEV/PHP+Coding+Standard+(draft)#PHPCodingStandard(draft)-PHPFileFormatting" target="_blank">PHP Coding Standard</a> that is on the Zend Framework Wiki:</p>
<p style="padding-left: 30px;">For files that contain only PHP code, the closing tag (&#8220;?&gt;&#8221;) is to be omitted. It is not required by PHP, and omitting it prevents trailing whitespace from being accidentally injected into the output.</p>
<h3>2. Lack of a modules direcory</h3>
<p>I know this is easy to add if you know what you are doing with ZF but someone who is new to the framework they might find it hard to understand how to add support for the modules directory. It&#8217;s part of the <a href="http://framework.zend.com/wiki/display/ZFPROP/Zend+Framework+Default+Project+Structure+-+Wil+Sinclair">proposed project structure</a> in the ZF wiki.</p>
<h3>3. Initializer Plug-in</h3>
<p>This is where I have the biggest problem with the default project that is generated.</p>
<ol>
<li>The basic layout of the file is fine except for all the init*() methods return void where they should return the class object so that you can chain requests together in the routeStartup() method.</li>
<li>It sets the controller directory last so if something throws an exception before before the controller path is set you end up seeing the exception about how ZF can not find the error controller instead of the actually exception thrown.</li>
</ol>
<p>Let me know in the comments if you have any suggestions or additions to this.</p>
<p>Here is my updated Initializer.php file</p>
<pre class="brush: php">&lt; ?php
&lt;?php
/**
 * My new Zend Framework project
 *
 * $LastChangedDate$
 * $LastChangedRevision$
 */

require_once &#039;Zend/Controller/Plugin/Abstract.php&#039;;
require_once &#039;Zend/Controller/Front.php&#039;;
require_once &#039;Zend/Controller/Request/Abstract.php&#039;;
require_once &#039;Zend/Controller/Action/HelperBroker.php&#039;;

/**
 *
 * Initializes configuration depndeing on the type of environment
 * (test, development, production, etc.)
 *
 * This can be used to configure environment variables, databases,
 * layouts, routers, helpers and more
 *
 */
class Initializer extends Zend_Controller_Plugin_Abstract
{
    /**
     * @var Zend_Config
     */
    protected static $_config;

    /**
     * @var string Current environment
     */
    protected $_env;

    /**
     * @var Zend_Controller_Front
     */
    protected $_front;

    /**
     * @var string Path to application root
     */
    protected $_root;

    /**
     * Constructor
     *
     * Initialize environment, root path, and configuration.
     *
     * @param  string $env
     * @param  string|null $root
     * @return void
     */
    public function __construct($env, $root = null)
    {
        $this-&gt;_setEnv($env);
        if (null === $root) {
            $root = realpath(dirname(__FILE__) . &#039;/../&#039;);
        }
        $this-&gt;_root = $root;

        $this-&gt;initPhpConfig();

        $this-&gt;_front = Zend_Controller_Front::getInstance();

        // set the test environment parameters
        if ($env == &#039;test&#039;) {
            // Enable all errors so we&#039;ll know when something goes wrong.
            error_reporting(E_ALL | E_STRICT);
            ini_set(&#039;display_startup_errors&#039;, 1);
            ini_set(&#039;display_errors&#039;, 1);

            $this-&gt;_front-&gt;throwExceptions(true);
        }
    }

    /**
     * Initialize environment
     *
     * @param  string $env
     * @return void
     */
    protected function _setEnv($env)
    {
        $this-&gt;_env = $env;
    }

    /**
     * Initialize Data bases
     *
     * @return Initializer
     */
    public function initPhpConfig()
    {

    }

    /**
     * Route startup
     *
     * @return Initializer
     */
    public function routeStartup(Zend_Controller_Request_Abstract $request)
    {
        $this-&gt;initControllers()
            -&gt;initHelpers()
            -&gt;initView()
            -&gt;initDb()
            -&gt;initPlugins()
            -&gt;initRoutes();

        return $this;
    }

    /**
     * Initialize data bases
     *
     * @return Initializer
     */
    public function initDb()
    {
        return $this;
    }

    /**
     * Initialize action helpers
     *
     * @return Initializer
     */
    public function initHelpers()
    {
        // register the default action helpers
        Zend_Controller_Action_HelperBroker::addPath( $this-&gt;_root . &#039;/application/default/helpers&#039;, &#039;Zend_Controller_Action_Helper&#039;);

        return $this;
    }

    /**
     * Initialize view
     *
     * @return Initializer
     */
    public function initView()
    {
        // Bootstrap layouts
        Zend_Layout::startMvc(array(
            &#039;layoutPath&#039; =&gt; $this-&gt;_root .  &#039;/application/default/layouts&#039;,
            &#039;layout&#039; =&gt; &#039;main&#039;
        ));

        return $this;

    }

    /**
     * Initialize plugins
     *
     * @return Initializer
     */
    public function initPlugins()
    {
        return $this;
    }

    /**
     * Initialize routes
     *
     * @return Initializer
     */
    public function initRoutes()
    {
        return $this;
    }

    /**
     * Initialize Controller and Modules paths
     *
     * @return Initializer
     */
    public function initControllers()
    {
        $this-&gt;_front-&gt;addControllerDirectory($this-&gt;_root . &#039;/application/default/controllers&#039;, &#039;default&#039;);
        $this-&gt;_front-&gt;addModuleDirectory($this-&gt;_root . &#039;/application/modules&#039;);

        return $this;
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2009/01/03/zend-studio-for-eclipse-new-framework-project-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.7.0 Released</title>
		<link>http://bombdiggity.net/blog/2008/11/19/zend-framework-170-released/</link>
		<comments>http://bombdiggity.net/blog/2008/11/19/zend-framework-170-released/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 12:15:54 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IMS]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[zf release]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=52</guid>
		<description><![CDATA[That's right ZF 1.7.0 has been release and it features AMF support, JQuery support, and Twitter support, among numerous other offerings.]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right ZF 1.7.0 has been release and it features <a href="http://framework.zend.com/manual/en/zend.amf.html">AMF support</a>,      <a href="http://framework.zend.com/manual/en/zendx.jquery.html">JQuery support</a>,     and <a href="http://framework.zend.com/manual/en/zend.service.twitter.html">Twitter support</a>,     among numerous other offerings.</p>
<p><strong>According to Matthew Weier O&#8217;Phinney:</strong></p>
<blockquote><p>For this particular release, we tried very hard to leverage the community.     The majority of new features present in 1.7.0 are from community proposals,     or were primarily driven by community contributors. For me, this represents     a milestone: ZF is now at a stage where fewer and fewer core components are     necessary, and the community is able to build off it and add extra value to     the project.</p>
<p><a href="http://weierophinney.net/matthew/archives/195-Zend-Framework-1.7.0-Released.html">Read More »</a></p></blockquote>
<p>I am happy to say that I the Twitter Component was my handy work.  After ZendCon 08 Matthew passed the project off to me as he didn&#8217;t have time to complete it.</p>
<p>I also helped closed about 15 of thoes issues and I&#8217;m still working hard on closing more.  I also look forward to keep working with the community as it&#8217;s one of the strongest framework communities on the web.</p>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2008/11/19/zend-framework-170-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter Service for Zend Framework</title>
		<link>http://bombdiggity.net/blog/2008/11/16/twitter-service-for-zend-framework/</link>
		<comments>http://bombdiggity.net/blog/2008/11/16/twitter-service-for-zend-framework/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 01:05:01 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://www.bombdiggity.net/blog/?p=50</guid>
		<description><![CDATA[After almost 2 months of work I am happy to have Zend_Service_Twitter included into the standard trunk for Zend Framework.  Currently Zend_Service_Twitter is schedule to be included in the 1.7 release.]]></description>
			<content:encoded><![CDATA[<p>Earlier this week I had the extreme pleasure of having my first addition to Zend Framework added to the standard library.  I started working on this component after talking with <a href="http://weierophinney.net/matthew/">Matthew Weier O&#8217;Phinney</a> at ZendCon &#8217;08 where he stated that he didn&#8217;t have time to work on implementing the api for use in with the framework.</p>
<p>Zend_Twitter_Service is currently in the standard trunk for Zend Framework and is scheduled to be released with 1.7.  Please check it out and check back for some examples in the next few days.</p>
]]></content:encoded>
			<wfw:commentRss>http://bombdiggity.net/blog/2008/11/16/twitter-service-for-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
