You are here

function addanother_help in Add Another 8

Same name and namespace in other branches
  1. 5 addanother.module \addanother_help()
  2. 6 addanother.module \addanother_help()
  3. 7.2 addanother.module \addanother_help()
  4. 7 addanother.module \addanother_help()

Implements hook_help().

File

./addanother.module, line 17
Allows users to Add Another node of the same type easily.

Code

function addanother_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.addanother':
      return t("Presents users with an option to create another node of the same type after a node is added.");
  }
}