You are here

function piwik_help in Piwik Web Analytics 6.2

Same name and namespace in other branches
  1. 8 piwik.module \piwik_help()
  2. 5 piwik.module \piwik_help()
  3. 6 piwik.module \piwik_help()
  4. 7.2 piwik.module \piwik_help()
  5. 7 piwik.module \piwik_help()

Implementation of hook_help().

File

./piwik.module, line 24
Drupal Module: Piwik

Code

function piwik_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/piwik':
      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.', array(
        '@pk_url' => 'http://www.piwik.org/',
      ));
  }
}