<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Per Module Zend_Layout</title>
	<atom:link href="http://dustint.com/archives/28/feed" rel="self" type="application/rss+xml" />
	<link>http://dustint.com/archives/28</link>
	<description>Tales Of A (Former) SFU Computing Scientist</description>
	<lastBuildDate>Sun, 05 Sep 2010 16:05:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: patrickburke.de &#124; Blog</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-338</link>
		<dc:creator>patrickburke.de &#124; Blog</dc:creator>
		<pubDate>Sun, 05 Sep 2010 16:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-338</guid>
		<description>[...] kurze Google Suche ergab, dass man sich einfach ein Front Controller Plugin schreiben kann, das vor dem Dispatchen abhängig [...]</description>
		<content:encoded><![CDATA[<p>[...] kurze Google Suche ergab, dass man sich einfach ein Front Controller Plugin schreiben kann, das vor dem Dispatchen abhängig [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seif</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-324</link>
		<dc:creator>Seif</dc:creator>
		<pubDate>Fri, 23 Jul 2010 22:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-324</guid>
		<description>well , it&#039;s a very clean , perfect and easy solution
I was searching all the day and this is the best solution
Thank you</description>
		<content:encoded><![CDATA[<p>well , it&#8217;s a very clean , perfect and easy solution<br />
I was searching all the day and this is the best solution<br />
Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-276</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Sun, 23 May 2010 06:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-276</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-275&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-275&quot; rel=&quot;nofollow&quot;&gt;behrang&lt;/a&gt; :&lt;/strong&gt;
          &lt;p&gt;Hi. I am newbie to Zend Framework I really need this but my problem is unfortunately I don’t know where to put the above code please explain actually path and file name.&lt;/p&gt;
         &lt;/blockquote&gt;
Now that there is the Zend_application Component, the plugin registration should be done in the Bootstrap Class File. The actual plugin file should be placed somewhere where the Autoloader will find it, or it can be directly required using require_once. 

For more info, please see the Zend Framework documentation at http://framework.zend.com/manual/en/zend.controller.plugins.html

I haven&#039;t tried this code on the newer versions of Zend. can anyone confirm its working?</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-275"><p>
<strong><a href="#comment-275" rel="nofollow">behrang</a> :</strong></p>
<p>Hi. I am newbie to Zend Framework I really need this but my problem is unfortunately I don’t know where to put the above code please explain actually path and file name.</p>
</blockquote>
<p>Now that there is the Zend_application Component, the plugin registration should be done in the Bootstrap Class File. The actual plugin file should be placed somewhere where the Autoloader will find it, or it can be directly required using require_once. </p>
<p>For more info, please see the Zend Framework documentation at <a href="http://framework.zend.com/manual/en/zend.controller.plugins.html" rel="nofollow">http://framework.zend.com/manual/en/zend.controller.plugins.html</a></p>
<p>I haven&#8217;t tried this code on the newer versions of Zend. can anyone confirm its working?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: behrang</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-275</link>
		<dc:creator>behrang</dc:creator>
		<pubDate>Sun, 23 May 2010 05:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-275</guid>
		<description>Hi. I am newbie to Zend Framework I really need this but my problem is unfortunately I don&#039;t know where to put the above code please explain actually path and file name.</description>
		<content:encoded><![CDATA[<p>Hi. I am newbie to Zend Framework I really need this but my problem is unfortunately I don&#8217;t know where to put the above code please explain actually path and file name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DA</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-179</link>
		<dc:creator>DA</dc:creator>
		<pubDate>Mon, 19 Oct 2009 09:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-179</guid>
		<description>I did the following:

created a LayoutPlugin.php in the modules folder.
included that into the public/index.php
/setup the layout
Zend_Layout::startMvc(array(
‘layoutPath’ =&gt; APPLICATION_PATH . ‘modules/default/layouts/scripts’,
‘layout’ =&gt; ‘layout’
));

$layoutModulePlugin = new Module_LayoutPlugin();
$layoutModulePlugin-&gt;registerModuleLayout(’admin’,’../application/admin/layouts’);

$controller-&gt;registerPlugin($layoutModulePlugin);

and it keeps giving me an error

Fatal error: Class &#039;Zend_Controller_Front&#039; not found in C:\wamp\www\project\public\index.php on line 20</description>
		<content:encoded><![CDATA[<p>I did the following:</p>
<p>created a LayoutPlugin.php in the modules folder.<br />
included that into the public/index.php<br />
/setup the layout<br />
Zend_Layout::startMvc(array(<br />
‘layoutPath’ =&gt; APPLICATION_PATH . ‘modules/default/layouts/scripts’,<br />
‘layout’ =&gt; ‘layout’<br />
));</p>
<p>$layoutModulePlugin = new Module_LayoutPlugin();<br />
$layoutModulePlugin-&gt;registerModuleLayout(’admin’,’../application/admin/layouts’);</p>
<p>$controller-&gt;registerPlugin($layoutModulePlugin);</p>
<p>and it keeps giving me an error</p>
<p>Fatal error: Class &#8216;Zend_Controller_Front&#8217; not found in C:\wamp\www\project\public\index.php on line 20</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EM</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-174</link>
		<dc:creator>EM</dc:creator>
		<pubDate>Mon, 05 Oct 2009 21:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-174</guid>
		<description>Thanks - it was easy to follow.</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; it was easy to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deitrich Zook</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-110</link>
		<dc:creator>Deitrich Zook</dc:creator>
		<pubDate>Wed, 16 Sep 2009 04:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-110</guid>
		<description>Thanks for showing the short simple way and the more extensive way using individual layouts for various modules.   I am going to use the simple way for the time being as I only have one controller in the new module that needs a custom layout.  

For anyone wanting an example based on this one, there is an example here:
http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/disable-layout-entire-module-1723.html</description>
		<content:encoded><![CDATA[<p>Thanks for showing the short simple way and the more extensive way using individual layouts for various modules.   I am going to use the simple way for the time being as I only have one controller in the new module that needs a custom layout.  </p>
<p>For anyone wanting an example based on this one, there is an example here:<br />
<a href="http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/disable-layout-entire-module-1723.html" rel="nofollow">http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/disable-layout-entire-module-1723.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gites France</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-77</link>
		<dc:creator>Gites France</dc:creator>
		<pubDate>Fri, 07 Aug 2009 10:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-77</guid>
		<description>Thanks - it was easy to follow.</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; it was easy to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Chen</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-65</link>
		<dc:creator>Andrew Chen</dc:creator>
		<pubDate>Tue, 28 Jul 2009 01:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-65</guid>
		<description>hello! How do I get ahold of you? I&#039;d like to talk more.

Here&#039;s my bio: http://andrewchenblog.com/about/

Write me back at voodoo at gmail, please. Thanks.</description>
		<content:encoded><![CDATA[<p>hello! How do I get ahold of you? I&#8217;d like to talk more.</p>
<p>Here&#8217;s my bio: <a href="http://andrewchenblog.com/about/" rel="nofollow">http://andrewchenblog.com/about/</a></p>
<p>Write me back at voodoo at gmail, please. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zend_Layout: Layouts pro Modul &#124; patrickburke.de</title>
		<link>http://dustint.com/archives/28/comment-page-1#comment-64</link>
		<dc:creator>Zend_Layout: Layouts pro Modul &#124; patrickburke.de</dc:creator>
		<pubDate>Fri, 24 Jul 2009 16:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://dustint.com/?p=28#comment-64</guid>
		<description>[...] kurze Google Suche ergab, dass man sich einfach ein Front Controller Plugin schreiben kann, das vor dem Dispatchen abhängig [...]</description>
		<content:encoded><![CDATA[<p>[...] kurze Google Suche ergab, dass man sich einfach ein Front Controller Plugin schreiben kann, das vor dem Dispatchen abhängig [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
