I can't figure this out. How do you use the url helper with custom routes?

I have a method in my users controller called edit and I have a custom route for it so it can be called through domain.com/settings (instead of domain.com/users/edit)

When I use the url helper this way:

<li><a href="<?php echo $this->url(array('controller' => '', 'action' => 'settings')); ?>">Settings</a></li>

it works fine from the main page, but once I het on the settings page, every other link generated by the url helper links to the current url (domain.com/settings)

Any ideas how to fix this?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The solution is to add a name to your custom route.

$router->addRoute(
    'settingsPage', //this is the name
     new Zend_Controller_Router_Route('settings',
                                        array('controller' => 'users',
                                              'action' => 'edit'))
);

When you go to use it on the frontend, add your route name:

<li><a href="<?php echo $this->url(array('controller' => 'users', 'action' => 'edit'), 'settingsPage', true); ?>">Settings</a></li>

a

link|improve this answer
This doesn't seem to fix it. Any other ideas? Thanks for the suggestion though! – Sled Dec 30 '10 at 0:28
i edited my example to include the correct controller and action for your route / url view helper. This should work as i am doing the same exact thing you are. – seanh Dec 30 '10 at 0:56
I had a typo in the controller name, this works. Thanks! – Sled Dec 30 '10 at 10:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.