Skip to content

Commit

Permalink
Matomo 5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh committed Nov 24, 2023
1 parent dd9ebc8 commit 3a557a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## Changelog
- 5.0.0 Matomo 5 Compatible.
- 4.0.1 Matomo 4 Compatible. Fixed generator documentation link in Plugin Settings
- 3.0.0 Initial Version
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ Plugin for the Matomo Web Analytics software package that facilitates an easy pr

## Instructions
The easiest way to install is to find the plugin in the [Matomo Marketplace](https://plugins.matomo.org/).
A shared secret must be etablished before the plugin will function.
A shared secret must be etablished before the plugin will function. You can set that in `Admin -> System -> General Settings`
You will then need to implement an access provider (see example code below) which will generate an access request link users can use.

NOTICE: Users need to have read access to at least 1 website. When you create user accounts give the users access to a "lobby" website. if using LoginLdap utilize the *Initial sites With View Access for New Users* feature to provide access to the lobby website.

## Usage

Implementation code for access provider. Should be trivial to port to other languages.
Expand Down
6 changes: 3 additions & 3 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "SiteAccessProvisioner",
"description": "Provides a simple method to provision access to site analytics. Integration with Content Management System is highly advised.",
"version": "4.0.1",
"version": "5.0.0",
"theme": false,
"require": {
"matomo": ">=4.0.0-b1,<5.0.0-b1",
"matomo": ">=5.0.0-b1,<6.0.0-b1",
"php": ">=7.0.0"
},
"authors": [
{
"name": "Josh Brule",
"email": "",
"homepage": "https:\/\/www.linkedin.com\/pub\/joshua-brule\/15\/326\/9b9"
"homepage": "https:\/\/github.com\/jbrule"
}
],
"homepage": "https:\/\/github.com\/jbrule\/matomoplugin-SiteAccessProvisioner",
Expand Down

0 comments on commit 3a557a6

Please sign in to comment.