| Versionen | |
|---|---|
| drupal6 – drupal7 | openid_user_identities($account) |
Menu callback; Manage OpenID identities for the specified user.
modules/
<?php
function openid_user_identities($account) {
drupal_set_title(check_plain($account->name));
drupal_add_css(drupal_get_path('module', 'openid') . '/openid.css', 'module');
// Check to see if we got a response
$result = openid_complete();
if ($result['status'] == 'success') {
$identity = $result['openid.claimed_id'];
db_query("INSERT INTO {authmap} (uid, authname, module) VALUES (%d, '%s','openid')", $account->uid, $identity);
drupal_set_message(t('Successfully added %identity', array('%identity' => $identity)));
}
$header = array(t('OpenID'), t('Operations'));
$rows = array();
$result = db_query("SELECT * FROM {authmap} WHERE module='openid' AND uid=%d", $account->uid);
while ($identity = db_fetch_object($result)) {
$rows[] = array(check_plain($identity->authname), l(t('Delete'), 'user/' . $account->uid . '/openid/delete/' . $identity->aid));
}
$output = theme('table', $header, $rows);
$output .= drupal_get_form('openid_user_add');
return $output;
}
?>
Kommentare
Kommentar hinzufügen