SimpleSAML_IdP::postAuthProc PHP Méthode

postAuthProc() public static méthode

Called after authproc has run.
public static postAuthProc ( array $state )
$state array The authentication request state array.
    public static function postAuthProc(array $state)
    {
        assert('is_callable($state["Responder"])');
        if (isset($state['core:SP'])) {
            $session = SimpleSAML_Session::getSessionFromRequest();
            $session->setData('core:idp-ssotime', $state['core:IdP'] . ';' . $state['core:SP'], time(), SimpleSAML_Session::DATA_TIMEOUT_SESSION_END);
        }
        call_user_func($state['Responder'], $state);
        assert('FALSE');
    }