You are here

function piwik_variable_group_info in Piwik Web Analytics 7.2

Implements hook_variable_group_info().

File

./piwik.variable.inc, line 30
Definition of variables for Variable API module.

Code

function piwik_variable_group_info() {
  $groups['piwik'] = array(
    'title' => t('Piwik'),
    'description' => t('Configure tracking behavior to get insights into your website traffic and marketing effectiveness.'),
    'access' => 'administer piwik',
    'path' => array(
      'admin/config/system/piwik',
    ),
  );
  return $groups;
}