Lines Matching refs:identity
825 public $identity = ''; variable in Auth_OpenID_CheckIDRequest
829 * @param string $identity
837 static function make($message, $identity, $return_to, $trust_root = null, argument
850 $r = new Auth_OpenID_CheckIDRequest($identity, $return_to,
877 function __construct($identity, $return_to, argument
884 $this->identity = $identity;
886 $this->claimed_id = $identity;
913 ($this->identity == $other->identity) &&
963 $identity = $message->getArg(Auth_OpenID_OPENID_NS,
967 if ($identity === null) {
972 if ($identity && !$claimed_id) {
976 } else if ($claimed_id && !$identity) {
1008 $identity,
1028 return $this->identity == Auth_OpenID_IDENTIFIER_SELECT;
1072 * @param string $identity The OP-local identifier to answer with.
1090 function answer($allow, $server_url = null, $identity = null, argument
1139 if ($identity && !$claimed_id) {
1140 $claimed_id = $identity;
1145 if ($this->identity == Auth_OpenID_IDENTIFIER_SELECT) {
1146 if (!$identity) {
1152 $response_identity = $identity;
1155 } else if ($this->identity) {
1156 if ($identity &&
1157 ($this->identity != $identity)) {
1160 sprintf($fmt, $this->identity, $identity));
1163 $response_identity = $this->identity;
1166 if ($identity) {
1169 "you supplied ".$identity);
1221 $this->identity,
1258 'identity' => $this->identity,