Hello everyone.
I have a defined route like:
$router->add(
    "/login",
    array(
        "controller" => "auth",
        "action"     => "login"
    )
);is it also possible to get the routing link by controller and action? that i have something like this: $route->getRouteByParams(array('controller'=>'auth','action'=>'login')); and i will get back
/loginThanks you very much for your help. Patrick