continents.php
6 years ago
countries-extra.php
6 years ago
countries.php
6 years ago
currencies.php
6 years ago
languages-to-countries.php
6 years ago
languages.php
6 years ago
continents.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Continent database. |
| 11 | * |
| 12 | * Primary reference: ISO 3166-1 alpha-2 |
| 13 | */ |
| 14 | return array( |
| 15 | 'unk', // unknown |
| 16 | 'amn', // North America |
| 17 | 'amc', // Central America |
| 18 | 'ams', // South America |
| 19 | 'eur', // Europe |
| 20 | 'afr', // Africa |
| 21 | 'asi', // Asia |
| 22 | 'oce', // Oceania |
| 23 | 'ant', // Antarctica |
| 24 | ); |
| 25 |