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:
authormattab <matthieu.aubry@gmail.com>2013-10-07 08:29:24 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-07 08:29:26 +0400
commita27771ee5a807eccbed9c9bc62262e79f59fe065 (patch)
tree4a15c24a9a4d7b4d79134a985c11c4e68168261e /core/Archive.php
parent6aa7ab6538cdd84af0b89b6e2d2d9524600ac5f2 (diff)
Refs #4125 Renaming plugin from Referers to Referrers
* updating all variables/methods containing Referers * RENAMING custom segments definition, and custom scheduled reports definition, so that when they load "Referers" segment/report it still works as expected * RENAMING old archived data so that archived blobs are called Referrers * Reverting part of 0deb2bbb8d5598200f7adfbc77b190516f919e48 * Update integration tests generating PDF+HTML with images on my dev box (GD 2.1 and PHP 5.5)
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php14
1 files changed, 5 insertions, 9 deletions
diff --git a/core/Archive.php b/core/Archive.php
index 543840ec02..694cf55e05 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -61,7 +61,7 @@ class Archive
* Archive IDs are indexed by done flag and period, ie:
*
* array(
- * 'done.Referers' => array(
+ * 'done.Referrers' => array(
* '2010-01-01' => 1,
* '2010-01-02' => 2,
* ),
@@ -170,7 +170,7 @@ class Archive
* Returns the value of the element $name from the current archive
* The value to be returned is a numeric value and is stored in the archive_numeric_* tables
*
- * @param string|array $names One or more archive names, eg, 'nb_visits', 'Referers_distinctKeywords',
+ * @param string|array $names One or more archive names, eg, 'nb_visits', 'Referrers_distinctKeywords',
* etc.
* @return mixed False if no value with the given name, numeric if only one site
* and date and we're not forcing an index, and array if multiple
@@ -201,7 +201,7 @@ class Archive
*
* It can return anything from strings, to serialized PHP arrays or PHP objects, etc.
*
- * @param string|array $names One or more archive names, eg, 'Referers_keywordBySearchEngine'.
+ * @param string|array $names One or more archive names, eg, 'Referrers_keywordBySearchEngine'.
* @param null $idSubtable
* @return string|array|bool False if no value with the given name, numeric if only one site
* and date and we're not forcing an index, and array if multiple
@@ -218,7 +218,7 @@ class Archive
*
* Note: Every DataTable instance returned will have at most one row in it.
*
- * @param string|array $names One or more archive names, eg, 'nb_visits', 'Referers_distinctKeywords',
+ * @param string|array $names One or more archive names, eg, 'nb_visits', 'Referrers_distinctKeywords',
* etc.
* @return DataTable|DataTable\Map|bool False if no value with the given names. Based on the number
* of sites/periods, the result can be a DataTable\Map, which
@@ -233,7 +233,7 @@ class Archive
/**
* This method will build a dataTable from the blob value $name in the current archive.
*
- * For example $name = 'Referers_searchEngineByKeyword' will return a
+ * For example $name = 'Referrers_searchEngineByKeyword' will return a
* DataTable containing all the keywords. If a $idSubtable is given, the method
* will return the subTable of $name. If 'all' is supplied for $idSubtable every subtable
* will be returned.
@@ -644,10 +644,6 @@ class Archive
}
$plugin = substr($report, 0, strpos($report, '_'));
- if ($plugin == 'Referrers') { // TODO: remove when Referers plugin name is changed
- $plugin = 'Referers';
- }
-
if (empty($plugin)
|| !\Piwik\PluginsManager::getInstance()->isPluginActivated($plugin)
) {