You are here

function piwik_reports_help in Piwik Reports 8

Same name and namespace in other branches
  1. 6 piwik_reports.module \piwik_reports_help()
  2. 7.4 piwik_reports.module \piwik_reports_help()
  3. 7.2 piwik_reports.module \piwik_reports_help()
  4. 7.3 piwik_reports.module \piwik_reports_help()

Implements hook_help().

File

./piwik_reports.module, line 14
Contains piwik_reports.module.

Code

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

    // Main module help for the piwik_reports module.
    case 'piwik_reports.piwik_reports_settings':
      return t('<a href=":pk_url">Piwik - 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. Piwik aims to be an open source alternative to Google Analytics.', [
        ':pk_url' => 'http://www.piwik.org/',
      ]);
  }
}