Auth_OpenID_AX_FetchRequest::getRequiredAttrs PHP 메소드

getRequiredAttrs() 공개 메소드

Get the type URIs for all attributes that have been marked as required.
public getRequiredAttrs ( ) : A
리턴 A list of the type URIs for attributes that have been marked as required.
    function getRequiredAttrs()
    {
        $required = array();
        foreach ($this->requested_attributes as $type_uri => $attribute) {
            if ($attribute->required) {
                $required[] = $type_uri;
            }
        }
        return $required;
    }