Lines Matching refs:openid
117 $store = new Auth_OpenID_FileStore($conf['tmpdir'] . '/openid');
179 if (!isset($associations[$openid])) {
209 …$openid = isset($_GET['openid1_claimed_id']) ? $_GET['openid1_claimed_id'] : $_GET['openid_claimed…
210 if (empty($openid)) {
216 $result = $this->register_openid_association($user, $openid);
221 $authenticate = $this->login_user($openid);
393 function login_user($openid) argument
402 if ($identity == $openid) {
412 if (isset($associations[$openid])) {
413 $user = $associations[$openid];
421 $this->update_session($openid);
470 $openid = $_SERVER['REMOTE_USER'];
473 $this->register_openid_association($user, $openid);
516 function register_openid_association($user, $openid) argument
519 if (isset($associations[$openid])) {
523 $associations[$openid] = $user;
528 function remove_openid_association($user, $openid) argument
531 if (isset($associations[$openid]) && $associations[$openid] == $user) {
532 unset($associations[$openid]);
564 foreach ((array)$openid_associations as $openid => $login) {
566 $user_openid_associations[$openid] = $login;