views:

52

answers:

1

I wanna give more than one links by using Zend_Navigation in the one page...

for example

like this,

 echo $this->navigation()->topmenu(); 
 echo $this->navigation()->menu(); 
 echo $this->navigation()->footermenu();

but I couldnt do that ...

When I use like following code just works this one

echo $this->navigation()->menu();

I use like following codes.

 $container = new Zend_Config_Xml(APPLICATION_PATH .'/configs/navigation.xml' 'nav_top');   

 $navigation = new Zend_Navigation($container);
            $view->navigation($navigation);

How can I create different links in the same page...

A: 

Answered here.

berty