You are here

function protected_node_help in Protected Node 5

Same name and namespace in other branches
  1. 6 protected_node.module \protected_node_help()
  2. 7 protected_node.module \protected_node_help()
  3. 1.0.x protected_node.module \protected_node_help()

Implementation of hook_help(). @link http://api.drupal.org/api/function/hook_help/5

Parameters

string $section:

Return value

string

File

./protected_node.module, line 18

Code

function protected_node_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('With this module anybody who has edit protected content right can password protect his or her own node.');
      break;
  }
}