You are here

function modr8_help in modr8 5

Same name and namespace in other branches
  1. 6 modr8.module \modr8_help()
  2. 7 modr8.module \modr8_help()

Implementation of hook_help().

File

./modr8.module, line 11
Easy dedicated content moderation

Code

function modr8_help($section) {
  switch ($section) {
    case 'admin/help#modr8':
      return '<p>' . t("Easy, dedicated moderation of content.  Assign the 'moderate content' permission to one or mode user roles.  Set up the default moderation option for each node type.") . '</p>';
  }
}