=1.0.0)Yaf_Plugin_Abstract::routerShutdown — The routerShutdown purpose說(shuō)明public Yaf_Plugin_Abstract::routerSh">

Yaf_Plugin_Abstract::routerShutdown

(Yaf >=1.0.0)

Yaf_Plugin_Abstract::routerShutdownThe routerShutdown purpose

說(shuō)明

public Yaf_Plugin_Abstract::routerShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response): void

這個(gè)鉤子在路由結(jié)束之后觸發(fā),通常被用于登陸檢查。

參數(shù)

request

response

返回值

范例

示例 #1 Yaf_Plugin_Abstract::routerShutdown()example

<?php
class UserInitPlugin extends Yaf_Plugin_Abstract {

    public function 
routerShutdown(Yaf_Request_Abstract $requestYaf_Response_Abstract $response) {
        
$controller $request->getControllerName();

        
/**
         * Use access controller is unecessary for APIs
         */
        
if (in_array(strtolower($controller), array(
            
'api',
        ))) {
            return 
TRUE;
        }

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

        
/* Use access check failed, need to login */
        
$response->setRedirect("http://yourdomain.com/login/");
        return 
FALSE;
    }
?>

參見(jiàn)