douzhang5295 2014-04-10 15:18
浏览 57
已采纳

我应该如何在菜单栏中创建一个由视图助手呈现的注销按钮?

I have a subnav bar in my module created from a view partial via a helper.

Here is the config in module.config.php:

'navigation' => array(
    'default' => array(
        array(
            'label' => 'Create',
            'route' => 'mymodule\Create',
        ),
        array(
            'label' => 'View',
            'route' => 'mymodule\view',
        ),
        array(
            'label' => 'Search',
            'route' => 'mymodule\search',
        ),
        array(
            'label' => 'Log Off',
            'route' => 'mymodule\logoff',
        ),
    ),
),

);

So here is my problem, I don't just want to redirect the user to the login page, I want to clear their session and THEN redirect them to the login page. I also don't want to have the login page just clear the session whenever a user navigates to it (in case they logged in and clicked the back button accidentally).

So what is the best way to handle this with my current config? I was thinking I could have my view helper that renders the partial set a flag in the session which the logon page would read and act accordingly- it would check for a "logoffButtonPress" flag in the session or something. But is it appropriate to do something like this in a view helper? Is this even possible in a view helper?

  • 写回答

2条回答 默认 最新

  • dtgr3392 2014-04-10 15:26
    关注

    Why not just have the button target a logoutAction?

    I'm using BjyAuthorise and ZfcUser modules but the process of clearing the session and redirecting is the same.

    LoginController

    public function logoutAction()
    {
        $this->authService->logout();
    
        $redirect = $this->params('redirect', false);
    
        if ($redirect) {
            return $this->redirect()->toUrl($redirect);
        }
    
        return $this->redirect()->toRoute(
            $this->config->getLogoutRedirectRoute()
        );
    }
    

    AuthService

    public function logout()
    {
        $adapter = $this->authService->getAdapter();
    
        $adapter->resetAdapters();
        $adapter->logoutAdapters();
    
        $this->authService->clearIdentity();
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了