<?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>TYPO3-Addict &#187; Menu</title>
	<atom:link href="http://www.typo3-addict.com/tag/menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.typo3-addict.com</link>
	<description>For those addicted to TYPO3</description>
	<lastBuildDate>Wed, 02 Jun 2010 13:03:58 +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>TYPO3: Logout menu button</title>
		<link>http://www.typo3-addict.com/2008/12/logout-menu-button/</link>
		<comments>http://www.typo3-addict.com/2008/12/logout-menu-button/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 06:04:40 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Menu]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=193</guid>
		<description><![CDATA[The default loginbox shows you a form to logout as a FE-user. If you&#8217;d like a menu button instead you can use to following method: 1) Create a new page &#8211; choose pagetype External URL 2) Use to following URL: www.YOURURL.com/index.php?id=YOUR-HOMEPAGE-ID&#38;logintype=logout]]></description>
			<content:encoded><![CDATA[<p>The default loginbox shows you a form to logout as a FE-user. If you&#8217;d like a menu button instead you can use to following method:</p>
<p>1) Create a new page &#8211; choose pagetype External URL</p>
<p>2) Use to following URL: www.<strong>YOURURL</strong>.com/index.php?id=<strong>YOUR-HOMEPAGE-ID</strong>&amp;logintype=logout</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/12/logout-menu-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: A language menu</title>
		<link>http://www.typo3-addict.com/2008/11/a-language-menu/</link>
		<comments>http://www.typo3-addict.com/2008/11/a-language-menu/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 18:36:45 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://blog.emaux.nl/?p=133</guid>
		<description><![CDATA[Here&#8217;s a snippet for a nice language menu&#8230; temp.languagemenu = COA temp.languagemenu.wrap = &#60;div id="language"&#62; &#124; &#60;/div&#62; temp.languagemenu.10 = HMENU temp.languagemenu.10 { special=language special.value = 0,1,2,3 1 = TMENU 1 { wrap = &#60;ul&#62;&#124;&#60;/ul&#62; NO = 1 NO { stdWrap.cObject = TEXT stdWrap.cObject { value = Default Language (id=0) &#124;&#124; Language with id=1 &#124;&#124; Language [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a snippet for a nice language menu&#8230;</p>
<pre>
temp.languagemenu = COA
temp.languagemenu.wrap = &lt;div id="language"&gt; | &lt;/div&gt;
temp.languagemenu.10 = HMENU
temp.languagemenu.10 {
special=language
special.value = 0,1,2,3
1 = TMENU
1 {
wrap = &lt;ul&gt;|&lt;/ul&gt;
NO = 1
NO {
stdWrap.cObject = TEXT
stdWrap.cObject {
value = Default Language (id=0) || Language with id=1 ||  Language with id=2 ||  Language with id=3
}
allWrap = &lt;li&gt;|&lt;/li&gt;
}
ACT &lt; .NO
ACT {
allWrap = &lt;li class="ACT"&gt;|&lt;/li&gt;
}
}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/11/a-language-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3: A really simple and basic menu</title>
		<link>http://www.typo3-addict.com/2008/09/a-really-simple-menu/</link>
		<comments>http://www.typo3-addict.com/2008/09/a-really-simple-menu/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 21:35:33 +0000</pubDate>
		<dc:creator>Maarten</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://blog.mmwebdesign.eu/?p=40</guid>
		<description><![CDATA[This is probably the most simple way to add a dynamic menu to your TYPO3 website. Just put the code into the Typoscript setup and parse temp.menu through the autoparser. temp.menu = HMENU temp.menu.1 = TMENU temp.menu.1 { NO.ATagBeforeWrap = 1 } Now you have a menu with nothing more than just an anchor tag.]]></description>
			<content:encoded><![CDATA[<p>This is probably the most simple way to add a dynamic menu to your TYPO3 website. Just put the code into the Typoscript setup and parse temp.menu through the autoparser.</p>
<pre lang="css">temp.menu = HMENU
temp.menu.1 = TMENU
temp.menu.1 {
NO.ATagBeforeWrap = 1
}</pre>
<p>Now you have a menu with nothing more than just an anchor tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typo3-addict.com/2008/09/a-really-simple-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
