You are here

function certificate_help in Certificate 6

Implementation of hook_help().

File

./certificate.module, line 94
Certificate module.

Code

function certificate_help($path, $arg) {
  if ($path == 'admin/help#certificate') {
    $txt = 'If you install the !advanced_help module, Views will provide more and better help.';
    $link = l('Advanced help', 'http://drupal.org/project/advanced_help');
    $replace = array(
      '!advanced_help' => $link,
    );
    return '<p>' . t($txt, $replace) . '</p>';
  }
}