Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make two properties public for use in GA importer. #14772

Merged
merged 1 commit into from Aug 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/VisitorInterest/Archiver.php
Expand Up @@ -21,7 +21,7 @@ class Archiver extends \Piwik\Plugin\Archiver
const VISITS_COUNT_RECORD_NAME = 'VisitorInterest_visitsByVisitCount';
const DAYS_SINCE_LAST_RECORD_NAME = 'VisitorInterest_daysSinceLastVisit';

protected static $timeGap = array(
public static $timeGap = array(
array(0, 10, 's'),
array(11, 30, 's'),
array(31, 60, 's'),
Expand All @@ -33,7 +33,7 @@ class Archiver extends \Piwik\Plugin\Archiver
array(15, 30),
array(30)
);
protected static $pageGap = array(
public static $pageGap = array(
array(1, 1),
array(2, 2),
array(3, 3),
Expand Down