You are here

function matomo_reports_help in Matomo Reports 8

Implements hook_help().

File

./matomo_reports.module, line 14
Contains matomo_reports.module.

Code

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

    // Main module help for the matomo_reports module.
    case 'matomo_reports.matomo_reports_settings':
      return t('<a href=":pk_url">Matomo - Web analytics</a> is an open source (GPL license) web analytics software. It gives interesting reports on your website visitors, your popular pages, the search engines keywords they used, the language they speak... and so much more. Matomo aims to be an open source alternative to Google Analytics.', [
        ':pk_url' => 'http://www.matomo.org/',
      ]);
  }
}