You are here

function addanother_help in Add Another 7.2

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

Implements hook_help().

File

./addanother.module, line 14
The main file for the addanother module.

Code

function addanother_help($path, $arg) {
  if ($path == "admin/help#addanother") {
    return '<p>' . t("Presents users with an option to create another node of the same type after a node is added.") . '</p>';
  }
}