Problem with an advanced side menu

Author Message

christian bencivenni

Thursday 03 January 2008 12:35:08 am

Hi.
I trying to make a new left menu with advanced function but I found a problem.
I want a menu with a first level equal to top menu so I used come code from the flat_top.tpl menu.
The complete code is:

{def  $root_node=fetch( 'content', 'node', hash( 'node_id', $indexpage ) )
       $top_menu_items=fetch( 'content', 'list', hash( 
               'parent_node_id', $root_node.node_id,
               'sort_by', $root_node.sort_array,
               'class_filter_type', 'include',
               'class_filter_array', ezini( 'MenuContentSettings', 'TopIdentifierList', 'menu.ini' ) ) )
       $top_menu_items_count = $top_menu_items|count()
       $item_class = array()
       $current_node_in_path = cond(and($current_node_id, 
          gt($module_result.path|count,$pagerootdepth)), 
           $module_result.path[$pagerootdepth].node_id, 0  )}
{set $pagerootdepth = $root_node.depth}

{if $top_menu_items_count}
{foreach $top_menu_items as $key => $item}

  {set $item_class = cond($current_node_in_path|eq($item.node_id), array("selected"),array())}
  <li>
    <a href="#">{$item.name|wash()}</a>
    <ul>
        {def $inner_nodes=fetch( 'content', 'list', hash( 'parent_node_id', $item.node_id ) )}
        {foreach $inner_nodes as $node}
          <li><a href="{$node.url}">{$node.name|wash()}</a></li>	
        {/foreach}
  </ul>
</li>

{/foreach}
{/if}

For the first level menu is all ok and from main page the link works correctly.
The problem born when I navigate the site.
For example if I have an article named Article in home/events/article from the main page the link is good and is something like:

http://www.mydomain.com/index.php/eng/events/article

but if i'm viewing another article in the Events folder the link is:

http://www.mydomain.com/index.php/eng/events/events/article

Someone can tell me why? And how to block this error?
Thank you in advance

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 19 2025 21:26:02
Script start
Timing: Jan 19 2025 21:26:02
Module start 'layout'
Timing: Jan 19 2025 21:26:02
Module start 'content'
Timing: Jan 19 2025 21:26:02
Module end 'content'
Timing: Jan 19 2025 21:26:02
Script end

Main resources:

Total runtime0.0201 sec
Peak memory usage2,048.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0085 589.2578152.6250
Module start 'layout' 0.00850.0033 741.882839.4453
Module start 'content' 0.01170.0063 781.328189.3516
Module end 'content' 0.01800.0020 870.679730.3047
Script end 0.0200  900.9844 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.002713.6098140.0002
Check MTime0.00115.5373140.0001
Mysql Total
Database connection0.00104.900310.0010
Mysqli_queries0.004623.040730.0015
Looping result0.00000.240110.0000
Template Total0.00167.910.0016
Template load0.00094.386810.0009
Template processing0.00073.494310.0007
Override
Cache load0.00062.921410.0006
General
dbfile0.002110.339080.0003
String conversion0.00000.049940.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs