Piwik\Plugins\Login\SessionInitializer::processFailedSession PHP Метод

processFailedSession() защищенный Метод

Executed when the session could not authenticate.
protected processFailedSession ( boolean $rememberMe )
$rememberMe boolean Whether the authenticated session should be remembered after the browser is closed or not.
    protected function processFailedSession($rememberMe)
    {
        $cookie = $this->getAuthCookie($rememberMe);
        $cookie->delete();
        throw new Exception(Piwik::translate('Login_LoginPasswordNotCorrect'));
    }