]> git.mxchange.org Git - friendica-addons.git/blobdiff - piwik/README.md
superblock EN-GB translation THX AndyH3
[friendica-addons.git] / piwik / README.md
index 2b2d1ce5b04cefc8f59ef6c7f954ddd8c08fa403..0878394edda4dfa4a68eb576775691593ad7ea0f 100644 (file)
@@ -1,14 +1,14 @@
-Piwik Addon
+Matomo / Piwik Addon
 ============
 
 by Tobias Diekershoff and Klaus Weidenbach
 
-This addon allows you to embed the code necessary for the FLOSS webanalytics tool Piwik into the Friendica pages.
+This addon allows you to embed the code necessary for the FLOSS webanalytics tool Matomo (formerly known as Piwik) into the Friendica pages.
 
 Requirements
 ------------
 
-To use this addon you need a [piwik](http://piwik.org/) installation.
+To use this addon you need a [Matomo](https://matomo.org/) installation.
 
 Where to find
 -------------
@@ -20,20 +20,24 @@ Configuration
 
 The easiest way to configure this addon is by activating the admin panels of your ~friendica server and then enter the needed details on the config page for the addon.
 
-If you don't want to use the admin panel, you can configure the addon through the config/local.ini.php file.
+If you don't want to use the admin panel, you can configure the addon through the `config/local.config.php` file.
 
-Open the config/local.ini.php file and add "piwik" to the list of activated addons.
+Open the `config/local.config.php` file and add "piwik" to the list of activated addons.
 
-    [system]
-       addon = ...,piwik
+    'system' => [
+        ...
+        'addon' => '...,piwik'
+        ...
+    ]
 
-You can change 4 more configuration variables for the addon in the config/addon.ini.php file:
+You can change 4 more configuration variables for the addon in the `config/addon.config.php` file:
 
-    [piwik]
-       baseurl = example.com/piwik/
-    sideid = 1
-    optout = true
-    async = false
+       'piwik' => [
+        'baseurl' => 'example.com/piwik/',
+        'sideid' => 1,
+        'optout' => true,
+        'async' => false,
+    ],
 
 Configuration fields
 ---------------------