Yaf_Plugin_Abstract::routerShutdown

(Yaf >=1.0.0)

Yaf_Plugin_Abstract::routerShutdownrouterShutdown 的用途

描述

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

此钩子将在路由过程完成之后触发,此钩子通常用于登录检查。

参数

request

response

返回值

示例

示例 #1 Yaf_Plugin_Abstract::routerShutdown()示例

<?php
class UserInitPlugin extends Yaf_Plugin_Abstract {

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

/**
* 对 API 使用访问控制器是不必要的
*/
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;
}
}
?>

参见

添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top