Drupal 6: Printing Unadulterated Primary Links and all children...

Posted by dcolumbus on Stack Overflow See other posts from Stack Overflow or by dcolumbus
Published on 2010-05-11T00:47:39Z Indexed on 2010/05/11 0:54 UTC
Read the original article Hit count: 262

Filed under:
|
|
|
|

How in the WORLD is possible? I swear, I've read the equivalent of 3 encyclopedias to no avail. I've tried solutions within regions, page.tpl.php and blocks. None of them give me what I need... and I know there are so many other people that need this too!

I've come to the conclusion that I want to print out the menu within my page.tpl.php ... so no block solutions, please.

I want to be able to loop through the primary menu links (AND children) and rewrite the output so that there's no default Drupal class tagging. The closest I've found is this example:

<?php if (is_array($primary_links)) : ?>
<ul id="sliding-navigation">
<?php foreach ($primary_links as $link): ?>
<li class="sliding-element"><?php        
        $href = $link['href'] == "<front>" ? base_path() : base_path() . drupal_get_path_alias($link['href']);
        print "<a href='" . $href . "'>" . $link['title'] . "</a>";            
        ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>

As you can see, links are being reprinted with a custom UL and LI class ... that's GREAT! However, no children are being printed. How would I extend this code so that all children are a part of the list? NOTE: I don't want the children to only appear on their parent page, they must be present all the time. Otherwise, the drop-down menu I have planned is useless.

I sincerely thank you in advance to lessening my gargantuan headache!

© Stack Overflow or respective owner

Related posts about drupal

Related posts about drupal-6