我在多个地方都有这个东西:
public function init()
{
$fbLogin = new Zend_Session_Namespace('fbLogin'); #Get Facebook Session
if(!$fbLogin->user) $this->_redirect('/'); #Logout the user
}
这两行:
$fbLogin = new Zend_Session_Namespace('fbLogin'); #Get Facebook Session
if(!$fbLogin->user) $this->_redirect('/'); #Logout the user
在ZendFramework中最好的方法是什么?创建插件或?我的意思是我想在多个地方执行它但是如果我需要编辑它我想在一个地方编辑它。
答案 0 :(得分:6)
以下是您可以轻松从控制器中调用的Action Helper示例。
<?php
class My_Helper_CheckFbLogin extends Zend_Controller_Action_Helper_Abstract
{
public function direct(array $params = array())
{
// you could pass in $params as an array and use any of its values if needed
$request = $this->getRequest();
$view = $this->getActionController()->view;
$fbLogin = new Zend_Session_Namespace('fbLogin'); #Get Facebook Session
if(!$fbLogin->user) {
$this->getActionController()
->getHelper('redirector')
->gotoUrl('/'); #Logout the user
}
return true;
}
}
为了使用它,您必须告诉助手经纪人它将居住在哪里。下面是一个示例代码,您可以在引导程序中执行此操作:
// Make sure the path to My_ is in your path, i.e. in the library folder
Zend_Loader_Autoloader::getInstance()->registerNamespace('My_');
Zend_Controller_Action_HelperBroker::addPrefix('My_Helper');
然后在你的控制器中使用它:
public function preDispatch()
{
$this->_helper->CheckFbLogin(); // redirects if not logged in
}
它没有详细说明,但Writing Your Own Helpers也很有帮助。
答案 1 :(得分:0)
如果您需要在每个Controller中进行此检查,您甚至可以设置一个baseController,您可以从中扩展而不是默认的:
class My_Base_Controller extends Zend_Controller_Action
{
public function init()
{ ...
class IndexController extends My_Base_Controller
{ ...
将init()
转移到基本控制器中,您无需在每个特定控制器中重复自己。
在特定控制器中需要变化init()
吗?
class FooController extends My_Base_Controller
{
public function init()
{
parent::init();
...