function nodeaccess_help in Nodeaccess 7
Same name and namespace in other branches
- 8.2 nodeaccess.module \nodeaccess_help()
- 8 nodeaccess.module \nodeaccess_help()
- 5 nodeaccess.module \nodeaccess_help()
- 6.2 nodeaccess.module \nodeaccess_help()
- 6 nodeaccess.module \nodeaccess_help()
Implements hook_help().
Parameters
string $path:
$arg:
Return value
string|NULL
File
- ./
nodeaccess.module, line 17 - Provide per node access control
Code
function nodeaccess_help($path, $arg) {
switch ($path) {
case 'node/%/grant':
return t("You can set grants for individual users. Enter a name or a\n partial name in the box and click Search or press return. You must check\n the 'Keep?' checkbox if you want to keep the user for granting. Note\n that user grants are in addition to those coming from roles.");
}
}