donators

n@work Internet Informationssysteme GmbHYour ad here

sponsors

Advertising

Create a pathmenu

By: Thomas

10.01.06 16:23 Age: 5 yrs

The users should be able to navigate easily backwards in the strcuture. How can I create a pathmenu for this?

To create a pathmenu you do this with this TypoScript for example. You have to insert it into the setup field of your page-template.

  1.  
  2. temp.PATHMENU = HMENU
  3. temp.PATHMENU {
  4.   special = rootline
  5.   special.range = 0|-1
  6.   1 = TMENU
  7.   1 {
  8.     wrap = |
  9.     NO.linkWrap = | > 
  10.     CUR < .NO
  11.     CUR = 1
  12.     CUR {
  13.       doNotLinkIt = 1
  14.       linkWrap = |
  15.     }
  16.   }
  17. }
  18.  

To insert it to your page assign it to the corresponding marker in your design-template:

  1.  
  2. page.10.marks.PATH < temp.PATHMENU
  3.  

Thanks to Frank Nägler who send me some corrections.

Found a mistake?

If you found a mistake or if you have a good tip or suggestion, please contact me at thomas(at)typo3-unleashed.net. I will check it and correct the entry or insert the new one.

Thanks in advance for your help.