ZendFramework插件类实例[角色控制]
时间:2009-09-14
来源:互联网
<?
/**
* ZendFramework插件类实例[角色控制]...
* @author
HP博客-技术-资源-技术站-面向对象 PHPCQ.com
*
*
*/
class Plugin_Security extends Zend_Controller_Plugin_Abstract{
protected $_acl;
public function __construct($acl){
$this->_acl = $acl;
}
public function dispatchLoopStartup($request){
$auth = Zend_Auth::getInstance();
$role = 'guest';
if ($auth->hasIdentity()) {
$role = $auth->getIdentity()->role;
}
$resource = $request->getActionName();
if ($this->_acl->has($resource)) {
if (!$this->_acl->isAllowed($role,$resource)) {
$session = new Zend_Session_Namespace('ACLSecurity');
$session->uri = $request->getRequestUri();
$request->setControllerName('index');
$request->setActionName('login');
}
}
}
}
?>
前端控制器注册插件
$front->registerPlugin(new Plugin_Security($acl));
/**
* ZendFramework插件类实例[角色控制]...
* @author

*
*
*/
class Plugin_Security extends Zend_Controller_Plugin_Abstract{
protected $_acl;
public function __construct($acl){
$this->_acl = $acl;
}
public function dispatchLoopStartup($request){
$auth = Zend_Auth::getInstance();
$role = 'guest';
if ($auth->hasIdentity()) {
$role = $auth->getIdentity()->role;
}
$resource = $request->getActionName();
if ($this->_acl->has($resource)) {
if (!$this->_acl->isAllowed($role,$resource)) {
$session = new Zend_Session_Namespace('ACLSecurity');
$session->uri = $request->getRequestUri();
$request->setControllerName('index');
$request->setActionName('login');
}
}
}
}
?>
前端控制器注册插件
$front->registerPlugin(new Plugin_Security($acl));
作者: 孤星泪 发布时间: 2009-09-14
不错,顶楼主..........
=700) window.open('http://www.discuz.net/images/default/sigline.gif');" onload="if(this.offsetWidth>'700')this.width='700';if(this.offsetHeight>'700')this.height='700';" >
斗破苍穹 http://www.shucheng.com/book/5/5575/
=700) window.open('http://www.discuz.net/images/default/sigline.gif');" onload="if(this.offsetWidth>'700')this.width='700';if(this.offsetHeight>'700')this.height='700';" >
斗破苍穹 http://www.shucheng.com/book/5/5575/
作者: 霞奕严 发布时间: 2009-09-30
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28