You are here

function nodeaccess_help in Nodeaccess 5

Same name and namespace in other branches
  1. 8.2 nodeaccess.module \nodeaccess_help()
  2. 8 nodeaccess.module \nodeaccess_help()
  3. 6.2 nodeaccess.module \nodeaccess_help()
  4. 6 nodeaccess.module \nodeaccess_help()
  5. 7 nodeaccess.module \nodeaccess_help()

Implementation of hook_help().

File

./nodeaccess.module, line 6

Code

function nodeaccess_help($section) {
  if (preg_match('|^node/\\d+/grant|', $section)) {
    return '<small>' . t('You can set grants per users. Enter a name or a partial name in the box and click Search or press return. You need to check the Keep? checkbox if you want to keep the user for granting. Note that user grants are additional to those coming from roles.') . '</small>';
  }
}