You are here

function prod_check_help in Production check & Production monitor 8

Same name and namespace in other branches
  1. 6 prod_check.module \prod_check_help()
  2. 7 prod_check.module \prod_check_help()

Implementation of hook_help().

File

./prod_check.module, line 91
Module file for the prod check module

Code

function prod_check_help($route_name, RouteMatchInterface $route_match) {
  $output = '';
  switch ($route_name) {
    case 'prod_check.report':
      $output = '<p>' . t("This is an overview of all checks performed by the <em>Production check</em> module and their status. You can click the links inside the report to jump to the module's settings page, or to go to the project page of a module, in case you need to download it for installation.") . '</p>';
      break;
  }
  return $output;
}