[Typo3] Question about integration of Catmenu into Page
Boris
borisp at genion.de
Thu Sep 22 18:13:36 CEST 2005
Hi there,
I´d like to integrate a Category-Menu (i.e. fom rtt_news) into a normal
Page-Menu, respectively to inherit the Category-Menu at a certain level.
Regarding to this issue I thought of the ".special"-Property but I got a
new Problem: I can use the CATMENU or just create a complete new own
Page-Menu, but at both the result is that the menu is a completely opened.
Now I´m stuck in the following three questions:
a) Is there a possibility to integrate a CATMENU into a Page-Menu?
b) How to design an own defined menu "hinged"?
c) How to configure the CATMENU "hinged" too?
To your Info:
The self-defined menu is realized while using the ".special =
userfunction" / ".special.userFunc" - Property of HMENU and we tested
with the following example function:
function makeMenuArray($marray,$conf) {
return array(
array(
'title' => 'Page1',
'_OVERRIDE_HREF' => 'index.php?id=10',
'_SUB_MENU' => array(
array(
'title' => 'Page11',
'_OVERRIDE_HREF' => 'index.php?id=11',
'ITEM_STATE' => 'ACT',
'_SUB_MENU' => array(
array(
'title' => 'Page111',
'_OVERRIDE_HREF' => 'index.php?id=11',
),
array(
'title' => 'Page112',
'_OVERRIDE_HREF' => 'index.php?id=12',
),
array(
'title' => 'Page113',
'_OVERRIDE_HREF' => 'http://www.google.com',
'_OVERRIDE_TARGET' => '_blank',
)
)
),
array(
'title' => 'Page12',
'_OVERRIDE_HREF' => 'index.php?id=13,
),
array(
'title' => 'Page13',
'_OVERRIDE_HREF' => 'index.php?id=14',
),
),
),
array(
'title' => 'Page2',
'_OVERRIDE_HREF' => 'index.php?id=15',
)
);
}
If someone could help me out of this misery I´d be very thankful.
More information about the TYPO3-english
mailing list