]> git.mxchange.org Git - friendica-addons.git/blob - piwik/config/piwik.config.php
enotify: empty out fields instead of using "abort" for addons
[friendica-addons.git] / piwik / config / piwik.config.php
1 <?php
2
3 // Warning: Don't change this file! It only holds the default config values for this addon.
4 // Instead overwrite these config values in config/addon.config.php in your Friendica directory
5
6 return [
7         'piwik' => [
8                 // baseurl (String)
9                 // This URL points to your Piwik installation.
10                 // Use the absolute path, remember trailing slashes but ignore the protocol (http/s) part of the URL.
11                 // Example: baseurl = example.com/piwik/
12                 'baseurl' => '',
13
14                 // siteid (Integer)
15                 // Change the *sideid* parameter to whatever ID you want to use for tracking your Friendica installation.
16                 'sideid' => '',
17
18                 // optout (Boolean)
19                 // This defines whether or not a short notice about the utilization of Piwik will be displayed on every
20                 // page of your Friendica site (at the bottom of the page with some spacing to the other content).
21                 // Part of the note is a link that allows the visitor to set an opt-out cookie which will prevent visits
22                 // from that user be tracked by Piwik.
23                 'optout' => true,
24
25                 // async (Boolean)
26                 // This defines whether or not to use asynchronous tracking so pages load (or appear to load) faster.
27                 'async' => false,
28         ],
29 ];