<?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: Dynamically add pages to Zend_Navigation container at runtime</title>
	<atom:link href="http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/</link>
	<description>The website of Steven Lloyd Watkin</description>
	<lastBuildDate>Wed, 04 Jan 2012 14:02:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Steven Lloyd Watkin</title>
		<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/comment-page-1/#comment-7714</link>
		<dc:creator>Steven Lloyd Watkin</dc:creator>
		<pubDate>Mon, 16 May 2011 12:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.evilprofessor.co.uk/?p=236#comment-7714</guid>
		<description>Ensure your module model is named correctly &lt;Module&gt;_News (for example) and it should pick up using autoloading.</description>
		<content:encoded><![CDATA[<p>Ensure your module model is named correctly <module>_News (for example) and it should pick up using autoloading.</module></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A387</title>
		<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/comment-page-1/#comment-7713</link>
		<dc:creator>A387</dc:creator>
		<pubDate>Mon, 16 May 2011 12:36:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.evilprofessor.co.uk/?p=236#comment-7713</guid>
		<description>Well I use modules, my bad. But you suggest autoloading should work? Well, I&#039;ve to dig into it a bit deeper. At the moment I use the addPage function in the BaseControllers, which is not really performance friendly...hehe. Thanks for your reply.</description>
		<content:encoded><![CDATA[<p>Well I use modules, my bad. But you suggest autoloading should work? Well, I&#8217;ve to dig into it a bit deeper. At the moment I use the addPage function in the BaseControllers, which is not really performance friendly&#8230;hehe. Thanks for your reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Lloyd Watkin</title>
		<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/comment-page-1/#comment-7711</link>
		<dc:creator>Steven Lloyd Watkin</dc:creator>
		<pubDate>Mon, 16 May 2011 11:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.evilprofessor.co.uk/?p=236#comment-7711</guid>
		<description>My model was edited for the post, its correct name in the code is Pro_News and is picked up by the autoloader.

Guessing you’re not using modules? But if so your model should be called _News for ZF to pick up by default (I don’t use this system myself).

I’d suggest checking the include path from your bootstrap method to see if it contains “application/models” or include the file manually.</description>
		<content:encoded><![CDATA[<p>My model was edited for the post, its correct name in the code is Pro_News and is picked up by the autoloader.</p>
<p>Guessing you’re not using modules? But if so your model should be called _News for ZF to pick up by default (I don’t use this system myself).</p>
<p>I’d suggest checking the include path from your bootstrap method to see if it contains “application/models” or include the file manually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Lloyd Watkin</title>
		<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/comment-page-1/#comment-7710</link>
		<dc:creator>Steven Lloyd Watkin</dc:creator>
		<pubDate>Mon, 16 May 2011 11:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.evilprofessor.co.uk/?p=236#comment-7710</guid>
		<description>My model was edited for the post, its correct name in the code is Pro_News and is picked up by the autoloader.

Guessing you&#039;re not using modules? But if so your model should be called &lt;Module&gt;_News for ZF to pick up by default (I don&#039;t use this system myself).

I&#039;d suggest checking the include path from your bootstrap method to see if it contains &quot;application/models&quot; or include the file manually.</description>
		<content:encoded><![CDATA[<p>My model was edited for the post, its correct name in the code is Pro_News and is picked up by the autoloader.</p>
<p>Guessing you&#8217;re not using modules? But if so your model should be called <module>_News for ZF to pick up by default (I don&#8217;t use this system myself).</p>
<p>I&#8217;d suggest checking the include path from your bootstrap method to see if it contains &#8220;application/models&#8221; or include the file manually.</module></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A387</title>
		<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/comment-page-1/#comment-7709</link>
		<dc:creator>A387</dc:creator>
		<pubDate>Mon, 16 May 2011 11:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.evilprofessor.co.uk/?p=236#comment-7709</guid>
		<description>Nice post! I&#039;ve some trouble initiating a model class in the bootstrap. Any clue why application/model classes are not available from the bootstrap? Your class is called &#039;new News()&#039;, instead I&#039;d like to add the navigation pages by getting a navigation tree from a model class. If you have an idea, please let me know! ;)</description>
		<content:encoded><![CDATA[<p>Nice post! I&#8217;ve some trouble initiating a model class in the bootstrap. Any clue why application/model classes are not available from the bootstrap? Your class is called &#8216;new News()&#8217;, instead I&#8217;d like to add the navigation pages by getting a navigation tree from a model class. If you have an idea, please let me know! ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr Man</title>
		<link>http://www.evilprofessor.co.uk/236-dynamically-add-pages-to-zend_navigation-container-at-runtime/comment-page-1/#comment-2414</link>
		<dc:creator>Mr Man</dc:creator>
		<pubDate>Sun, 07 Nov 2010 11:44:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.evilprofessor.co.uk/?p=236#comment-2414</guid>
		<description>That&#039;s just what i was looking for - thanks for a really clear example. Cheers. G</description>
		<content:encoded><![CDATA[<p>That&#8217;s just what i was looking for &#8211; thanks for a really clear example. Cheers. G</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
