send($message, 5); if ($result && !$result->faultCode()) { $value = $result->value(); $login = $value->scalarval(); } return $login; } function drupal_page() { global $theme; $theme->header(); $theme->box("Drupal", drupal_auth_help()); $theme->footer(); } function drupal_auth_help() { $site = variable_get("site_name", "this web site"); $output = "
Drupal is the name of the software which powers %s. There are Drupal websites all over the world, and many of them share their registration databases so that users may freely login to any Drupal site using a single Drupal ID.
So please feel free to login to your account here at %s with a username from another Drupal site. The format of a Drupal ID is similar to an email address: username@server. An example of valid Drupal ID is mwlily@www.drop.org.
"; return sprintf(t($output), $site, $site); } ?>