-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathApiQuotaHelper.php
45 lines (42 loc) · 1.04 KB
/
ApiQuotaHelper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\GoogleAnalyticsImporter;
/**
* Utility class with methods to manage Google Analytics Importer INI configuration.
*/
class ApiQuotaHelper
{
/**
* Calculate the daily maximum api quota available for the instance
* @return int
*/
public function getMaxDailyApiQuota(): int
{
//Local installation. No limitations from google applicable
return -1;
}
public function getBalanceApiQuota()
{
return $this->getMaxDailyApiQuota();
}
public function saveApiUsed($numQueries)
{
//No need to save since it's a local installation
return;
}
public function trackEvent($event, $name)
{
//DI to takeover on ConnectAccount
return;
}
public function getImportCountForTheDay()
{
//Local installation. No limitations from google applicable
return -1;
}
}