Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of the old "drupal" module leaving Core. Renamed "site_network". Minimalist work done so far. Doing enough to get a Contrib module going and transfer the old issues to the new project.
| 1 | <?php |
| 2 | // $Id:$ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * User page callbacks for the site_network module. |
| 7 | */ |
| 8 | |
| 9 | |
| 10 | /** |
| 11 | * Menu callback; print Drupal-authentication-specific information. |
| 12 | */ |
| 13 | function site_network_page_help() { |
| 14 | return t('<p><a href="@Drupal">Drupal</a> is the name of the software that powers %this-site. There are Drupal websites all over the world, and many of them share their registration databases so that users may freely log in to any Drupal site using a single <strong>Drupal ID</strong>.</p> |
| 15 | <p>So please feel free to log in to your account here at %this-site with a username from another Drupal site. The format of a Drupal ID is similar to an e-mail address: <strong>username</strong>@<em>server</em>. An example of a valid Drupal ID is <strong>mwlily</strong>@<em>drupal.org</em>.</p>', array('@Drupal' => 'http://drupal.org', '%this-site' => variable_get('site_name', 'Drupal'))); |
| 16 | } |
| 17 |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |