PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.4.2
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.4.2
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
fluent-cart / app / Services / Localization / i18n / eu_tax_countries.php

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

46 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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