You are here

function piwik_help in Piwik Web Analytics 6

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

File

./piwik.module, line 14
Drupal Module: Piwik Adds the required Javascript to the bottom of all your Drupal pages to allow tracking by the Piwik statistics package.

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/',
      ));
  }
}