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:
authorKévin Subileau <ksubileau@github.fake>2013-03-17 21:10:56 +0400
committerKévin Subileau <ksubileau@github.fake>2013-03-17 21:10:56 +0400
commitb9622596871abd068cec36f8454682e474a1494f (patch)
treeafb36bdde6ee8a61f4e92f635f36a6da216cf190 /core/DataFiles
parentee923f6b14fc100c3fb57a673b094afffe893d32 (diff)
Move the "Providers" array to its own core/DataFiles/Providers.php
Diffstat (limited to 'core/DataFiles')
-rw-r--r--core/DataFiles/Providers.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/core/DataFiles/Providers.php b/core/DataFiles/Providers.php
new file mode 100644
index 0000000000..33467ba165
--- /dev/null
+++ b/core/DataFiles/Providers.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ * @category Piwik
+ * @package DataFiles
+ */
+
+/**
+ * Providers names
+ */
+if(!isset($GLOBALS['Piwik_ProviderNames']))
+{
+ $GLOBALS['Piwik_ProviderNames'] = array(
+ // France
+ "wanadoo" => "Orange",
+ "proxad" => "Free",
+ "bbox" => "Bouygues Telecom",
+ "bouyguestelecom" => "Bouygues Telecom",
+ "coucou-networks" => "Free Mobile",
+ "sfr" => "SFR", //Acronym, keep in uppercase
+ "univ-metz" => "Université de Lorraine",
+ "unilim" => "Université de Limoges",
+ "univ-paris5" => "Université Paris Descartes",
+
+ // US
+ "rr" => "Time Warner Cable Internet", // Not sure
+ );
+}