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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-06-01 12:33:42 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-06-01 12:33:42 +0300
commit869e5715b30ac6c06ffebb6ce9a0217f1b21bbb6 (patch)
tree4e42f30fbbb7bc95a6c6b97f35a8ec6993d74785 /core/Archive.php
parente6333c28d6aebb2a924221d9cb330ec8f77685d0 (diff)
Removed deprecated method scheduled for removal (fixing unit tests)
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/Archive.php b/core/Archive.php
index a5d6c29609..097ed9024d 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -299,36 +299,6 @@ class Archive
}
/**
- * Queries and returns blob data in an array.
- *
- * Reports are stored in blobs as serialized arrays of {@link DataTable\Row} instances, but this
- * data can technically be anything. In other words, you can store whatever you want
- * as archive data blobs.
- *
- * If multiple sites were requested in {@link build()} or {@link factory()} the result will
- * be indexed by site ID.
- *
- * If multiple periods were requested in {@link build()} or {@link factory()} the result will
- * be indexed by period.
- *
- * The site ID index is always first, so if multiple sites & periods were requested, the result
- * will be indexed by site ID first, then period.
- *
- * @param string|array $names One or more archive names, eg, `'Referrers_keywordBySearchEngine'`.
- * @param null|string $idSubtable If we're returning serialized DataTable data, then this refers
- * to the subtable ID to return. If set to 'all', all subtables
- * of each requested report are returned.
- * @return array An array of appropriately indexed blob data.
- *
- * @deprecated since Piwik 2.12. Use one of the getDatable* methods instead.
- */
- public function getBlob($names, $idSubtable = null)
- {
- $data = $this->get($names, 'blob', $idSubtable);
- return $data->getIndexedArray($this->getResultIndices());
- }
-
- /**
* Queries and returns metric data in a DataTable instance.
*
* If multiple sites were requested in {@link build()} or {@link factory()} the result will