Functions | |
CASClient::isProxy () | |
Tells if a CAS client is a CAS proxy or not. | |
CASClient::getPGT () | |
This method returns the Proxy Granting Ticket given by the CAS server. | |
CASClient::setPGT ($pgt) | |
This method stores the Proxy Granting Ticket. | |
CASClient::hasPGT () | |
This method tells if a Proxy Granting Ticket was stored. | |
Variables | |
CASClient::$_proxy | |
A boolean telling if the client is a CAS proxy or not. | |
CASClient::$_pgt | |
the Proxy Grnting Ticket given by the CAS server (empty otherwise). |
CASClient::getPGT | ( | ) | [private, inherited] |
This method returns the Proxy Granting Ticket given by the CAS server.
Definition at line 1020 of file client.php.
Referenced by CASClient::isAuthenticated().
{ return $this->_pgt; }
CASClient::hasPGT | ( | ) | [private, inherited] |
This method tells if a Proxy Granting Ticket was stored.
Definition at line 1036 of file client.php.
{ return !empty($this->_pgt); }
CASClient::isProxy | ( | ) | [private, inherited] |
Tells if a CAS client is a CAS proxy or not.
Definition at line 992 of file client.php.
Referenced by CASClient::CASClient(), CASClient::isAuthenticated(), CASClient::validateST(), and CASClient::wasPreviouslyAuthenticated().
{
return $this->_proxy;
}
CASClient::setPGT | ( | $ | pgt | ) | [private, inherited] |
This method stores the Proxy Granting Ticket.
$pgt | The Proxy Granting Ticket. |
Definition at line 1028 of file client.php.
Referenced by CASClient::wasPreviouslyAuthenticated().
{ $this->_pgt = $pgt; }
CASClient::$_pgt [private, inherited] |
the Proxy Grnting Ticket given by the CAS server (empty otherwise).
Written by CASClient::setPGT(), read by CASClient::getPGT() and CASClient::hasPGT().
Definition at line 1013 of file client.php.
CASClient::$_proxy [private, inherited] |
A boolean telling if the client is a CAS proxy or not.
Written by CASClient::CASClient(), read by CASClient::isProxy().
Definition at line 983 of file client.php.