ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
Auth_OpenID_UntrustedReturnURL Class Reference
+ Inheritance diagram for Auth_OpenID_UntrustedReturnURL:
+ Collaboration diagram for Auth_OpenID_UntrustedReturnURL:

Public Member Functions

 Auth_OpenID_UntrustedReturnURL ($message, $return_to, $trust_root)
 
 toString ()
 
- Public Member Functions inherited from Auth_OpenID_ServerError
 Auth_OpenID_ServerError ($message=null, $text=null, $reference=null, $contact=null)
 private More...
 
 getReturnTo ()
 
 hasReturnTo ()
 Returns the return_to URL for the request which caused this error. More...
 
 encodeToURL ()
 Encodes this error's response as a URL suitable for redirection. More...
 
 encodeToKVForm ()
 Encodes the response to key-value form. More...
 
 toFormMarkup ($form_tag_attrs=null)
 
 toHTML ($form_tag_attrs=null)
 
 toMessage ()
 
 whichEncoding ()
 Returns one of Auth_OpenID_ENCODE_URL, Auth_OpenID_ENCODE_KVFORM, or null, depending on the type of encoding expected for this error's payload. More...
 
 toString ()
 Returns this error message. More...
 

Detailed Description

Definition at line 1628 of file Server.php.

Member Function Documentation

◆ Auth_OpenID_UntrustedReturnURL()

Auth_OpenID_UntrustedReturnURL::Auth_OpenID_UntrustedReturnURL (   $message,
  $return_to,
  $trust_root 
)

Definition at line 1629 of file Server.php.

1631  {
1632  parent::Auth_OpenID_ServerError($message, "Untrusted return_to URL");
1633  $this->return_to = $return_to;
1634  $this->trust_root = $trust_root;
1635  }

◆ toString()

Auth_OpenID_UntrustedReturnURL::toString ( )

Definition at line 1637 of file Server.php.

1638  {
1639  return sprintf("return_to %s not under trust_root %s",
1640  $this->return_to, $this->trust_root);
1641  }

The documentation for this class was generated from the following file: