Horde_Registry::getAuthInfo PHP Method

getAuthInfo() public method

Returns authentication metadata information.
Since: 2.12.0
public getAuthInfo ( ) : array
return array Authentication metadata: - authId: (string) The username used during the original auth. - browser: (string) The remote browser string. - change: (boolean) Is a password change requested? - credentials: (string) The 'auth_app' entry that contains the Horde credentials. - remoteAddr: (string) The remote IP address of the user. - timestamp: (integer) The login time. - userId: (string) The unique Horde username.
    public function getAuthInfo()
    {
        global $session;
        return $session->get('horde', 'auth/', $session::TYPE_ARRAY);
    }