You are here

hook_help()

/**
* Implements hook_help().
*/
function example_help($path, $arg) {
  switch ($path) {
    case 'admin/help#example':{
      $ret_val = '<h3>' . t('About') . '</h3>';
      $ret_val = '<p>' . t('The example module makes it easy to manage a database of example.') . '</p>';
      return $ret_val;
      break;
    }
  }
}
code type: