You are here

function statspro_help in Statistics Pro 6.2

Implementation of hook_help().

File

./statspro.module, line 235
Main module of Statistcs pro module

Code

function statspro_help($path, $arg) {
  switch ($path) {
    case 'admin/help#statspro':
      return '<p>' . t('The Statistics Pro module produces several new site statistic reports.') . '</p>';
      break;
  }
}