You are here

function outline_designer_help in Outline Designer 6

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

Implementation of hook_help().

File

./outline_designer.module, line 24
Massive usability improvement for quickly structuring / creating content.

Code

function outline_designer_help($path, $arg) {
  switch ($path) {
    case 'admin/content/book/settings':
      return 'Use this to change what content types are available while outlining content. The default will also be what is automatically selected when adding new content.';
    case 'admin/content/book/outline_designer':
      return "Use icons that visually describe your content so that there is no confusion about what's being created.  It also helps in visualizing your site when you have pages, containers, webforms and other content all living in the same hierarchy.";
    case 'admin/build/block/add':
  }
}