You are here

function outline_designer_help in Outline Designer 5

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

Implementation of hook_help

File

./outline_designer.module, line 31

Code

function outline_designer_help($section) {
  global $node;
  switch ($section) {
    case 'admin':
      return t("Outline Designer redoes how books / content is created system wide.");
    case 'nodeid':
      return $node->nid;
  }
}