You are here

function pminvoice_help in Drupal PM (Project Management) 7

Implements hook_help().

File

pminvoice/pminvoice.module, line 18
1: Hooks (help, perm, init, menu, theme, node_info) 2: Access functions 3: Load organization and project details 4: Invoice create / edit form 5: Invoice node manipulation functions 6: Admin settings 7: Views hook 8: Project Managementinvoiceitem…

Code

function pminvoice_help($path, $arg) {
  $o = '';
  switch ($path) {
    case "admin/help#pminvoice":
      $o = '<p>' . t("Provides invoice support for Project Management") . '</p>';
      break;
  }
  return $o;
}