_fromOpenIDArgs() public method

public _fromOpenIDArgs ( $openid_args )
Example #1
0
 function fromOpenIDArgs($openid_args)
 {
     // Takes an array.
     // Construct a Message from a parsed KVForm message
     $obj = new Auth_OpenID_Message();
     if ($obj->_fromOpenIDArgs($openid_args)) {
         return $obj;
     } else {
         return null;
     }
 }