Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SitesManager/API.php')
-rw-r--r--plugins/SitesManager/API.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/plugins/SitesManager/API.php b/plugins/SitesManager/API.php
index 3ec7b13efc..207e40e196 100644
--- a/plugins/SitesManager/API.php
+++ b/plugins/SitesManager/API.php
@@ -307,33 +307,6 @@ class API extends \Piwik\Plugin\API
}
/**
- * Returns the list of the website IDs that received some visits since the specified timestamp.
- * Requires Super User access.
- *
- * @param bool|int $timestamp
- * @return array The list of website IDs
- * @deprecated since 2.15 This method will be removed in Matomo 3.0, there is no replacement.
- */
- public function getSitesIdWithVisits($timestamp = false)
- {
- Piwik::checkUserHasSuperUserAccess();
-
- if (empty($timestamp)) $timestamp = time();
-
- $time = Date::factory((int)$timestamp)->getDatetime();
- $now = Date::now()->addHour(1)->getDatetime();
-
- $result = $this->getModel()->getSitesWithVisits($time, $now);
-
- $idSites = array();
- foreach ($result as $idSite) {
- $idSites[] = $idSite['idsite'];
- }
-
- return $idSites;
- }
-
- /**
* Returns the list of websites with the 'admin' access for the current user.
* For the superUser it returns all the websites in the database.
*
@@ -1062,29 +1035,6 @@ class API extends \Piwik\Plugin\API
}
/**
- * Returns true if site-specific user agent exclusion has been enabled. If it hasn't,
- * only the global user agent substrings (see @setGlobalExcludedUserAgents) will be used.
- *
- * @return bool
- * @deprecated Will be removed in Matomo 4.0
- */
- public function isSiteSpecificUserAgentExcludeEnabled()
- {
- return true;
- }
-
- /**
- * Sets whether it should be allowed to exclude different user agents for different
- * websites.
- *
- * @param bool $enabled
- * @deprecated Will be removed in Matomo 4.0
- */
- public function setSiteSpecificUserAgentExcludeEnabled($enabled)
- {
- }
-
- /**
* Returns true if the default behavior is to keep URL fragments when tracking,
* false if otherwise.
*