Page 1 of 1

XML Structure for Subsubmenu

Posted: Mon Oct 29, 2007 5:59 pm
by skiordie
Hi,

the normal xml code for a submenu in admin backend looks like this:

Code: Select all

<menu>NameOfMenu</menu>
		<submenu>
			<menu task="mytask">NameOfMenu</menu>			
                        <menu task="mytask">NameOfMenu</menu>
                </submenu>
So what is the code for more layers? I thought something like this:

Code: Select all

<menu>NameOfMenu</menu>
		<submenu>
			<menu task="mytask">NameOfMenu</menu>			
         		    <submenu>
			             <menu task="mytask">NameOfMenu</menu>			
                                     <menu task="mytask">NameOfMenu</menu>
			             <menu task="mytask">NameOfMenu</menu>			
                                     <menu task="mytask">NameOfMenu</menu>
                            </submenu>
                        <menu task="mytask">NameOfMenu</menu>
                </submenu>
But this didn't work. Joomla version is 1.0.13...

Thank you for any advice,
Tom

Re: XML Structure for Subsubmenu

Posted: Tue Oct 30, 2007 2:21 pm
by skiordie
Hi,

I also searched for the word "submenu" with zend code searching tool, but I didn't find it in any file. My idea was to look for the procedure, which processes the xml file. Maybe the search tool did not work correctly...

Tom