ILIAS
Release_3_10_x_branch Revision 61812
|
Functions | |
CASClient::setCallbackMode ($callback_mode) | |
This method sets/unsets callback mode. | |
CASClient::isCallbackMode () | |
This method returns TRUE when the CAs client is running i callback mode, FALSE otherwise. | |
CASClient::getCallbackURL () | |
This method returns the URL that should be used for the PGT callback (in fact the URL of the current request without any CGI parameter, except if phpCAS::setFixedCallbackURL() was used). | |
CASClient::setCallbackURL ($url) | |
This method sets the callback url. | |
CASClient::callback () | |
This method is called by CASClient::CASClient() when running in callback mode. |
Variables | |
CASClient::$_callback_mode | |
each PHP script using phpCAS in proxy mode is its own callback to get the PGT back from the CAS server. | |
CASClient::$_callback_url | |
the URL that should be used for the PGT callback (in fact the URL of the current request without any CGI parameter). |
|
private |
This method is called by CASClient::CASClient() when running in callback mode.
It stores the PGT and its PGT Iou, prints its output and halts.
Definition at line 1161 of file client.php.
References $_GET.
Referenced by CASClient\wasPreviouslyAuthenticated().
|
private |
This method returns the URL that should be used for the PGT callback (in fact the URL of the current request without any CGI parameter, except if phpCAS::setFixedCallbackURL() was used).
Definition at line 1107 of file client.php.
References $request_uri.
|
private |
This method returns TRUE when the CAs client is running i callback mode, FALSE otherwise.
Definition at line 1083 of file client.php.
Referenced by CASClient\CASClient(), and CASClient\wasPreviouslyAuthenticated().
|
private |
This method sets/unsets callback mode.
$callback_mode | TRUE to set callback mode, FALSE otherwise. |
Definition at line 1070 of file client.php.
Referenced by CASClient\CASClient().
|
private |
This method sets the callback url.
$callback_url | url to set callback |
Definition at line 1150 of file client.php.
|
private |
each PHP script using phpCAS in proxy mode is its own callback to get the PGT back from the CAS server.
callback_mode is detected by the constructor thanks to the GET parameters. a boolean to know if the CAS client is running in callback mode. Written by CASClient::setCallBackMode(), read by CASClient::isCallbackMode().
Definition at line 1061 of file client.php.
|
private |
the URL that should be used for the PGT callback (in fact the URL of the current request without any CGI parameter).
Written and read by CASClient::getCallbackURL().
Definition at line 1096 of file client.php.