Lines Matching refs:identity
737 static function make($message, $identity, $return_to, $trust_root = null, argument
750 $r = new Auth_OpenID_CheckIDRequest($identity, $return_to,
766 function Auth_OpenID_CheckIDRequest($identity, $return_to, argument
773 $this->identity = $identity;
775 $this->claimed_id = $identity;
798 ($this->identity == $other->identity) &&
847 $identity = $message->getArg(Auth_OpenID_OPENID_NS,
851 if ($identity === null) {
856 if ($identity && !$claimed_id) {
860 } else if ($claimed_id && !$identity) {
892 $identity,
912 return $this->identity == Auth_OpenID_IDENTIFIER_SELECT;
956 * @param string $identity The OP-local identifier to answer with.
974 function answer($allow, $server_url = null, $identity = null, argument
1023 if ($identity && !$claimed_id) {
1024 $claimed_id = $identity;
1029 if ($this->identity == Auth_OpenID_IDENTIFIER_SELECT) {
1030 if (!$identity) {
1036 $response_identity = $identity;
1039 } else if ($this->identity) {
1040 if ($identity &&
1041 ($this->identity != $identity)) {
1044 sprintf($fmt, $this->identity, $identity));
1047 $response_identity = $this->identity;
1050 if ($identity) {
1053 "you supplied ".$identity);
1102 $this->identity,
1138 'identity' => $this->identity,