You are here

function cookies_matomo_help in COOKiES Consent Management 1.0.x

Implements hook_help().

File

modules/cookies_matomo/cookies_matomo.module, line 15
Contains cookies_matomo.module.

Code

function cookies_matomo_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the cookies_matomo module.
    case 'help.page.cookies_matomo':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Submodule of cookies to manage Matomo Analytics implemented by so named module.') . '</p>';
      return $output;
    default:
  }
}