parseExtensionArgs() public method

Set the state of this request to be that expressed in these PAPE arguments
public parseExtensionArgs ( $args )
Example #1
0
 /**
  * Instantiate a Request object from the arguments in a checkid_*
  * OpenID message
  */
 static function fromOpenIDRequest($request)
 {
     $obj = new Auth_OpenID_PAPE_Request();
     $args = $request->message->getArgs(Auth_OpenID_PAPE_NS_URI);
     if ($args === null || $args === array()) {
         return null;
     }
     $obj->parseExtensionArgs($args);
     return $obj;
 }