You are here

function nodehierarchyaccess_help in Node Hierarchy 6.2

Same name and namespace in other branches
  1. 5 nodehierarchyaccess/nodehierarchyaccess.module \nodehierarchyaccess_help()
  2. 6.3 nodehierarchyaccess/nodehierarchyaccess.module \nodehierarchyaccess_help()

Implementation of hook_help().

File

nodehierarchyaccess/nodehierarchyaccess.module, line 11
A module to integrate nodehierarchy and nodeaccess.

Code

function nodehierarchyaccess_help($section) {
  switch ($section) {
    case 'admin/help#nodehierarchyaccess':
      return t('This module integrates nodehierarchy and nodeaccess. With this module enabled, children automatically inherit the grants of their parents. If nodehierarchy and nodeaccess are not enabled, this module does nothing.');
  }
}