You are here

function node_example_help in Examples for Developers 7

Implements hook_help().

Related topics

File

node_example/node_example.module, line 260
Module file for Node Example module.

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>";
  }
}