You are here

function coder_upgrade_help in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/coder_upgrade.module \coder_upgrade_help()

Implements hook_help().

File

coder_upgrade/coder_upgrade.module, line 61

Code

function coder_upgrade_help($path, $arg) {
  if (strpos($path, 'admin/config/development/coder/upgrade') === 0 || $path == 'admin/help#coder_upgrade') {
    module_load_include('inc', 'coder_upgrade', 'includes/help');
    return _coder_upgrade_help($path, $arg);
  }
}