Anyone know if it is possible to have variables in route params
Example:
$route = new Zend_Controller_Router_Route(
'admin/:module/:controller_suffix/:action/*',
array(
'module' => 'admin',
'action' => 'index',
'controller' => 'admin_:controller_suffix',
)
);
Trying to construct a controller name based on one or more other params.
Is my only option to create my own custom route object?
Paul
