Lines Matching refs:claimedId
89 * @param string $claimedId claimed identifier
92 function getUsernameByIdentity($providerId, $claimedId) { argument
96 $claimedId = str_replace($strip, '', $claimedId);
98 if ($entry['ident'] == $claimedId) {
149 * @param string $claimedId identity associated with the user data entry
152 function getUserDataEntry($claimedId) { argument
156 $claimedId = str_replace($strip, '', $claimedId);
158 if ($entry['ident'] == $claimedId) {
187 * @param string $claimedId user authentication identity
190 function addUserDataEntry($providerId, $claimedId, $date=null) { argument
197 'ident' => str_replace($strip, '', $claimedId), // user identity
207 $this->addLogEntry($date, $providerId, $claimedId, FEDAUTH_CHANGE_TYPE_CREATE);
215 * @param string $claimedId identity associated with the user data entry
218 function deleteUserDataEntry($claimedId) { argument
219 if ($entry = $this->getUserDataEntry($claimedId)) {
228 $this->addLogEntry(time(), $entry['id'], $claimedId, FEDAUTH_CHANGE_TYPE_DELETE);
238 * @param string $claimedId identity associated with the user data entry
240 function refreshUserDataEntry($claimedId) { argument
241 if ($entry = $this->getUserDataEntry($claimedId)) {
248 $this->addLogEntry(time(), $entry['id'], $claimedId, FEDAUTH_CHANGE_TYPE_REFRESH);
279 * @param string $claimedId user authentication identity
283 function addLogEntry($date, $providerId, $claimedId, $type, $isExternal=true) { argument
294 'ident' => str_replace($strip, '', $claimedId),