XML Structure for Subsubmenu

Have a programming question regarding your component, plug-in, extension or core hacks? Have an interesting tidbit, FAQ or programming tip you’d like to share? This is the place for you.

Moderators: tjay, seadap, Rogue4ngel, matthewhayashida

Post Reply
skiordie
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Sun Sep 25, 2005 11:35 am

XML Structure for Subsubmenu

Post by skiordie » Mon Oct 29, 2007 5:59 pm

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

skiordie
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Sun Sep 25, 2005 11:35 am

Re: XML Structure for Subsubmenu

Post by skiordie » Tue Oct 30, 2007 2:21 pm

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


Post Reply