Questions tagged [zend-navigation]

Zend_Navigation is a component for managing trees of pointers to web pages , on Zend Framework

Zend\Navigation is a component for managing trees of pointers to web pages.

Simply put: It can be used for creating menus, breadcrumbs, links, and sitemaps, or serve as a model for other navigation related purposes.

Source

201 questions
0
votes
1 answer

Zend_Navigation extending Menu class

Issue I really need to extend Zend_View_Helper_Navigation_Menu for my custom behaviour of its methods. I use modules if it's important for you to know. Some solutions How do I extend the Zend Navigation Menu View…
dbq
  • 111
  • 2
  • 11
0
votes
1 answer

Linking Zend_Acl with Zend_Navigation

I want Navigation to show only items allowed by Acl, but I have problems linking Navigation with Acl - when I do it, like it is shown in the official example or some other resources on the internet, my navigation still shows all the items like…
bogatyrjov
  • 5,317
  • 9
  • 37
  • 61
0
votes
1 answer

Configure Zend_Navigation with two actions activating one menu item?

I'm in a situation where I have a Zend_Navigation menu defined in XML. In the menu, the design requires a single page for displaying user data. Administrators may view other users' data. Because there are subtle differences in the data displayed and…
Andrew Plank
  • 942
  • 10
  • 22
0
votes
2 answers

Zend_Navigation Sitemap not generating

I'm currently creating a project management system with the Zend Framework 1.12 and I got a problem with the Zend_Navigation::Sitemap() method. I have a controller named SitemapController with indexAction() inside it who disable the layout. Then, my…
Frederick Marcoux
  • 2,195
  • 1
  • 26
  • 57
0
votes
1 answer

Remove Home element from navigation in Zend_Navigation

Can I remove the Home element from the XML file containing menus.
Seif
  • 51
  • 1
  • 6
0
votes
2 answers

zf2 cant render partial navigation

I'm trying to do ` $partial = array(DIR.'/menu.phtml', 'default'); echo $this->navigation()->menu()->setPartial($partial);` and im getting error Fatal error: Zend\View\Exception\RuntimeException: Zend\View\Renderer\PhpRenderer::render: Unable to…
Cawa
  • 1,269
  • 3
  • 25
  • 44
0
votes
1 answer

Zend Navigation with Smarty

I want to create breadscrumb in Smarty template using Zend_Navigation. So far what I did: $config = new Zend_Config_Xml(APPLICATION_PATH.'/configs/navigation.xml'); $navigation = new Zend_Navigation($config); How do I use $navigation in the…
Khaled
  • 19
  • 2
0
votes
1 answer

Zend_Acl and Zend_Navigation not working with module name as resource

I have setup Zend_Acl to work like this: $acl->addRole(new Zend_Acl_Role('admin')); $acl->addRole(new Zend_Acl_Role('user')); $acl->add(new Zend_Acl_Resource('frontoffice')); $acl->add(new…
rbnvrw
  • 347
  • 3
  • 15
0
votes
1 answer

Zend Navigation: defining an active branch for an action which is utside the navigation hierarchy

I have a presistent requirement which causes me problems when using Zend Navigation. A simplified example would be a system which has a database entity like "albums", for which the user needs a "list", "add", "edit" and "delete" page. The "list" and…
NaNuk
  • 141
  • 9
0
votes
0 answers

Zend navigation object empty in view phtml

I have a module based application with a default and a user module. My Navigation menu which is called from the layout is working fine, but now want to create a sidemenu. I would like to call it from the e.g. language.phtml in…
Sephen
  • 1,111
  • 3
  • 16
  • 38
0
votes
3 answers

Zend Menu extend

I'm working on a website with a "normal" menu and a submenu. This is the method in the bootstrap which is resonsible for the navigation: Bootstrap.php protected function _initNavigation() { $view = $this->getResource('view'); …
ivodvb
  • 1,164
  • 2
  • 12
  • 39
0
votes
1 answer

Zend Navigation setting language parameter for route doesnt reflect in app

I have a zend xml config like so: sitepage
0
votes
1 answer

Zend Navigation - Rendering a submenu

I define all my pages in a XML file like the following:
Benni
  • 13
  • 2
  • 4
0
votes
1 answer

How to create Zend_Navigation on some part of the site - ZF 1.11.11

I am very new with zend and I want to build a navigational menu on some part of my site - let's say I have 20 pages but i just want to create a menu of 5 items and visible only for 4 pages. This might be a silly question but Is there a way to make…
Jick Lee
  • 989
  • 1
  • 6
  • 8
0
votes
4 answers

zend navigation single level menu using xml file

With zend framework how do i create a single level menu? I followed a tutorial and the person created a two level dropdown menu. I want to just remove home. I've modified the navigation.xml file a couple times and it caused a fatal error. What xml…
chrisjlee
  • 21,691
  • 27
  • 82
  • 112
1 2 3
13
14