Hi

 

I want to do dynamic navigation based on the module name:

 

i.e.:

 

// Process the Navigation links

foreach ($array_navigation['tabs'][MODULE NAME]['links'] as $k => $v) {

    echo '<li id="menu_' . $this->escape($v) . '"><a href="' .

      $this->escape($v) . '" title="' . $this->escape($k) . '">' .

      $this->escape($k) . '</a></li>';

}

 

This is based in the main site_template - how do I draw out the module name,
basically whats the call in Zend to extract this information - I can see in
Zend::Dump there is a reference to _curModule

 

Cheers

 

Ian

Reply via email to