Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

Zend_Translate - Zend_Navigation and Routing combination problem!

I'm having some difficulties with the combination of Zend_Navigation, Zend_Translate and the routing needed. My site navigation is done through Zend_Navigation based on and XML file. I've now added ...
5
votes
2answers
273 views

Where should I populate my Zend_Navigation container?

Where in my application should I define my top level and lower-level pages for use by Zend Navigation? My top level navigation bar view helper is going to be separate from the view helper that ...
5
votes
2answers
553 views

PHP RecursiveIteratorIterator: Determining first and last item at each branch level

I have extended Zend_View_Helper_Navigation_Menu, and it uses a RecursiveIteratorIterator to iterate over the menu tree. What I want to be able to determine is whether I am on the first or last item ...
4
votes
1answer
229 views

Zend navigation with XML file

<configdata> <home> <label>Home</label> <controller>dashboard</controller> <action>index</action> </home> <accounts> ...
4
votes
2answers
1k views

Zend Framework: Hide navigation item in menu by show in breadcrumbs

i am using Zend_Navigation i want to show the nav item in the breadcrumbs but hide it in my menu, how can i do that?
4
votes
2answers
4k views

How do I extend the Zend Navigation Menu View Helper?

I need to change the output of Zend_View_Helper_Navigation_Menu. I've found the two functions that I'll need to modify, and I know how to make the changes I need. What I don't know is how to make ...
3
votes
1answer
79 views

How to render a parent and child active in a menu if they have the same URI and using Zend_Navigation?

Hello I'm digging into this problem without finding a solution. It seems very simple but I turn around for a while. I'm trying to highlight a parent and 1 child in a menu. Both have the same uri, but ...
3
votes
1answer
52 views

Zend_Navigation_Container set separator

Is there a way when using Zend_Navigation to set a separator for pages? For example, I call $this->navigation()->menu() in my view to render a navigation menu in a form of an unordered list. I would ...
3
votes
1answer
102 views

zend navigation breadcrumbs to bypass ACL

I make use of Zend_Navigation and its menu helper and breadcrumbs helper together with Zend_Acl. This all works as expected. But is it possible to ignore the acl on the breadcrumbs only? My goal is ...
3
votes
1answer
195 views

Zend Framework: Initializing Navigation in the Bootstrap

I currently initialize my web site navigation during bootstrap. I initialize anywhere from 1 to 3 navigation objects. Most requests will need the Navigation objects, but some don't. The ones that ...
3
votes
2answers
613 views

Zend Navigation - various navigation blocks

I have a navigation.xml file: <?xml version="1.0" encoding="UTF-8"?> <config> <nav> <programm_nav> <label></label> ...
3
votes
1answer
2k views

Zend Navigation and Zend Router problem - not finding correct active page

Okay. I'm building a CMS with Zend. It isn't as simple as it looked but still — the best solution for me. I have a tree system with ID and PARENT, PARENT marks under which page the child resides. ...
3
votes
1answer
463 views

zend_navigation and modules

I am developing an application at the moment with zend and I have seperated the app into modules. The default module is the main site where unlogged in users access and have free reign to look ...
3
votes
2answers
4k views

Custom rendering of Zend_Navigation

I am using a navigation XML file in conjunction with my Zend Framework MVC app. A top level menu is rendered at the top of my layout. The code to produce it looks like this: ...
2
votes
1answer
189 views

Editable Breadcrumb for Dynamic Pages

Looking for a better Breadcrumb solution for a Zend Framework project. Currently I have a navigation.xml like <?xml version="1.0" encoding="UTF-8"?> <configdata> <nav> ...
2
votes
1answer
249 views

Zend navigation and Zend ACL

I am working with Zend Acl and Zend Navigation. I am setting up the navigation in the bootstrap. I am trying to have links not show if the user doesn't have access to the resource. I have read several ...
2
votes
1answer
113 views

Reset Zend_Navigation state

I am currently building an application where I have multiple ways to access the same controller. E.g.: Presenters -> access controller user/index with param user_type : presenters Attendees -> ...
2
votes
1answer
107 views

Zend_Navigation for displaying different menus in Layout

trying to print out about 3 menus on ZF. Currently I can't even get one out. Not quite sure what's going on and why theres no mention of how to get it working on the manual. So this is my ...
2
votes
2answers
423 views

is it possible to set permission in zend acl to action level insted of controller level

i am using zend framework , in my site i have two types of users , guest and loggeduser , i have a controller called . books , in there i have 3 actions . add , edit and delete , in my zend acl i ...
2
votes
1answer
278 views

How do I set the class for <ul> tag in multilevel submenu in zend_navigation

I am using an xml file in creating my navigation in a zend framework app. I have a multilevel menu like so: <config> <home> <label>Home</label> ...
2
votes
1answer
174 views

Zend Navigation, how can i use it with params in the url ? I tried it with params in navigation without changes :(

I have got a problem with the zend navigation. I use the zend navigation, and its ok when i call something like this in the url: www.website/article_new, www.website/article_list, ...
2
votes
2answers
837 views

Zend Navigation: Where should I load the ACL 'Role' in a private application

I am working on a 'private' application, you must be logged in to do anything at all. This gives me a bit of a an issue loading the role for Zend Navigation. Currently I am 'init'ing Zend Navigation ...
2
votes
1answer
1k views

Need Help with Zend Navigation XML

Can someone please help me out, I'm totally stuck! I don't know how to add a class name to <*li> tag in Zend navigation XML This is my XML Home ...
2
votes
1answer
250 views

Zend_Navigation incompatible with Zend_Router when writing controller/actions?

Novice Zend Framework developer here trying to figure out a simple solution to a Zend Routing problem. I'm sure one of you pros can lend a hand. I have a website (built in Zend Framework using ...
2
votes
1answer
867 views

zend headtitle using zend_navigation

I am using zend_navigation for creating menu. Which works fine. Now i m looking if i can take current page and set it as page title using headTitle. Is there is any way to do that? or how can i use ...
2
votes
1answer
318 views

Zend Naviation Menu View Helper - All links are the same?

heres my setup: http://www.example.com/<module>/<controller>/<action> I have this route defined: $router->addRoute( 'editUser', new ...
2
votes
3answers
2k views

Rendering Active Branch of Zend Navigation Without Top Level

I am rendering the top-level elements of a Zend Navigation object in one place like this: echo $this->navigation()->menu()->setMaxDepth(0); How do I render the navigation tree from the ...
2
votes
1answer
949 views

Zend_Navigation failing to load

Following on from my earlier question, I am still having issues with loading the xml file into Zend_Navigation. I am now getting the following error message: <b>Fatal error</b>: ...
2
votes
3answers
3k views

Giving Zend Navigation Pages Multiple ACL Privileges

I'm using Zend_Navigation and am trying to integrate it with Zend_Acl. Each page in the navigation has a privilege attribute. What I can't determine is how to define multiple privileges for a single ...
1
vote
1answer
76 views

Fixing Zend_Route to work with Zend_Navigation

So i have a Zend_Route in my application like this : public function _initRoutes() { $front = Zend_Controller_Front::getInstance(); $router = $front->getRouter(); $route = new ...
1
vote
1answer
120 views

Zend Framework double class menu active

I make a menu with Zend_Navigation. The trouble is that I detect a few times "active menu" that is, the "li" of the current page. Here is my navigation.xml <?xml version="1.0" ...
1
vote
1answer
119 views

Zend_Navigation: How to add numberings in the menu items?

I am generating XML from database records, then feeding it to Zend_Navigation to render it as treeview and before rendering I would like to add the level numbers, like a TOC numberings: I have: ...
1
vote
1answer
114 views

Is there a way to have a navigation entry with no link in zend navigation?

I'm sure my question is pretty straight forward, and I've been looking for an answer to this, but I can't seem to make it work. I want to do something like this: <?xml version="1.0" ...
1
vote
2answers
366 views

Zend_Navigation isActive not working

I have the following code: <ul class="navigation"> <?php foreach( $this->navigation as $item ): ?> <li class="<?php if($item->isActive()){echo " active";}?>"> ...
1
vote
2answers
329 views

Zend_Navigation: how to manage menu items?

I have menu like this: item1 - item1.1 - item 1.1.1 - item 1.1.2 - item 1.1.3 - item1.2 - item 1.2.1 - item 1.2.2 item2 - item2.1 - item2.2 I set `setOnlyActiveBranch(true); ...
1
vote
2answers
216 views

Zend_Navigation_Page_Mvc and Fragment Identifiers

I use Zend_Navigation on my site. Most of the items are Zend_Navigation_Page_Mvc and NOT Zend_Navigation_Page_Uri. I know that I can easily add a fragment identifier to a Zend_Navigation_Page_Uri ...
1
vote
2answers
341 views

submenu not showing when having get request params

I have an navigation.xml file, where I have a simple menu, with a submenu within the <pages> tag. The submenu is working well, except when I have addition $_GET params which are in the url. ...
1
vote
3answers
486 views

Zend_Navigation: Getting Only the Pages Accessible by the Current User/Role

I have a Zend_Navigation running with data provided by a navigation.xml file. Let's assume the first level (0) consists of two pages, Frontend and Backend. Frontend is accessible by the guest role, ...
1
vote
1answer
958 views

Zend_Navigation rendering submenu

I have the following Zend_Navigation config -Item1 -Item2 |---SubItem2 1 |---SubItem2 2 |---SubItem2 3 (Visible = false) -Item3 |---SubItem3 1 |---SubItem3 2 -Item4 |---SubItem4 1 ...
1
vote
2answers
86 views

php version required for Zend Navigation to work

does anybody know what minimum php version do you need to get Zend Navigation working? If I recall it didn't work with 5.1 though it was long ago, not sure if I am not confusing something thanks in ...
1
vote
0answers
256 views

Help to set up Zend navigation based on own file structure

I am quite new to ZF, and I have got to follow a company file structure and set up Zend Navigation upon it. I have got a included script like this: <?php //test1.php $config = new ...
1
vote
2answers
472 views

Zend_Navigation menu works but not breadcrumbs

I have configured my zend navigation menu like Config: http://pastebin.com/B212uWKz public function _initNavigation() { $config = new Zend_Config_Xml(APPLICATION_PATH . '/configs/navigation.xml', ...
1
vote
1answer
660 views

Encoding Problem with Zend Navigation using Zend Translate Spanish in XMLTPX File Special Characters

I have been attempting to use Zend Translate to display translated menu items to the user. It works fine until I introduce special characters into the translation files. I instantiate the ...
1
vote
2answers
612 views

How do I apply class=“current” to an <a href=…> tag when using Zend_Navigation?

As you can read from the title, I'm trying to add class="current" part to the HTML anchor tag that my zend_navigation renders. Here's what i have: Bootstrap.php protected function ...
1
vote
1answer
133 views

Where do I create custom Navigation Containers?

In Zend's Documentation they write about creating Navigation Containers. But they don't explain where I should create them. Does anyone know that? I'm also wondering if a custom Navigation Container ...
1
vote
1answer
578 views

Zend Navigation - Best Practices?

I would like to know how people use Zend_Navigation, what are the best practices to employ to get the most out of it? My company has built our last 2 major projects using Zend Framework, we have ...
1
vote
2answers
756 views

Zend_Navigation with hidden pages

I have my Zend_Navigation loaded from a PHP array (but that's irrelevant...) and I'm using the navigation menu helper to generate a menu based on the loaded navigation. Some menu items must not appear ...
1
vote
1answer
374 views

Denying access to action with Zend ACL causes Navigation link to disappear

I have a schedule controller with four actions: class ScheduleController extends Zend_Controller_Action { public function indexAction(){ ... } public function viewAction(){ ... } ...
1
vote
2answers
925 views

Zend Navigation add extra id

I made a menu with zend_navigation, using an ini file. That work well. If I look at the code, i see that zend has added a class, to the ul element. With a name that i use in my ini file. But now I ...
1
vote
1answer
1k views

Adding Parameters to Zend_Navigation

I have a problem with Zend_Navigation that I am hoping for a little guidance on. I'm in the process of adding a Zend_Navigation to a legacy app as described [here on SO].1 The thing that I am not ...

1 2 3