Yaf_Plugin_Abstract::routerShutdown

(Yaf >=1.0.0)

Yaf_Plugin_Abstract::routerShutdownThe routerShutdown purpose

Description

publicYaf_Plugin_Abstract::routerShutdown(Yaf_Request_Abstract$request, Yaf_Response_Abstract$response): void

This hook will be trigged after the route process finished, this hook is usually used for login check.

Parameters

request

response

Return Values

Examples

Example #1 Yaf_Plugin_Abstract::routerShutdown()example

<?php
class UserInitPlugin extends Yaf_Plugin_Abstract {

public function
routerShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) {
$controller = $request->getControllerName();


if (in_array(strtolower($controller), array(
'api',
))) {
return
TRUE;
}

if (
Yaf_Session::getInstance()->has("login")) {
return
TRUE;
}


$response->setRedirect("http://yourdomain.com/login/");
return
FALSE;
}
}
?>

See Also

To Top