function addanother_help in Add Another 7.2
Same name and namespace in other branches
- 8 addanother.module \addanother_help()
- 5 addanother.module \addanother_help()
- 6 addanother.module \addanother_help()
- 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>';
}
}