function me_help in me aliases 6
Same name and namespace in other branches
- 8 me.module \me_help()
- 6.2 me.module \me_help()
- 7 me.module \me_help()
Implementation of 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.");
}
}