You are here

function me_help in me aliases 8

Same name and namespace in other branches
  1. 6.2 me.module \me_help()
  2. 6 me.module \me_help()
  3. 7 me.module \me_help()

Implements hook_help().

File

./me.module, line 24
Provides 'me' aliases to allow users to enter 'me' in common paths instead of their user id.

Code

function me_help($path, $arg) {
  switch ($path) {
    case 'admin/help#me':
      return t("Allows a user to enter user/me, blog/me etc.. using 'me' in place of their user id.");
  }
}