ZF2 +如何使用Zend \ Authentication更改会话超时

时间:2014-06-13 08:48:47

标签: authentication zend-framework2 zend-session

我能够使用Zend \ Authentication定义自己的身份验证服务。现在我希望能够更改会话超时限制。 我不想更改常规会话配置,但仅限于此身份验证管理器。 由于我想重用这个适配器,我想通过module.config.php配置文件找到一种方法。

目前,我正在创建我的服务

public function getServiceConfig()
    {
        return array(
        'factories' => array(

            'cas_auth_service' => function ($sm) {
                $authService = new \Zend\Authentication\AuthenticationService;
                $authService->setAdapter($sm->get('\CasAuthen\Authentication\Adapter\Cas'));
                return $authService;
            },
        ),
    );
}

我正在考虑创建自己的身份验证存储适配器,然后注入它,但我不知道这是否是正确的方法。

是否知道如何继续?

提前感谢您,祝您度过愉快的一天。

0 个答案:

没有答案