Auth_OpenID_PAPE_Request::addPolicyURI PHP Метод

addPolicyURI() публичный Метод

This method is intended to be used by the relying party to add acceptable authentication types to the request. policy_uri: The identifier for the preferred type of authentication.
public addPolicyURI ( $policy_uri )
    function addPolicyURI($policy_uri)
    {
        if (!in_array($policy_uri, $this->preferred_auth_policies)) {
            $this->preferred_auth_policies[] = $policy_uri;
        }
    }