eu_tax_countries.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler 1.4.2, at app/Services/Localization/i18n/eu_tax_countries.php
| 1 | <?php |
| 2 | /** |
| 3 | * Continents |
| 4 | * |
| 5 | * Returns an array of continents. |
| 6 | * |
| 7 | * @version 1.0.0 |
| 8 | */ |
| 9 | |
| 10 | defined( 'ABSPATH' ) || exit; |
| 11 | |
| 12 | return array( |
| 13 | 'EU' => array( |
| 14 | 'name' => __( 'European Union', 'fluent-cart' ), |
| 15 | 'countries' => array( |
| 16 | 'AT', // Austria |
| 17 | 'BE', // Belgium |
| 18 | 'BG', // Bulgaria |
| 19 | 'HR', // Croatia |
| 20 | 'CY', // Cyprus |
| 21 | 'CZ', // Czech Republic |
| 22 | 'DK', // Denmark |
| 23 | 'EE', // Estonia |
| 24 | 'FI', // Finland |
| 25 | 'FR', // France |
| 26 | 'DE', // Germany |
| 27 | 'GR', // Greece |
| 28 | 'HU', // Hungary |
| 29 | 'IE', // Ireland |
| 30 | 'IT', // Italy |
| 31 | 'LV', // Latvia |
| 32 | 'LT', // Lithuania |
| 33 | 'LU', // Luxembourg |
| 34 | 'MT', // Malta |
| 35 | 'NL', // Netherlands |
| 36 | 'PL', // Poland |
| 37 | 'PT', // Portugal |
| 38 | 'RO', // Romania |
| 39 | 'SK', // Slovakia |
| 40 | 'SI', // Slovenia |
| 41 | 'ES', // Spain |
| 42 | 'SE', // Sweden |
| 43 | ), |
| 44 | ), |
| 45 | ); |
| 46 |