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

continents.php « Resources « Data « Intl « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1961c34187eec6da72365b5ad07dd133c4c119bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

/**
 * Continent database.
 *
 * Primary reference: ISO 3166-1 alpha-2
 */
return array(
    'unk', // unknown
    'amn', // North America
    'amc', // Central America
    'ams', // South America
    'eur', // Europe
    'afr', // Africa
    'asi', // Asia
    'oce', // Oceania
    'ant', // Antarctica
);