<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>HackIX &#187; plugin</title>
	<atom:link href="http://blog.hackix.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hackix.com</link>
	<description>HackIX: Small Hacks for a Large World</description>
	<lastBuildDate>Thu, 19 Jan 2012 12:50:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<image>
<link>http://blog.hackix.com</link>
<url>http://blog.hackix.com/wp-content/cbnet-favicon/favicon(5).ico</url>
<title>HackIX</title>
</image>
		<item>
		<title>Understanding the stack index for Zend Framework Controller plugins</title>
		<link>http://blog.hackix.com/2010/07/understanding-the-stack-index-for-zend-framework-controller-plugins/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2010/07/understanding-the-stack-index-for-zend-framework-controller-plugins/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 11:24:06 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Stack]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=604</guid>
		<description><![CDATA[Simon R Jones writes a very helpful article about the stack index (the order you fire plugins) and how to customize it;
Zend Framework Controller plugins are a powerful way to inject logic  into your controller system at various points, such as before and after  an action dispatch. Plugins are run in the order [...]]]></description>
		<wfw:commentRss>http://blog.hackix.com/2010/07/understanding-the-stack-index-for-zend-framework-controller-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework: Module Specific Layout Plugin</title>
		<link>http://blog.hackix.com/2010/04/zend-framework-module-specific-layout-plugin/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2010/04/zend-framework-module-specific-layout-plugin/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 11:02:24 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Module]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=525</guid>
		<description><![CDATA[Graham Anderson posted an useful workaround for the module specific layout problem;
The default layout plugin will accept a stack of paths in LIFO order.
This allows a very simple hack to always ensure that any module can have it’s own default layout which will automatically override the default module layout.

class App_Controller_Plugin_Layout extends Zend_Controller_Plugin_Layout {
   [...]]]></description>
		<wfw:commentRss>http://blog.hackix.com/2010/04/zend-framework-module-specific-layout-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zend Framework MVC Request Lifecycle</title>
		<link>http://blog.hackix.com/2010/03/zend-framework-mvc-request-lifecycle/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2010/03/zend-framework-mvc-request-lifecycle/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 18:55:41 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=476</guid>
		<description><![CDATA[Kevin Schroeder writes an excellent article about the MVC lifecycle thats a must read for anyone even thinking about writing ZF plugins; Matthew wrote up an article on modules in Zend_Application and that got me thinking a little bit.  When I have done training for Zend Framework, one of the things that mystifies students [...]]]></description>
		<wfw:commentRss>http://blog.hackix.com/2010/03/zend-framework-mvc-request-lifecycle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>App_Controller_Helper_Params for JSON and XML POSTs</title>
		<link>http://blog.hackix.com/2010/02/app_controller_helper_params-for-json-and-xml-posts/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2010/02/app_controller_helper_params-for-json-and-xml-posts/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:29:29 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Controller Helper]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=403</guid>
		<description><![CDATA[Matthew Weier O’Phinney shares a bit of very useful code to inject request params into a Zend Framework request object from a JSON or XML POST request.
“Below is a plugin I use to translate JSON or XML raw post request data to request user parameters.
Note that it expects a “Content-Type” header of either “application/json” or [...]]]></description>
		<wfw:commentRss>http://blog.hackix.com/2010/02/app_controller_helper_params-for-json-and-xml-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping your HTML valid with Zend Framework, Tidy and Firebug</title>
		<link>http://blog.hackix.com/2010/01/keeping-your-html-valid-with-zend-framework-tidy-and-firebug/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2010/01/keeping-your-html-valid-with-zend-framework-tidy-and-firebug/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 13:17:52 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Useful Tools]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[FireBug]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Tidy]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=393</guid>
		<description><![CDATA[Ryan Mauger wrote a good article on tidying things behind the scenes, during development, definitely worth a look;
With Zend Framework there is an easy way to ensure that you always create valid HTML in your applications. This involves the use of a simple Front Controller Plugin, and the php Tidy component.
Valid HTML is important for [...]]]></description>
		<wfw:commentRss>http://blog.hackix.com/2010/01/keeping-your-html-valid-with-zend-framework-tidy-and-firebug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootstrapping Zend_Translate with a LangSelector Plugin</title>
		<link>http://blog.hackix.com/2010/01/bootstrapping-zend_translate-with-a-langselector-plugin/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2010/01/bootstrapping-zend_translate-with-a-langselector-plugin/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 16:31:06 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Translation]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[poedit]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Zend_Locale]]></category>
		<category><![CDATA[Zend_Registry]]></category>
		<category><![CDATA[Zend_Session]]></category>
		<category><![CDATA[Zend_Translate]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=307</guid>
		<description><![CDATA[As an update to the method of hav­ing every­thing related to Zend_Translate and Zend_Locale in the Boot­strap, here is an alter­na­tive using an Con­troller Plu­gin that does the grunt work of val­i­dat­ing, select­ing and updat­ing the Zend_Locale, Zend_Registry &#038; Zend_Session using Zend_Session_Namespace. And we are using poedit .po &#038; .mo files as the source as usual.]]></description>
		<wfw:commentRss>http://blog.hackix.com/2010/01/bootstrapping-zend_translate-with-a-langselector-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<series:name><![CDATA[Working with Zend_Translate and Poedit]]></series:name>
	</item>
		<item>
		<title>Converting your Zend Framework MVC application into an XML webservice using one single plugin</title>
		<link>http://blog.hackix.com/2009/05/converting-your-zend-framework-mvc-application-into-an-xml-webservice-using-one-single-plugin/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blog.hackix.com/2009/05/converting-your-zend-framework-mvc-application-into-an-xml-webservice-using-one-single-plugin/#comments</comments>
		<pubDate>Tue, 26 May 2009 14:00:42 +0000</pubDate>
		<dc:creator>Danny Froberg</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[REST]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.hackix.com/?p=33</guid>
		<description><![CDATA[<a href="http://blog.feryn.eu/about-me/" target="_blank" class="liexternal">Thijs Feryn</a> writes an excellent article on how to convert your entire MVC app or one or more controllers into a XML service. I actually have this one in a production environment and it works like a charm.

That’s right folks, in this blog post I’ll show you how you can convert your entire MVC application into a REST-style XML webservice. And I’m not talking about refactoring tons of code … NO, we’ll plug this option in without changing a single thing to your action controllers.]]></description>
		<wfw:commentRss>http://blog.hackix.com/2009/05/converting-your-zend-framework-mvc-application-into-an-xml-webservice-using-one-single-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

