(Yaf >=1.0.0)
Yaf_Plugin_Abstract::routerStartup — Hook before routing
$request, Yaf_Response_Abstract $response): voidThis hook is triggered right before the request is routed. It is the earliest hook in the dispatch flow, so it is usually used for URL rewriting or for routing decisions that must happen before Yaf_Router::route runs.
requestThe Yaf_Request_Abstract instance being dispatched.
responseThe Yaf_Response_Abstract instance.
No value is returned.
Example #1 Yaf_Plugin_Abstract::routerStartup() example
<?php
class RewritePlugin extends Yaf_Plugin_Abstract
{
public function routerStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response)
{
/* rewrite "/about" style URIs to "/page/about" before
* routing runs */
$uri = $request->getRequestUri();
if (preg_match("#^/[a-z]+$#", $uri)) {
$request->setRequestUri("/page" . $uri);
}
}
}
/* plugins are registered in the bootstrap */
class Bootstrap extends Yaf_Bootstrap_Abstract
{
public function _initPlugin(Yaf_Dispatcher $dispatcher)
{
$dispatcher->registerPlugin(new RewritePlugin());
}
}
?>