You are here

function realname_help in Real Name 7

Same name and namespace in other branches
  1. 8 realname.module \realname_help()
  2. 5 realname.module \realname_help()
  3. 6 realname.module \realname_help()
  4. 2.x realname.module \realname_help()

Implements hook_help().

File

./realname.module, line 19
Provides token-based name displays for users.

Code

function realname_help($path, $arg) {
  switch ($path) {

    // Main module help for the Realname module.
    case 'admin/config/people/realname':
    case 'admin/help#realname':
      return '<p>' . t("A Real Name is what the site developer decides that users' names should look like. It is constructed from various tokens that are available within the site.") . '</p>';
  }
}