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 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置