diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-08-21 08:15:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-08-21 08:15:59 +0000 |
commit | 2f834f032a672f2aeb2109bc670a411e82515a0b (patch) | |
tree | 6cdabdb1e10ff07f30d0d6725c7c239b2d88d449 /modules/drupal/drupal.pages.inc | |
parent | 22c1cb8a6ac288d76d0971d21993bd173e2ef343 (diff) | |
download | brdo-2f834f032a672f2aeb2109bc670a411e82515a0b.tar.gz brdo-2f834f032a672f2aeb2109bc670a411e82515a0b.tar.bz2 |
- Patch #166717 by Crell: split up drupal module. This modules should be removed in Drupal 7 though.
Diffstat (limited to 'modules/drupal/drupal.pages.inc')
-rw-r--r-- | modules/drupal/drupal.pages.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/drupal/drupal.pages.inc b/modules/drupal/drupal.pages.inc new file mode 100644 index 000000000..a8a7a28d3 --- /dev/null +++ b/modules/drupal/drupal.pages.inc @@ -0,0 +1,16 @@ +<?php +// $Id$ + +/** + * @file + * User page callbacks for the drupal module. + */ + + +/** + * Menu callback; print Drupal-authentication-specific information. + */ +function drupal_page_help() { + 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> +<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'))); +} |