I have a url
/module/controller/action/id/10
And what want to achieve is to generate the following url for an A tag inside a view partial
/module/controller
so basically I want to remove action name and extra id parameter
How can I do it using $this->url() inside the partial without having to pass any variables from a controller?
Thanks
EDIT:
Ok so I managed to write a piece of code that do it:
<?php
$module = Zend_Controller_Front::getInstance()->getRequest()->getModuleName();
$ctrl = Zend_Controller_Front::getInstance()->getRequest()->getControllerName();
echo $this->url(array('controller' => $ctrl, 'module' => $module), null, true);
?>
but this is pretty ugly solution. Anyone any ideas? Thanks
You can set the
module
andcontroller
name in the Zend_Registry, either from the Bootstrap or from any Plugins and can use it in the partial views.