function node_example_help
Implements hook_help().
Related topics
File
-
node_example/
node_example.module, line 260
Code
function node_example_help($path, $arg) {
switch ($path) {
case 'examples/node_example':
return "<p>" . t("The Node Example module provides a custom node type.\n You can create new Example Node nodes using the <a href='!nodeadd'>node add form</a>.", array(
'!nodeadd' => url('node/add/node-example'),
)) . "</p>";
}
}