country-functions.php ➔ give_get_country_locale()   B
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 299

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 299
rs 8
c 0
b 0
f 0

How to fix   Long Method   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/**
3
 * Country Functions
4
 *
5
 * @package     Give
6
 * @subpackage  Functions
7
 * @copyright   Copyright (c) 2016, GiveWP
8
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
9
 * @since       1.0
10
 */
11
12
// Exit if accessed directly.
13
if ( ! defined( 'ABSPATH' ) ) {
14
	exit;
15
}
16
17
/**
18
 * Get Site Base Country
19
 *
20
 * @since 1.0
21
 * @return string $country The two letter country code for the site's base country
22
 */
23
function give_get_country() {
24
	$give_options = give_get_settings();
25
	$country      = isset( $give_options['base_country'] ) ? $give_options['base_country'] : 'US';
26
27
	return apply_filters( 'give_give_country', $country );
28
}
29
30
/**
31
 * Get Site Base State
32
 *
33
 * @since 1.0
34
 * @return string $state The site's base state name
35
 */
36
function give_get_state() {
37
	$give_options = give_get_settings();
38
	$state        = isset( $give_options['base_state'] ) ? $give_options['base_state'] : false;
39
40
	return apply_filters( 'give_give_state', $state );
41
}
42
43
/**
44
 * Get Site States
45
 *
46
 * @since 1.0
47
 *
48
 * @param null $country
49
 *
50
 * @return mixed  A list of states for the site's base country.
51
 */
52
function give_get_states( $country = null ) {
53
	// If Country have no states return empty array.
54
	$states = array();
55
56
	// Check if Country Code is empty or not.
57
	if ( empty( $country ) ) {
58
		// Get defalut country code that is being set by the admin.
59
		$country = give_get_country();
60
	}
61
62
	// Get all the list of the states in array key format where key is the country code and value is the states that it contain.
63
	$states_list = give_states_list();
64
65
	// Check if $country code exists in the array key.
66
	if ( array_key_exists( $country, $states_list ) ) {
67
		$states = $states_list[ $country ];
68
	}
69
70
	/**
71
	 * Filter the query in case tables are non-standard.
72
	 *
73
	 * @param string $query Database count query
74
	 */
75
	return (array) apply_filters( 'give_give_states', $states );
76
}
77
78
/**
79
 * Get Country List
80
 *
81
 * @since 1.0
82
 * @return array $countries A list of the available countries.
83
 */
84
function give_get_country_list() {
85
	$countries = array(
86
		''   => '',
87
		'US' => esc_html__( 'United States', 'give' ),
88
		'CA' => esc_html__( 'Canada', 'give' ),
89
		'GB' => esc_html__( 'United Kingdom', 'give' ),
90
		'AF' => esc_html__( 'Afghanistan', 'give' ),
91
		'AL' => esc_html__( 'Albania', 'give' ),
92
		'DZ' => esc_html__( 'Algeria', 'give' ),
93
		'AS' => esc_html__( 'American Samoa', 'give' ),
94
		'AD' => esc_html__( 'Andorra', 'give' ),
95
		'AO' => esc_html__( 'Angola', 'give' ),
96
		'AI' => esc_html__( 'Anguilla', 'give' ),
97
		'AQ' => esc_html__( 'Antarctica', 'give' ),
98
		'AG' => esc_html__( 'Antigua and Barbuda', 'give' ),
99
		'AR' => esc_html__( 'Argentina', 'give' ),
100
		'AM' => esc_html__( 'Armenia', 'give' ),
101
		'AW' => esc_html__( 'Aruba', 'give' ),
102
		'AU' => esc_html__( 'Australia', 'give' ),
103
		'AT' => esc_html__( 'Austria', 'give' ),
104
		'AZ' => esc_html__( 'Azerbaijan', 'give' ),
105
		'BS' => esc_html__( 'Bahamas', 'give' ),
106
		'BH' => esc_html__( 'Bahrain', 'give' ),
107
		'BD' => esc_html__( 'Bangladesh', 'give' ),
108
		'BB' => esc_html__( 'Barbados', 'give' ),
109
		'BY' => esc_html__( 'Belarus', 'give' ),
110
		'BE' => esc_html__( 'Belgium', 'give' ),
111
		'BZ' => esc_html__( 'Belize', 'give' ),
112
		'BJ' => esc_html__( 'Benin', 'give' ),
113
		'BM' => esc_html__( 'Bermuda', 'give' ),
114
		'BT' => esc_html__( 'Bhutan', 'give' ),
115
		'BO' => esc_html__( 'Bolivia', 'give' ),
116
		'BA' => esc_html__( 'Bosnia and Herzegovina', 'give' ),
117
		'BW' => esc_html__( 'Botswana', 'give' ),
118
		'BV' => esc_html__( 'Bouvet Island', 'give' ),
119
		'BR' => esc_html__( 'Brazil', 'give' ),
120
		'IO' => esc_html__( 'British Indian Ocean Territory', 'give' ),
121
		'BN' => esc_html__( 'Brunei Darrussalam', 'give' ),
122
		'BG' => esc_html__( 'Bulgaria', 'give' ),
123
		'BF' => esc_html__( 'Burkina Faso', 'give' ),
124
		'BI' => esc_html__( 'Burundi', 'give' ),
125
		'KH' => esc_html__( 'Cambodia', 'give' ),
126
		'CM' => esc_html__( 'Cameroon', 'give' ),
127
		'CV' => esc_html__( 'Cape Verde', 'give' ),
128
		'KY' => esc_html__( 'Cayman Islands', 'give' ),
129
		'CF' => esc_html__( 'Central African Republic', 'give' ),
130
		'TD' => esc_html__( 'Chad', 'give' ),
131
		'CL' => esc_html__( 'Chile', 'give' ),
132
		'CN' => esc_html__( 'China', 'give' ),
133
		'CX' => esc_html__( 'Christmas Island', 'give' ),
134
		'CC' => esc_html__( 'Cocos Islands', 'give' ),
135
		'CO' => esc_html__( 'Colombia', 'give' ),
136
		'KM' => esc_html__( 'Comoros', 'give' ),
137
		'CD' => esc_html__( 'Congo, Democratic People\'s Republic', 'give' ),
138
		'CG' => esc_html__( 'Congo, Republic of', 'give' ),
139
		'CK' => esc_html__( 'Cook Islands', 'give' ),
140
		'CR' => esc_html__( 'Costa Rica', 'give' ),
141
		'CI' => esc_html__( 'Cote d\'Ivoire', 'give' ),
142
		'HR' => esc_html__( 'Croatia/Hrvatska', 'give' ),
143
		'CU' => esc_html__( 'Cuba', 'give' ),
144
		'CY' => esc_html__( 'Cyprus Island', 'give' ),
145
		'CZ' => esc_html__( 'Czech Republic', 'give' ),
146
		'DK' => esc_html__( 'Denmark', 'give' ),
147
		'DJ' => esc_html__( 'Djibouti', 'give' ),
148
		'DM' => esc_html__( 'Dominica', 'give' ),
149
		'DO' => esc_html__( 'Dominican Republic', 'give' ),
150
		'TP' => esc_html__( 'East Timor', 'give' ),
151
		'EC' => esc_html__( 'Ecuador', 'give' ),
152
		'EG' => esc_html__( 'Egypt', 'give' ),
153
		'GQ' => esc_html__( 'Equatorial Guinea', 'give' ),
154
		'SV' => esc_html__( 'El Salvador', 'give' ),
155
		'ER' => esc_html__( 'Eritrea', 'give' ),
156
		'EE' => esc_html__( 'Estonia', 'give' ),
157
		'ET' => esc_html__( 'Ethiopia', 'give' ),
158
		'FK' => esc_html__( 'Falkland Islands', 'give' ),
159
		'FO' => esc_html__( 'Faroe Islands', 'give' ),
160
		'FJ' => esc_html__( 'Fiji', 'give' ),
161
		'FI' => esc_html__( 'Finland', 'give' ),
162
		'FR' => esc_html__( 'France', 'give' ),
163
		'GF' => esc_html__( 'French Guiana', 'give' ),
164
		'PF' => esc_html__( 'French Polynesia', 'give' ),
165
		'TF' => esc_html__( 'French Southern Territories', 'give' ),
166
		'GA' => esc_html__( 'Gabon', 'give' ),
167
		'GM' => esc_html__( 'Gambia', 'give' ),
168
		'GE' => esc_html__( 'Georgia', 'give' ),
169
		'DE' => esc_html__( 'Germany', 'give' ),
170
		'GR' => esc_html__( 'Greece', 'give' ),
171
		'GH' => esc_html__( 'Ghana', 'give' ),
172
		'GI' => esc_html__( 'Gibraltar', 'give' ),
173
		'GL' => esc_html__( 'Greenland', 'give' ),
174
		'GD' => esc_html__( 'Grenada', 'give' ),
175
		'GP' => esc_html__( 'Guadeloupe', 'give' ),
176
		'GU' => esc_html__( 'Guam', 'give' ),
177
		'GT' => esc_html__( 'Guatemala', 'give' ),
178
		'GG' => esc_html__( 'Guernsey', 'give' ),
179
		'GN' => esc_html__( 'Guinea', 'give' ),
180
		'GW' => esc_html__( 'Guinea-Bissau', 'give' ),
181
		'GY' => esc_html__( 'Guyana', 'give' ),
182
		'HT' => esc_html__( 'Haiti', 'give' ),
183
		'HM' => esc_html__( 'Heard and McDonald Islands', 'give' ),
184
		'VA' => esc_html__( 'Holy See (City Vatican State)', 'give' ),
185
		'HN' => esc_html__( 'Honduras', 'give' ),
186
		'HK' => esc_html__( 'Hong Kong', 'give' ),
187
		'HU' => esc_html__( 'Hungary', 'give' ),
188
		'IS' => esc_html__( 'Iceland', 'give' ),
189
		'IN' => esc_html__( 'India', 'give' ),
190
		'ID' => esc_html__( 'Indonesia', 'give' ),
191
		'IR' => esc_html__( 'Iran', 'give' ),
192
		'IQ' => esc_html__( 'Iraq', 'give' ),
193
		'IE' => esc_html__( 'Ireland', 'give' ),
194
		'IM' => esc_html__( 'Isle of Man', 'give' ),
195
		'IL' => esc_html__( 'Israel', 'give' ),
196
		'IT' => esc_html__( 'Italy', 'give' ),
197
		'JM' => esc_html__( 'Jamaica', 'give' ),
198
		'JP' => esc_html__( 'Japan', 'give' ),
199
		'JE' => esc_html__( 'Jersey', 'give' ),
200
		'JO' => esc_html__( 'Jordan', 'give' ),
201
		'KZ' => esc_html__( 'Kazakhstan', 'give' ),
202
		'KE' => esc_html__( 'Kenya', 'give' ),
203
		'KI' => esc_html__( 'Kiribati', 'give' ),
204
		'KW' => esc_html__( 'Kuwait', 'give' ),
205
		'KG' => esc_html__( 'Kyrgyzstan', 'give' ),
206
		'LA' => esc_html__( 'Lao People\'s Democratic Republic', 'give' ),
207
		'LV' => esc_html__( 'Latvia', 'give' ),
208
		'LB' => esc_html__( 'Lebanon', 'give' ),
209
		'LS' => esc_html__( 'Lesotho', 'give' ),
210
		'LR' => esc_html__( 'Liberia', 'give' ),
211
		'LY' => esc_html__( 'Libyan Arab Jamahiriya', 'give' ),
212
		'LI' => esc_html__( 'Liechtenstein', 'give' ),
213
		'LT' => esc_html__( 'Lithuania', 'give' ),
214
		'LU' => esc_html__( 'Luxembourg', 'give' ),
215
		'MO' => esc_html__( 'Macau', 'give' ),
216
		'MK' => esc_html__( 'Macedonia', 'give' ),
217
		'MG' => esc_html__( 'Madagascar', 'give' ),
218
		'MW' => esc_html__( 'Malawi', 'give' ),
219
		'MY' => esc_html__( 'Malaysia', 'give' ),
220
		'MV' => esc_html__( 'Maldives', 'give' ),
221
		'ML' => esc_html__( 'Mali', 'give' ),
222
		'MT' => esc_html__( 'Malta', 'give' ),
223
		'MH' => esc_html__( 'Marshall Islands', 'give' ),
224
		'MQ' => esc_html__( 'Martinique', 'give' ),
225
		'MR' => esc_html__( 'Mauritania', 'give' ),
226
		'MU' => esc_html__( 'Mauritius', 'give' ),
227
		'YT' => esc_html__( 'Mayotte', 'give' ),
228
		'MX' => esc_html__( 'Mexico', 'give' ),
229
		'FM' => esc_html__( 'Micronesia', 'give' ),
230
		'MD' => esc_html__( 'Moldova, Republic of', 'give' ),
231
		'MC' => esc_html__( 'Monaco', 'give' ),
232
		'MN' => esc_html__( 'Mongolia', 'give' ),
233
		'ME' => esc_html__( 'Montenegro', 'give' ),
234
		'MS' => esc_html__( 'Montserrat', 'give' ),
235
		'MA' => esc_html__( 'Morocco', 'give' ),
236
		'MZ' => esc_html__( 'Mozambique', 'give' ),
237
		'MM' => esc_html__( 'Myanmar', 'give' ),
238
		'NA' => esc_html__( 'Namibia', 'give' ),
239
		'NR' => esc_html__( 'Nauru', 'give' ),
240
		'NP' => esc_html__( 'Nepal', 'give' ),
241
		'NL' => esc_html__( 'Netherlands', 'give' ),
242
		'AN' => esc_html__( 'Netherlands Antilles', 'give' ),
243
		'NC' => esc_html__( 'New Caledonia', 'give' ),
244
		'NZ' => esc_html__( 'New Zealand', 'give' ),
245
		'NI' => esc_html__( 'Nicaragua', 'give' ),
246
		'NE' => esc_html__( 'Niger', 'give' ),
247
		'NG' => esc_html__( 'Nigeria', 'give' ),
248
		'NU' => esc_html__( 'Niue', 'give' ),
249
		'NF' => esc_html__( 'Norfolk Island', 'give' ),
250
		'KP' => esc_html__( 'North Korea', 'give' ),
251
		'MP' => esc_html__( 'Northern Mariana Islands', 'give' ),
252
		'NO' => esc_html__( 'Norway', 'give' ),
253
		'OM' => esc_html__( 'Oman', 'give' ),
254
		'PK' => esc_html__( 'Pakistan', 'give' ),
255
		'PW' => esc_html__( 'Palau', 'give' ),
256
		'PS' => esc_html__( 'Palestinian Territories', 'give' ),
257
		'PA' => esc_html__( 'Panama', 'give' ),
258
		'PG' => esc_html__( 'Papua New Guinea', 'give' ),
259
		'PY' => esc_html__( 'Paraguay', 'give' ),
260
		'PE' => esc_html__( 'Peru', 'give' ),
261
		'PH' => esc_html__( 'Philippines', 'give' ),
262
		'PN' => esc_html__( 'Pitcairn Island', 'give' ),
263
		'PL' => esc_html__( 'Poland', 'give' ),
264
		'PT' => esc_html__( 'Portugal', 'give' ),
265
		'PR' => esc_html__( 'Puerto Rico', 'give' ),
266
		'QA' => esc_html__( 'Qatar', 'give' ),
267
		'RE' => esc_html__( 'Reunion Island', 'give' ),
268
		'RO' => esc_html__( 'Romania', 'give' ),
269
		'RU' => esc_html__( 'Russian Federation', 'give' ),
270
		'RW' => esc_html__( 'Rwanda', 'give' ),
271
		'SH' => esc_html__( 'Saint Helena', 'give' ),
272
		'KN' => esc_html__( 'Saint Kitts and Nevis', 'give' ),
273
		'LC' => esc_html__( 'Saint Lucia', 'give' ),
274
		'PM' => esc_html__( 'Saint Pierre and Miquelon', 'give' ),
275
		'VC' => esc_html__( 'Saint Vincent and the Grenadines', 'give' ),
276
		'SM' => esc_html__( 'San Marino', 'give' ),
277
		'ST' => esc_html__( 'Sao Tome and Principe', 'give' ),
278
		'SA' => esc_html__( 'Saudi Arabia', 'give' ),
279
		'SN' => esc_html__( 'Senegal', 'give' ),
280
		'RS' => esc_html__( 'Serbia', 'give' ),
281
		'SC' => esc_html__( 'Seychelles', 'give' ),
282
		'SL' => esc_html__( 'Sierra Leone', 'give' ),
283
		'SG' => esc_html__( 'Singapore', 'give' ),
284
		'SK' => esc_html__( 'Slovak Republic', 'give' ),
285
		'SI' => esc_html__( 'Slovenia', 'give' ),
286
		'SB' => esc_html__( 'Solomon Islands', 'give' ),
287
		'SO' => esc_html__( 'Somalia', 'give' ),
288
		'ZA' => esc_html__( 'South Africa', 'give' ),
289
		'GS' => esc_html__( 'South Georgia', 'give' ),
290
		'KR' => esc_html__( 'South Korea', 'give' ),
291
		'ES' => esc_html__( 'Spain', 'give' ),
292
		'LK' => esc_html__( 'Sri Lanka', 'give' ),
293
		'SD' => esc_html__( 'Sudan', 'give' ),
294
		'SR' => esc_html__( 'Suriname', 'give' ),
295
		'SJ' => esc_html__( 'Svalbard and Jan Mayen Islands', 'give' ),
296
		'SZ' => esc_html__( 'Swaziland', 'give' ),
297
		'SE' => esc_html__( 'Sweden', 'give' ),
298
		'CH' => esc_html__( 'Switzerland', 'give' ),
299
		'SY' => esc_html__( 'Syrian Arab Republic', 'give' ),
300
		'TW' => esc_html__( 'Taiwan', 'give' ),
301
		'TJ' => esc_html__( 'Tajikistan', 'give' ),
302
		'TZ' => esc_html__( 'Tanzania', 'give' ),
303
		'TG' => esc_html__( 'Togo', 'give' ),
304
		'TK' => esc_html__( 'Tokelau', 'give' ),
305
		'TO' => esc_html__( 'Tonga', 'give' ),
306
		'TH' => esc_html__( 'Thailand', 'give' ),
307
		'TT' => esc_html__( 'Trinidad and Tobago', 'give' ),
308
		'TN' => esc_html__( 'Tunisia', 'give' ),
309
		'TR' => esc_html__( 'Turkey', 'give' ),
310
		'TM' => esc_html__( 'Turkmenistan', 'give' ),
311
		'TC' => esc_html__( 'Turks and Caicos Islands', 'give' ),
312
		'TV' => esc_html__( 'Tuvalu', 'give' ),
313
		'UG' => esc_html__( 'Uganda', 'give' ),
314
		'UA' => esc_html__( 'Ukraine', 'give' ),
315
		'AE' => esc_html__( 'United Arab Emirates', 'give' ),
316
		'UY' => esc_html__( 'Uruguay', 'give' ),
317
		'UM' => esc_html__( 'US Minor Outlying Islands', 'give' ),
318
		'UZ' => esc_html__( 'Uzbekistan', 'give' ),
319
		'VU' => esc_html__( 'Vanuatu', 'give' ),
320
		'VE' => esc_html__( 'Venezuela', 'give' ),
321
		'VN' => esc_html__( 'Vietnam', 'give' ),
322
		'VG' => esc_html__( 'Virgin Islands (British)', 'give' ),
323
		'VI' => esc_html__( 'Virgin Islands (USA)', 'give' ),
324
		'WF' => esc_html__( 'Wallis and Futuna Islands', 'give' ),
325
		'EH' => esc_html__( 'Western Sahara', 'give' ),
326
		'WS' => esc_html__( 'Western Samoa', 'give' ),
327
		'YE' => esc_html__( 'Yemen', 'give' ),
328
		'YU' => esc_html__( 'Yugoslavia', 'give' ),
329
		'ZM' => esc_html__( 'Zambia', 'give' ),
330
		'ZW' => esc_html__( 'Zimbabwe', 'give' ),
331
	);
332
333
	return (array) apply_filters( 'give_countries', $countries );
334
}
335
336
/**
337
 * Get States List.
338
 *
339
 * @since 1.8.11
340
 *
341
 * @return array $states A list of the available states as in array key format.
342
 */
343
function give_states_list() {
344
	$states = array(
345
		'US' => give_get_states_list(),
346
		'CA' => give_get_provinces_list(),
347
		'AU' => give_get_australian_states_list(),
348
		'BR' => give_get_brazil_states_list(),
349
		'CN' => give_get_chinese_states_list(),
350
		'HK' => give_get_hong_kong_states_list(),
351
		'HU' => give_get_hungary_states_list(),
352
		'ID' => give_get_indonesian_states_list(),
353
		'IN' => give_get_indian_states_list(),
354
		'MY' => give_get_malaysian_states_list(),
355
		'NZ' => give_get_new_zealand_states_list(),
356
		'TH' => give_get_thailand_states_list(),
357
		'ZA' => give_get_south_african_states_list(),
358
		'ES' => give_get_spain_states_list(),
359
		'TR' => give_get_turkey_states_list(),
360
		'RO' => give_get_romania_states_list(),
361
		'PK' => give_get_pakistan_states_list(),
362
		'PH' => give_get_philippines_states_list(),
363
		'PE' => give_get_peru_states_list(),
364
		'NP' => give_get_nepal_states_list(),
365
		'NG' => give_get_nigerian_states_list(),
366
		'MX' => give_get_mexico_states_list(),
367
		'JP' => give_get_japan_states_list(),
368
		'IT' => give_get_italy_states_list(),
369
		'IR' => give_get_iran_states_list(),
370
		'IE' => give_get_ireland_states_list(),
371
		'GR' => give_get_greek_states_list(),
372
		'BO' => give_get_bolivian_states_list(),
373
		'BG' => give_get_bulgarian_states_list(),
374
		'BD' => give_get_bangladeshi_states_list(),
375
		'AR' => give_get_argentina_states_list(),
376
	);
377
378
	/**
379
	 * Filter can be used to add or remove the States from the Country.
380
	 *
381
	 * Filters can be use to add states inside the country all the states will be in array format ans the array key will be country code.
382
	 *
383
	 * @since 1.8.11
384
	 *
385
	 * @param array $states Contain the list of states in array key format where key of the array is there respected country code.
386
	 */
387
	return (array) apply_filters( 'give_states_list', $states );
388
}
389
390
/**
391
 * List of Country that have no states init.
392
 *
393
 * There are some country which does not have states init Example: germany.
394
 *
395
 * @since 1.8.11
396
 *
397
 * $$country array $country_code.
398
 */
399 View Code Duplication
function give_no_states_country_list() {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
400
	$country_list = array();
401
	$locale       = give_get_country_locale();
402
	foreach ( $locale as $key => $value ) {
403
		if ( ! empty( $value['state'] ) && isset( $value['state']['hidden'] ) && true === $value['state']['hidden'] ) {
404
			$country_list[ $key ] = $value['state'];
405
		}
406
	}
407
408
	/**
409
	 * Filter can be used to add or remove the Country that does not have states init.
410
	 *
411
	 * @since 1.8.11
412
	 *
413
	 * @param array $country Contain key as there country code & value as there country name.
414
	 */
415
	return (array) apply_filters( 'give_no_states_country_list', $country_list );
416
}
417
418
/**
419
 * List of Country in which states fields is not required.
420
 *
421
 * There are some country in which states fields is not required Example: United Kingdom ( uk ).
422
 *
423
 * @since 1.8.11
424
 *
425
 * $country array $country_code.
426
 */
427 View Code Duplication
function give_states_not_required_country_list() {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
428
	$country_list = array();
429
	$locale       = give_get_country_locale();
430
	foreach ( $locale as $key => $value ) {
431
		if ( ! empty( $value['state'] ) && isset( $value['state']['required'] ) && false === $value['state']['required'] ) {
432
			$country_list[ $key ] = $value['state'];
433
		}
434
	}
435
436
	/**
437
	 * Filter can be used to add or remove the Country in which states fields is not required.
438
	 *
439
	 * @since 1.8.11
440
	 *
441
	 * @param array $country Contain key as there country code & value as there country name.
442
	 */
443
	return (array) apply_filters( 'give_states_not_required_country_list', $country_list );
444
}
445
446
/**
447
 * List of Country in which city fields is not required.
448
 *
449
 * There are some country in which city fields is not required Example: Singapore ( sk ).
450
 *
451
 * @since 2.3.0
452
 *
453
 * $country array $country_list.
454
 */
455 View Code Duplication
function give_city_not_required_country_list() {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
456
	$country_list = array();
457
	$locale       = give_get_country_locale();
458
	foreach ( $locale as $key => $value ) {
459
		if ( ! empty( $value['city'] ) && isset( $value['city']['required'] ) && false === $value['city']['required'] ) {
460
			$country_list[ $key ] = $value['city'];
461
		}
462
	}
463
464
	/**
465
	 * Filter can be used to add or remove the Country in which city fields is not required.
466
	 *
467
	 * @since 2.3.0
468
	 *
469
	 * @param array $country_list Contain key as there country code & value as there country name.
470
	 */
471
	return (array) apply_filters( 'give_city_not_required_country_list', $country_list );
472
}
473
474
/**
475
 * Get the country name by list key.
476
 *
477
 * @since 1.8.12
478
 *
479
 * @param string $key
480
 *
481
 * @return string|bool
482
 */
483
function give_get_country_name_by_key( $key ) {
484
	$country_list = give_get_country_list();
485
486
	if ( array_key_exists( $key, $country_list ) ) {
487
		return $country_list[ $key ];
488
	}
489
490
	return false;
491
}
492
493
/**
494
 * Get the label that need to show as an placeholder.
495
 *
496
 * @ since 1.8.12
497
 *
498
 * @return array $country_states_label
499
 */
500
function give_get_states_label() {
501
	$country_states_label = array();
502
	$default_label        = __( 'State', 'give' );
503
	$locale               = give_get_country_locale();
504
	foreach ( $locale as $key => $value ) {
505
		$label = $default_label;
506
		if ( ! empty( $value['state'] ) && ! empty( $value['state']['label'] ) ) {
507
			$label = $value['state']['label'];
508
		}
509
		$country_states_label[ $key ] = $label;
510
	}
511
512
	/**
513
	 * Filter can be used to add or remove the Country that does not have states init.
514
	 *
515
	 * @since 1.8.11
516
	 *
517
	 * @param array $country Contain key as there country code & value as there country name.
518
	 */
519
	return (array) apply_filters( 'give_get_states_label', $country_states_label );
520
}
521
522
/**
523
 * Get country locale settings.
524
 *
525
 * @since 1.8.12
526
 *
527
 * @return array
528
 */
529
function give_get_country_locale() {
530
	return (array) apply_filters( 'give_get_country_locale', array(
531
		'AE' => array(
532
			'state' => array(
533
				'required' => false,
534
			),
535
		),
536
		'AF' => array(
537
			'state' => array(
538
				'required' => false,
539
				'hidden'   => true,
540
			),
541
		),
542
		'AT' => array(
543
			'state' => array(
544
				'required' => false,
545
				'hidden'   => true,
546
			),
547
		),
548
		'AU' => array(
549
			'state' => array(
550
				'label' => __( 'State', 'give' ),
551
			),
552
		),
553
		'AX' => array(
554
			'state' => array(
555
				'required' => false,
556
			),
557
		),
558
		'BD' => array(
559
			'state' => array(
560
				'label' => __( 'District', 'give' ),
561
			),
562
		),
563
		'BE' => array(
564
			'state' => array(
565
				'required' => false,
566
				'label'    => __( 'Province', 'give' ),
567
				'hidden'   => true,
568
			),
569
		),
570
		'BI' => array(
571
			'state' => array(
572
				'required' => false,
573
			),
574
		),
575
		'CA' => array(
576
			'state' => array(
577
				'label' => __( 'Province', 'give' ),
578
			),
579
		),
580
		'CH' => array(
581
			'state' => array(
582
				'label'    => __( 'Canton', 'give' ),
583
				'required' => false,
584
				'hidden'   => true,
585
			),
586
		),
587
		'CL' => array(
588
			'state' => array(
589
				'label' => __( 'Region', 'give' ),
590
			),
591
		),
592
		'CN' => array(
593
			'state' => array(
594
				'label' => __( 'Province', 'give' ),
595
			),
596
		),
597
		'CZ' => array(
598
			'state' => array(
599
				'required' => false,
600
				'hidden'   => true,
601
			),
602
		),
603
		'DE' => array(
604
			'state' => array(
605
				'required' => false,
606
				'hidden'   => true,
607
			),
608
		),
609
		'DK' => array(
610
			'state' => array(
611
				'required' => false,
612
				'hidden'   => true,
613
			),
614
		),
615
		'EE' => array(
616
			'state' => array(
617
				'required' => false,
618
				'hidden'   => true,
619
			),
620
		),
621
		'FI' => array(
622
			'state' => array(
623
				'required' => false,
624
				'hidden'   => true,
625
			),
626
		),
627
		'FR' => array(
628
			'state' => array(
629
				'required' => false,
630
				'hidden'   => true,
631
			),
632
		),
633
		'GP' => array(
634
			'state' => array(
635
				'required' => false,
636
			),
637
		),
638
		'GF' => array(
639
			'state' => array(
640
				'required' => false,
641
			),
642
		),
643
		'HK' => array(
644
			'state' => array(
645
				'label' => __( 'Region', 'give' ),
646
			),
647
		),
648
		'HU' => array(
649
			'state' => array(
650
				'label'  => __( 'County', 'give' ),
651
				'hidden' => true,
652
			),
653
		),
654
		'ID' => array(
655
			'state' => array(
656
				'label' => __( 'Province', 'give' ),
657
			),
658
		),
659
		'IE' => array(
660
			'state' => array(
661
				'label' => __( 'County', 'give' ),
662
			),
663
		),
664
		'IS' => array(
665
			'state' => array(
666
				'required' => false,
667
				'hidden'   => true,
668
			),
669
		),
670
		'IL' => array(
671
			'state' => array(
672
				'required' => false,
673
			),
674
		),
675
		'IT' => array(
676
			'state' => array(
677
				'required' => true,
678
				'label'    => __( 'Province', 'give' ),
679
			),
680
		),
681
		'JP' => array(
682
			'state' => array(
683
				'label' => __( 'Prefecture', 'give' ),
684
			),
685
		),
686
		'KR' => array(
687
			'state' => array(
688
				'required' => false,
689
			),
690
		),
691
		'KW' => array(
692
			'state' => array(
693
				'required' => false,
694
			),
695
		),
696
		'LB' => array(
697
			'state' => array(
698
				'required' => false,
699
			),
700
		),
701
		'MQ' => array(
702
			'state' => array(
703
				'required' => false,
704
			),
705
		),
706
		'NL' => array(
707
			'state' => array(
708
				'required' => false,
709
				'label'    => __( 'Province', 'give' ),
710
				'hidden'   => true,
711
			),
712
		),
713
		'NZ' => array(
714
			'state' => array(
715
				'label' => __( 'Region', 'give' ),
716
			),
717
		),
718
		'NO' => array(
719
			'state' => array(
720
				'required' => false,
721
				'hidden'   => true,
722
			),
723
		),
724
		'NP' => array(
725
			'state' => array(
726
				'label' => __( 'State / Zone', 'give' ),
727
			),
728
		),
729
		'PL' => array(
730
			'state' => array(
731
				'required' => false,
732
				'hidden'   => true,
733
			),
734
		),
735
		'PT' => array(
736
			'state' => array(
737
				'required' => false,
738
				'hidden'   => true,
739
			),
740
		),
741
		'RE' => array(
742
			'state' => array(
743
				'required' => false,
744
			),
745
		),
746
		'RO' => array(
747
			'state' => array(
748
				'required' => false,
749
			),
750
		),
751
		'SG' => array(
752
			'state' => array(
753
				'required' => false,
754
			),
755
			'city'  => array(
756
				'required' => false,
757
			)
758
		),
759
		'SK' => array(
760
			'state' => array(
761
				'required' => false,
762
				'hidden'   => true,
763
			),
764
		),
765
		'SI' => array(
766
			'state' => array(
767
				'required' => false,
768
				'hidden'   => true,
769
			),
770
		),
771
		'ES' => array(
772
			'state' => array(
773
				'label' => __( 'Province', 'give' ),
774
			),
775
		),
776
		'LI' => array(
777
			'state' => array(
778
				'label'    => __( 'Municipality', 'give' ),
779
				'required' => false,
780
				'hidden'   => true,
781
			),
782
		),
783
		'LK' => array(
784
			'state' => array(
785
				'required' => false,
786
			),
787
		),
788
		'SE' => array(
789
			'state' => array(
790
				'required' => false,
791
				'hidden'   => true,
792
			),
793
		),
794
		'TR' => array(
795
			'state' => array(
796
				'label' => __( 'Province', 'give' ),
797
			),
798
		),
799
		'US' => array(
800
			'state' => array(
801
				'label' => __( 'State', 'give' ),
802
			),
803
		),
804
		'GB' => array(
805
			'state' => array(
806
				'label'    => __( 'County', 'give' ),
807
				'required' => false,
808
			),
809
		),
810
		'VN' => array(
811
			'state' => array(
812
				'required' => false,
813
				'hidden'   => true,
814
			),
815
		),
816
		'YT' => array(
817
			'state' => array(
818
				'required' => false,
819
			),
820
		),
821
		'ZA' => array(
822
			'state' => array(
823
				'label' => __( 'Province', 'give' ),
824
			),
825
		),
826
	) );
827
}
828
829
/**
830
 * Get Turkey States
831
 *
832
 * @since 1.8.12
833
 * @return array $states A list of states
834
 */
835
function give_get_turkey_states_list() {
836
	$states = array(
837
		''     => '',
838
		'TR01' => __( 'Adana', 'give' ),
839
		'TR02' => __( 'Ad&#305;yaman', 'give' ),
840
		'TR03' => __( 'Afyon', 'give' ),
841
		'TR04' => __( 'A&#287;r&#305;', 'give' ),
842
		'TR05' => __( 'Amasya', 'give' ),
843
		'TR06' => __( 'Ankara', 'give' ),
844
		'TR07' => __( 'Antalya', 'give' ),
845
		'TR08' => __( 'Artvin', 'give' ),
846
		'TR09' => __( 'Ayd&#305;n', 'give' ),
847
		'TR10' => __( 'Bal&#305;kesir', 'give' ),
848
		'TR11' => __( 'Bilecik', 'give' ),
849
		'TR12' => __( 'Bing&#246;l', 'give' ),
850
		'TR13' => __( 'Bitlis', 'give' ),
851
		'TR14' => __( 'Bolu', 'give' ),
852
		'TR15' => __( 'Burdur', 'give' ),
853
		'TR16' => __( 'Bursa', 'give' ),
854
		'TR17' => __( '&#199;anakkale', 'give' ),
855
		'TR18' => __( '&#199;ank&#305;r&#305;', 'give' ),
856
		'TR19' => __( '&#199;orum', 'give' ),
857
		'TR20' => __( 'Denizli', 'give' ),
858
		'TR21' => __( 'Diyarbak&#305;r', 'give' ),
859
		'TR22' => __( 'Edirne', 'give' ),
860
		'TR23' => __( 'Elaz&#305;&#287;', 'give' ),
861
		'TR24' => __( 'Erzincan', 'give' ),
862
		'TR25' => __( 'Erzurum', 'give' ),
863
		'TR26' => __( 'Eski&#351;ehir', 'give' ),
864
		'TR27' => __( 'Gaziantep', 'give' ),
865
		'TR28' => __( 'Giresun', 'give' ),
866
		'TR29' => __( 'G&#252;m&#252;&#351;hane', 'give' ),
867
		'TR30' => __( 'Hakkari', 'give' ),
868
		'TR31' => __( 'Hatay', 'give' ),
869
		'TR32' => __( 'Isparta', 'give' ),
870
		'TR33' => __( '&#304;&#231;el', 'give' ),
871
		'TR34' => __( '&#304;stanbul', 'give' ),
872
		'TR35' => __( '&#304;zmir', 'give' ),
873
		'TR36' => __( 'Kars', 'give' ),
874
		'TR37' => __( 'Kastamonu', 'give' ),
875
		'TR38' => __( 'Kayseri', 'give' ),
876
		'TR39' => __( 'K&#305;rklareli', 'give' ),
877
		'TR40' => __( 'K&#305;r&#351;ehir', 'give' ),
878
		'TR41' => __( 'Kocaeli', 'give' ),
879
		'TR42' => __( 'Konya', 'give' ),
880
		'TR43' => __( 'K&#252;tahya', 'give' ),
881
		'TR44' => __( 'Malatya', 'give' ),
882
		'TR45' => __( 'Manisa', 'give' ),
883
		'TR46' => __( 'Kahramanmara&#351;', 'give' ),
884
		'TR47' => __( 'Mardin', 'give' ),
885
		'TR48' => __( 'Mu&#287;la', 'give' ),
886
		'TR49' => __( 'Mu&#351;', 'give' ),
887
		'TR50' => __( 'Nev&#351;ehir', 'give' ),
888
		'TR51' => __( 'Ni&#287;de', 'give' ),
889
		'TR52' => __( 'Ordu', 'give' ),
890
		'TR53' => __( 'Rize', 'give' ),
891
		'TR54' => __( 'Sakarya', 'give' ),
892
		'TR55' => __( 'Samsun', 'give' ),
893
		'TR56' => __( 'Siirt', 'give' ),
894
		'TR57' => __( 'Sinop', 'give' ),
895
		'TR58' => __( 'Sivas', 'give' ),
896
		'TR59' => __( 'Tekirda&#287;', 'give' ),
897
		'TR60' => __( 'Tokat', 'give' ),
898
		'TR61' => __( 'Trabzon', 'give' ),
899
		'TR62' => __( 'Tunceli', 'give' ),
900
		'TR63' => __( '&#350;anl&#305;urfa', 'give' ),
901
		'TR64' => __( 'U&#351;ak', 'give' ),
902
		'TR65' => __( 'Van', 'give' ),
903
		'TR66' => __( 'Yozgat', 'give' ),
904
		'TR67' => __( 'Zonguldak', 'give' ),
905
		'TR68' => __( 'Aksaray', 'give' ),
906
		'TR69' => __( 'Bayburt', 'give' ),
907
		'TR70' => __( 'Karaman', 'give' ),
908
		'TR71' => __( 'K&#305;r&#305;kkale', 'give' ),
909
		'TR72' => __( 'Batman', 'give' ),
910
		'TR73' => __( '&#350;&#305;rnak', 'give' ),
911
		'TR74' => __( 'Bart&#305;n', 'give' ),
912
		'TR75' => __( 'Ardahan', 'give' ),
913
		'TR76' => __( 'I&#287;d&#305;r', 'give' ),
914
		'TR77' => __( 'Yalova', 'give' ),
915
		'TR78' => __( 'Karab&#252;k', 'give' ),
916
		'TR79' => __( 'Kilis', 'give' ),
917
		'TR80' => __( 'Osmaniye', 'give' ),
918
		'TR81' => __( 'D&#252;zce', 'give' ),
919
	);
920
921
	return apply_filters( 'give_turkey_states', $states );
922
}
923
924
/**
925
 * Get Romania States
926
 *
927
 * @since 1.8.12
928
 * @return array $states A list of states
929
 */
930
function give_get_romania_states_list() {
931
	$states = array(
932
		''   => '',
933
		'AB' => __( 'Alba', 'give' ),
934
		'AR' => __( 'Arad', 'give' ),
935
		'AG' => __( 'Arges', 'give' ),
936
		'BC' => __( 'Bacau', 'give' ),
937
		'BH' => __( 'Bihor', 'give' ),
938
		'BN' => __( 'Bistrita-Nasaud', 'give' ),
939
		'BT' => __( 'Botosani', 'give' ),
940
		'BR' => __( 'Braila', 'give' ),
941
		'BV' => __( 'Brasov', 'give' ),
942
		'B'  => __( 'Bucuresti', 'give' ),
943
		'BZ' => __( 'Buzau', 'give' ),
944
		'CL' => __( 'Calarasi', 'give' ),
945
		'CS' => __( 'Caras-Severin', 'give' ),
946
		'CJ' => __( 'Cluj', 'give' ),
947
		'CT' => __( 'Constanta', 'give' ),
948
		'CV' => __( 'Covasna', 'give' ),
949
		'DB' => __( 'Dambovita', 'give' ),
950
		'DJ' => __( 'Dolj', 'give' ),
951
		'GL' => __( 'Galati', 'give' ),
952
		'GR' => __( 'Giurgiu', 'give' ),
953
		'GJ' => __( 'Gorj', 'give' ),
954
		'HR' => __( 'Harghita', 'give' ),
955
		'HD' => __( 'Hunedoara', 'give' ),
956
		'IL' => __( 'Ialomita', 'give' ),
957
		'IS' => __( 'Iasi', 'give' ),
958
		'IF' => __( 'Ilfov', 'give' ),
959
		'MM' => __( 'Maramures', 'give' ),
960
		'MH' => __( 'Mehedinti', 'give' ),
961
		'MS' => __( 'Mures', 'give' ),
962
		'NT' => __( 'Neamt', 'give' ),
963
		'OT' => __( 'Olt', 'give' ),
964
		'PH' => __( 'Prahova', 'give' ),
965
		'SJ' => __( 'Salaj', 'give' ),
966
		'SM' => __( 'Satu Mare', 'give' ),
967
		'SB' => __( 'Sibiu', 'give' ),
968
		'SV' => __( 'Suceava', 'give' ),
969
		'TR' => __( 'Teleorman', 'give' ),
970
		'TM' => __( 'Timis', 'give' ),
971
		'TL' => __( 'Tulcea', 'give' ),
972
		'VL' => __( 'Valcea', 'give' ),
973
		'VS' => __( 'Vaslui', 'give' ),
974
		'VN' => __( 'Vrancea', 'give' ),
975
	);
976
977
	return apply_filters( 'give_romania_states', $states );
978
}
979
980
/**
981
 * Get Pakistan States
982
 *
983
 * @since 1.8.12
984
 * @return array $states A list of states
985
 */
986
function give_get_pakistan_states_list() {
987
	$states = array(
988
		''   => '',
989
		'JK' => __( 'Azad Kashmir', 'give' ),
990
		'BA' => __( 'Balochistan', 'give' ),
991
		'TA' => __( 'FATA', 'give' ),
992
		'GB' => __( 'Gilgit Baltistan', 'give' ),
993
		'IS' => __( 'Islamabad Capital Territory', 'give' ),
994
		'KP' => __( 'Khyber Pakhtunkhwa', 'give' ),
995
		'PB' => __( 'Punjab', 'give' ),
996
		'SD' => __( 'Sindh', 'give' ),
997
	);
998
999
	return apply_filters( 'give_pakistan_states', $states );
1000
}
1001
1002
/**
1003
 * Get Philippines States
1004
 *
1005
 * @since 1.8.12
1006
 * @return array $states A list of states
1007
 */
1008
function give_get_philippines_states_list() {
1009
	$states = array(
1010
		''    => '',
1011
		'ABR' => __( 'Abra', 'give' ),
1012
		'AGN' => __( 'Agusan del Norte', 'give' ),
1013
		'AGS' => __( 'Agusan del Sur', 'give' ),
1014
		'AKL' => __( 'Aklan', 'give' ),
1015
		'ALB' => __( 'Albay', 'give' ),
1016
		'ANT' => __( 'Antique', 'give' ),
1017
		'APA' => __( 'Apayao', 'give' ),
1018
		'AUR' => __( 'Aurora', 'give' ),
1019
		'BAS' => __( 'Basilan', 'give' ),
1020
		'BAN' => __( 'Bataan', 'give' ),
1021
		'BTN' => __( 'Batanes', 'give' ),
1022
		'BTG' => __( 'Batangas', 'give' ),
1023
		'BEN' => __( 'Benguet', 'give' ),
1024
		'BIL' => __( 'Biliran', 'give' ),
1025
		'BOH' => __( 'Bohol', 'give' ),
1026
		'BUK' => __( 'Bukidnon', 'give' ),
1027
		'BUL' => __( 'Bulacan', 'give' ),
1028
		'CAG' => __( 'Cagayan', 'give' ),
1029
		'CAN' => __( 'Camarines Norte', 'give' ),
1030
		'CAS' => __( 'Camarines Sur', 'give' ),
1031
		'CAM' => __( 'Camiguin', 'give' ),
1032
		'CAP' => __( 'Capiz', 'give' ),
1033
		'CAT' => __( 'Catanduanes', 'give' ),
1034
		'CAV' => __( 'Cavite', 'give' ),
1035
		'CEB' => __( 'Cebu', 'give' ),
1036
		'COM' => __( 'Compostela Valley', 'give' ),
1037
		'NCO' => __( 'Cotabato', 'give' ),
1038
		'DAV' => __( 'Davao del Norte', 'give' ),
1039
		'DAS' => __( 'Davao del Sur', 'give' ),
1040
		'DAC' => __( 'Davao Occidental', 'give' ), // TODO: Needs to be updated when ISO code is assigned
1041
		'DAO' => __( 'Davao Oriental', 'give' ),
1042
		'DIN' => __( 'Dinagat Islands', 'give' ),
1043
		'EAS' => __( 'Eastern Samar', 'give' ),
1044
		'GUI' => __( 'Guimaras', 'give' ),
1045
		'IFU' => __( 'Ifugao', 'give' ),
1046
		'ILN' => __( 'Ilocos Norte', 'give' ),
1047
		'ILS' => __( 'Ilocos Sur', 'give' ),
1048
		'ILI' => __( 'Iloilo', 'give' ),
1049
		'ISA' => __( 'Isabela', 'give' ),
1050
		'KAL' => __( 'Kalinga', 'give' ),
1051
		'LUN' => __( 'La Union', 'give' ),
1052
		'LAG' => __( 'Laguna', 'give' ),
1053
		'LAN' => __( 'Lanao del Norte', 'give' ),
1054
		'LAS' => __( 'Lanao del Sur', 'give' ),
1055
		'LEY' => __( 'Leyte', 'give' ),
1056
		'MAG' => __( 'Maguindanao', 'give' ),
1057
		'MAD' => __( 'Marinduque', 'give' ),
1058
		'MAS' => __( 'Masbate', 'give' ),
1059
		'MSC' => __( 'Misamis Occidental', 'give' ),
1060
		'MSR' => __( 'Misamis Oriental', 'give' ),
1061
		'MOU' => __( 'Mountain Province', 'give' ),
1062
		'NEC' => __( 'Negros Occidental', 'give' ),
1063
		'NER' => __( 'Negros Oriental', 'give' ),
1064
		'NSA' => __( 'Northern Samar', 'give' ),
1065
		'NUE' => __( 'Nueva Ecija', 'give' ),
1066
		'NUV' => __( 'Nueva Vizcaya', 'give' ),
1067
		'MDC' => __( 'Occidental Mindoro', 'give' ),
1068
		'MDR' => __( 'Oriental Mindoro', 'give' ),
1069
		'PLW' => __( 'Palawan', 'give' ),
1070
		'PAM' => __( 'Pampanga', 'give' ),
1071
		'PAN' => __( 'Pangasinan', 'give' ),
1072
		'QUE' => __( 'Quezon', 'give' ),
1073
		'QUI' => __( 'Quirino', 'give' ),
1074
		'RIZ' => __( 'Rizal', 'give' ),
1075
		'ROM' => __( 'Romblon', 'give' ),
1076
		'WSA' => __( 'Samar', 'give' ),
1077
		'SAR' => __( 'Sarangani', 'give' ),
1078
		'SIQ' => __( 'Siquijor', 'give' ),
1079
		'SOR' => __( 'Sorsogon', 'give' ),
1080
		'SCO' => __( 'South Cotabato', 'give' ),
1081
		'SLE' => __( 'Southern Leyte', 'give' ),
1082
		'SUK' => __( 'Sultan Kudarat', 'give' ),
1083
		'SLU' => __( 'Sulu', 'give' ),
1084
		'SUN' => __( 'Surigao del Norte', 'give' ),
1085
		'SUR' => __( 'Surigao del Sur', 'give' ),
1086
		'TAR' => __( 'Tarlac', 'give' ),
1087
		'TAW' => __( 'Tawi-Tawi', 'give' ),
1088
		'ZMB' => __( 'Zambales', 'give' ),
1089
		'ZAN' => __( 'Zamboanga del Norte', 'give' ),
1090
		'ZAS' => __( 'Zamboanga del Sur', 'give' ),
1091
		'ZSI' => __( 'Zamboanga Sibugay', 'give' ),
1092
		'00'  => __( 'Metro Manila', 'give' ),
1093
	);
1094
1095
	return apply_filters( 'give_philippines_states', $states );
1096
}
1097
1098
/**
1099
 * Get Peru States
1100
 *
1101
 * @since 1.8.12
1102
 * @return array $states A list of states
1103
 */
1104
function give_get_peru_states_list() {
1105
	$states = array(
1106
		''    => '',
1107
		'CAL' => __( 'El Callao', 'give' ),
1108
		'LMA' => __( 'Municipalidad Metropolitana de Lima', 'give' ),
1109
		'AMA' => __( 'Amazonas', 'give' ),
1110
		'ANC' => __( 'Ancash', 'give' ),
1111
		'APU' => __( 'Apur&iacute;mac', 'give' ),
1112
		'ARE' => __( 'Arequipa', 'give' ),
1113
		'AYA' => __( 'Ayacucho', 'give' ),
1114
		'CAJ' => __( 'Cajamarca', 'give' ),
1115
		'CUS' => __( 'Cusco', 'give' ),
1116
		'HUV' => __( 'Huancavelica', 'give' ),
1117
		'HUC' => __( 'Hu&aacute;nuco', 'give' ),
1118
		'ICA' => __( 'Ica', 'give' ),
1119
		'JUN' => __( 'Jun&iacute;n', 'give' ),
1120
		'LAL' => __( 'La Libertad', 'give' ),
1121
		'LAM' => __( 'Lambayeque', 'give' ),
1122
		'LIM' => __( 'Lima', 'give' ),
1123
		'LOR' => __( 'Loreto', 'give' ),
1124
		'MDD' => __( 'Madre de Dios', 'give' ),
1125
		'MOQ' => __( 'Moquegua', 'give' ),
1126
		'PAS' => __( 'Pasco', 'give' ),
1127
		'PIU' => __( 'Piura', 'give' ),
1128
		'PUN' => __( 'Puno', 'give' ),
1129
		'SAM' => __( 'San Mart&iacute;n', 'give' ),
1130
		'TAC' => __( 'Tacna', 'give' ),
1131
		'TUM' => __( 'Tumbes', 'give' ),
1132
		'UCA' => __( 'Ucayali', 'give' ),
1133
	);
1134
1135
	return apply_filters( 'give_peru_states', $states );
1136
}
1137
1138
/**
1139
 * Get Nepal States
1140
 *
1141
 * @since 1.8.12
1142
 * @return array $states A list of states
1143
 */
1144
function give_get_nepal_states_list() {
1145
	$states = array(
1146
		''    => '',
1147
		'BAG' => __( 'Bagmati', 'give' ),
1148
		'BHE' => __( 'Bheri', 'give' ),
1149
		'DHA' => __( 'Dhaulagiri', 'give' ),
1150
		'GAN' => __( 'Gandaki', 'give' ),
1151
		'JAN' => __( 'Janakpur', 'give' ),
1152
		'KAR' => __( 'Karnali', 'give' ),
1153
		'KOS' => __( 'Koshi', 'give' ),
1154
		'LUM' => __( 'Lumbini', 'give' ),
1155
		'MAH' => __( 'Mahakali', 'give' ),
1156
		'MEC' => __( 'Mechi', 'give' ),
1157
		'NAR' => __( 'Narayani', 'give' ),
1158
		'RAP' => __( 'Rapti', 'give' ),
1159
		'SAG' => __( 'Sagarmatha', 'give' ),
1160
		'SET' => __( 'Seti', 'give' ),
1161
	);
1162
1163
	return apply_filters( 'give_nepal_states', $states );
1164
}
1165
1166
/**
1167
 * Get Nigerian States
1168
 *
1169
 * @since 1.8.12
1170
 * @return array $states A list of states
1171
 */
1172
function give_get_nigerian_states_list() {
1173
	$states = array(
1174
		''   => '',
1175
		'AB' => __( 'Abia', 'give' ),
1176
		'FC' => __( 'Abuja', 'give' ),
1177
		'AD' => __( 'Adamawa', 'give' ),
1178
		'AK' => __( 'Akwa Ibom', 'give' ),
1179
		'AN' => __( 'Anambra', 'give' ),
1180
		'BA' => __( 'Bauchi', 'give' ),
1181
		'BY' => __( 'Bayelsa', 'give' ),
1182
		'BE' => __( 'Benue', 'give' ),
1183
		'BO' => __( 'Borno', 'give' ),
1184
		'CR' => __( 'Cross River', 'give' ),
1185
		'DE' => __( 'Delta', 'give' ),
1186
		'EB' => __( 'Ebonyi', 'give' ),
1187
		'ED' => __( 'Edo', 'give' ),
1188
		'EK' => __( 'Ekiti', 'give' ),
1189
		'EN' => __( 'Enugu', 'give' ),
1190
		'GO' => __( 'Gombe', 'give' ),
1191
		'IM' => __( 'Imo', 'give' ),
1192
		'JI' => __( 'Jigawa', 'give' ),
1193
		'KD' => __( 'Kaduna', 'give' ),
1194
		'KN' => __( 'Kano', 'give' ),
1195
		'KT' => __( 'Katsina', 'give' ),
1196
		'KE' => __( 'Kebbi', 'give' ),
1197
		'KO' => __( 'Kogi', 'give' ),
1198
		'KW' => __( 'Kwara', 'give' ),
1199
		'LA' => __( 'Lagos', 'give' ),
1200
		'NA' => __( 'Nasarawa', 'give' ),
1201
		'NI' => __( 'Niger', 'give' ),
1202
		'OG' => __( 'Ogun', 'give' ),
1203
		'ON' => __( 'Ondo', 'give' ),
1204
		'OS' => __( 'Osun', 'give' ),
1205
		'OY' => __( 'Oyo', 'give' ),
1206
		'PL' => __( 'Plateau', 'give' ),
1207
		'RI' => __( 'Rivers', 'give' ),
1208
		'SO' => __( 'Sokoto', 'give' ),
1209
		'TA' => __( 'Taraba', 'give' ),
1210
		'YO' => __( 'Yobe', 'give' ),
1211
		'ZA' => __( 'Zamfara', 'give' ),
1212
	);
1213
1214
	return apply_filters( 'give_nigerian_states', $states );
1215
}
1216
1217
/**
1218
 * Get Mexico States
1219
 *
1220
 * @since 1.8.12
1221
 * @return array $states A list of states
1222
 */
1223
function give_get_mexico_states_list() {
1224
	$states = array(
1225
		''                    => '',
1226
		'Distrito Federal'    => __( 'Distrito Federal', 'give' ),
1227
		'Jalisco'             => __( 'Jalisco', 'give' ),
1228
		'Nuevo Leon'          => __( 'Nuevo León', 'give' ),
1229
		'Aguascalientes'      => __( 'Aguascalientes', 'give' ),
1230
		'Baja California'     => __( 'Baja California', 'give' ),
1231
		'Baja California Sur' => __( 'Baja California Sur', 'give' ),
1232
		'Campeche'            => __( 'Campeche', 'give' ),
1233
		'Chiapas'             => __( 'Chiapas', 'give' ),
1234
		'Chihuahua'           => __( 'Chihuahua', 'give' ),
1235
		'Coahuila'            => __( 'Coahuila', 'give' ),
1236
		'Colima'              => __( 'Colima', 'give' ),
1237
		'Durango'             => __( 'Durango', 'give' ),
1238
		'Guanajuato'          => __( 'Guanajuato', 'give' ),
1239
		'Guerrero'            => __( 'Guerrero', 'give' ),
1240
		'Hidalgo'             => __( 'Hidalgo', 'give' ),
1241
		'Estado de Mexico'    => __( 'Edo. de México', 'give' ),
1242
		'Michoacan'           => __( 'Michoacán', 'give' ),
1243
		'Morelos'             => __( 'Morelos', 'give' ),
1244
		'Nayarit'             => __( 'Nayarit', 'give' ),
1245
		'Oaxaca'              => __( 'Oaxaca', 'give' ),
1246
		'Puebla'              => __( 'Puebla', 'give' ),
1247
		'Queretaro'           => __( 'Querétaro', 'give' ),
1248
		'Quintana Roo'        => __( 'Quintana Roo', 'give' ),
1249
		'San Luis Potosi'     => __( 'San Luis Potosí', 'give' ),
1250
		'Sinaloa'             => __( 'Sinaloa', 'give' ),
1251
		'Sonora'              => __( 'Sonora', 'give' ),
1252
		'Tabasco'             => __( 'Tabasco', 'give' ),
1253
		'Tamaulipas'          => __( 'Tamaulipas', 'give' ),
1254
		'Tlaxcala'            => __( 'Tlaxcala', 'give' ),
1255
		'Veracruz'            => __( 'Veracruz', 'give' ),
1256
		'Yucatan'             => __( 'Yucatán', 'give' ),
1257
		'Zacatecas'           => __( 'Zacatecas', 'give' ),
1258
	);
1259
1260
	return apply_filters( 'give_mexico_states', $states );
1261
}
1262
1263
/**
1264
 * Get Japan States
1265
 *
1266
 * @since 1.8.12
1267
 * @return array $states A list of states
1268
 */
1269
function give_get_japan_states_list() {
1270
	$states = array(
1271
		''     => '',
1272
		'JP01' => __( 'Hokkaido', 'give' ),
1273
		'JP02' => __( 'Aomori', 'give' ),
1274
		'JP03' => __( 'Iwate', 'give' ),
1275
		'JP04' => __( 'Miyagi', 'give' ),
1276
		'JP05' => __( 'Akita', 'give' ),
1277
		'JP06' => __( 'Yamagata', 'give' ),
1278
		'JP07' => __( 'Fukushima', 'give' ),
1279
		'JP08' => __( 'Ibaraki', 'give' ),
1280
		'JP09' => __( 'Tochigi', 'give' ),
1281
		'JP10' => __( 'Gunma', 'give' ),
1282
		'JP11' => __( 'Saitama', 'give' ),
1283
		'JP12' => __( 'Chiba', 'give' ),
1284
		'JP13' => __( 'Tokyo', 'give' ),
1285
		'JP14' => __( 'Kanagawa', 'give' ),
1286
		'JP15' => __( 'Niigata', 'give' ),
1287
		'JP16' => __( 'Toyama', 'give' ),
1288
		'JP17' => __( 'Ishikawa', 'give' ),
1289
		'JP18' => __( 'Fukui', 'give' ),
1290
		'JP19' => __( 'Yamanashi', 'give' ),
1291
		'JP20' => __( 'Nagano', 'give' ),
1292
		'JP21' => __( 'Gifu', 'give' ),
1293
		'JP22' => __( 'Shizuoka', 'give' ),
1294
		'JP23' => __( 'Aichi', 'give' ),
1295
		'JP24' => __( 'Mie', 'give' ),
1296
		'JP25' => __( 'Shiga', 'give' ),
1297
		'JP26' => __( 'Kyoto', 'give' ),
1298
		'JP27' => __( 'Osaka', 'give' ),
1299
		'JP28' => __( 'Hyogo', 'give' ),
1300
		'JP29' => __( 'Nara', 'give' ),
1301
		'JP30' => __( 'Wakayama', 'give' ),
1302
		'JP31' => __( 'Tottori', 'give' ),
1303
		'JP32' => __( 'Shimane', 'give' ),
1304
		'JP33' => __( 'Okayama', 'give' ),
1305
		'JP34' => __( 'Hiroshima', 'give' ),
1306
		'JP35' => __( 'Yamaguchi', 'give' ),
1307
		'JP36' => __( 'Tokushima', 'give' ),
1308
		'JP37' => __( 'Kagawa', 'give' ),
1309
		'JP38' => __( 'Ehime', 'give' ),
1310
		'JP39' => __( 'Kochi', 'give' ),
1311
		'JP40' => __( 'Fukuoka', 'give' ),
1312
		'JP41' => __( 'Saga', 'give' ),
1313
		'JP42' => __( 'Nagasaki', 'give' ),
1314
		'JP43' => __( 'Kumamoto', 'give' ),
1315
		'JP44' => __( 'Oita', 'give' ),
1316
		'JP45' => __( 'Miyazaki', 'give' ),
1317
		'JP46' => __( 'Kagoshima', 'give' ),
1318
		'JP47' => __( 'Okinawa', 'give' ),
1319
	);
1320
1321
	return apply_filters( 'give_japan_states', $states );
1322
}
1323
1324
/**
1325
 * Get Italy States
1326
 *
1327
 * @since 1.8.12
1328
 * @return array $states A list of states
1329
 */
1330
function give_get_italy_states_list() {
1331
	$states = array(
1332
		''   => '',
1333
		'AG' => __( 'Agrigento', 'give' ),
1334
		'AL' => __( 'Alessandria', 'give' ),
1335
		'AN' => __( 'Ancona', 'give' ),
1336
		'AO' => __( 'Aosta', 'give' ),
1337
		'AR' => __( 'Arezzo', 'give' ),
1338
		'AP' => __( 'Ascoli Piceno', 'give' ),
1339
		'AT' => __( 'Asti', 'give' ),
1340
		'AV' => __( 'Avellino', 'give' ),
1341
		'BA' => __( 'Bari', 'give' ),
1342
		'BT' => __( 'Barletta-Andria-Trani', 'give' ),
1343
		'BL' => __( 'Belluno', 'give' ),
1344
		'BN' => __( 'Benevento', 'give' ),
1345
		'BG' => __( 'Bergamo', 'give' ),
1346
		'BI' => __( 'Biella', 'give' ),
1347
		'BO' => __( 'Bologna', 'give' ),
1348
		'BZ' => __( 'Bolzano', 'give' ),
1349
		'BS' => __( 'Brescia', 'give' ),
1350
		'BR' => __( 'Brindisi', 'give' ),
1351
		'CA' => __( 'Cagliari', 'give' ),
1352
		'CL' => __( 'Caltanissetta', 'give' ),
1353
		'CB' => __( 'Campobasso', 'give' ),
1354
		'CI' => __( 'Carbonia-Iglesias', 'give' ),
1355
		'CE' => __( 'Caserta', 'give' ),
1356
		'CT' => __( 'Catania', 'give' ),
1357
		'CZ' => __( 'Catanzaro', 'give' ),
1358
		'CH' => __( 'Chieti', 'give' ),
1359
		'CO' => __( 'Como', 'give' ),
1360
		'CS' => __( 'Cosenza', 'give' ),
1361
		'CR' => __( 'Cremona', 'give' ),
1362
		'KR' => __( 'Crotone', 'give' ),
1363
		'CN' => __( 'Cuneo', 'give' ),
1364
		'EN' => __( 'Enna', 'give' ),
1365
		'FM' => __( 'Fermo', 'give' ),
1366
		'FE' => __( 'Ferrara', 'give' ),
1367
		'FI' => __( 'Firenze', 'give' ),
1368
		'FG' => __( 'Foggia', 'give' ),
1369
		'FC' => __( 'Forlì-Cesena', 'give' ),
1370
		'FR' => __( 'Frosinone', 'give' ),
1371
		'GE' => __( 'Genova', 'give' ),
1372
		'GO' => __( 'Gorizia', 'give' ),
1373
		'GR' => __( 'Grosseto', 'give' ),
1374
		'IM' => __( 'Imperia', 'give' ),
1375
		'IS' => __( 'Isernia', 'give' ),
1376
		'SP' => __( 'La Spezia', 'give' ),
1377
		'AQ' => __( "L'Aquila", 'give' ),
1378
		'LT' => __( 'Latina', 'give' ),
1379
		'LE' => __( 'Lecce', 'give' ),
1380
		'LC' => __( 'Lecco', 'give' ),
1381
		'LI' => __( 'Livorno', 'give' ),
1382
		'LO' => __( 'Lodi', 'give' ),
1383
		'LU' => __( 'Lucca', 'give' ),
1384
		'MC' => __( 'Macerata', 'give' ),
1385
		'MN' => __( 'Mantova', 'give' ),
1386
		'MS' => __( 'Massa-Carrara', 'give' ),
1387
		'MT' => __( 'Matera', 'give' ),
1388
		'ME' => __( 'Messina', 'give' ),
1389
		'MI' => __( 'Milano', 'give' ),
1390
		'MO' => __( 'Modena', 'give' ),
1391
		'MB' => __( 'Monza e della Brianza', 'give' ),
1392
		'NA' => __( 'Napoli', 'give' ),
1393
		'NO' => __( 'Novara', 'give' ),
1394
		'NU' => __( 'Nuoro', 'give' ),
1395
		'OT' => __( 'Olbia-Tempio', 'give' ),
1396
		'OR' => __( 'Oristano', 'give' ),
1397
		'PD' => __( 'Padova', 'give' ),
1398
		'PA' => __( 'Palermo', 'give' ),
1399
		'PR' => __( 'Parma', 'give' ),
1400
		'PV' => __( 'Pavia', 'give' ),
1401
		'PG' => __( 'Perugia', 'give' ),
1402
		'PU' => __( 'Pesaro e Urbino', 'give' ),
1403
		'PE' => __( 'Pescara', 'give' ),
1404
		'PC' => __( 'Piacenza', 'give' ),
1405
		'PI' => __( 'Pisa', 'give' ),
1406
		'PT' => __( 'Pistoia', 'give' ),
1407
		'PN' => __( 'Pordenone', 'give' ),
1408
		'PZ' => __( 'Potenza', 'give' ),
1409
		'PO' => __( 'Prato', 'give' ),
1410
		'RG' => __( 'Ragusa', 'give' ),
1411
		'RA' => __( 'Ravenna', 'give' ),
1412
		'RC' => __( 'Reggio Calabria', 'give' ),
1413
		'RE' => __( 'Reggio Emilia', 'give' ),
1414
		'RI' => __( 'Rieti', 'give' ),
1415
		'RN' => __( 'Rimini', 'give' ),
1416
		'RM' => __( 'Roma', 'give' ),
1417
		'RO' => __( 'Rovigo', 'give' ),
1418
		'SA' => __( 'Salerno', 'give' ),
1419
		'VS' => __( 'Medio Campidano', 'give' ),
1420
		'SS' => __( 'Sassari', 'give' ),
1421
		'SV' => __( 'Savona', 'give' ),
1422
		'SI' => __( 'Siena', 'give' ),
1423
		'SR' => __( 'Siracusa', 'give' ),
1424
		'SO' => __( 'Sondrio', 'give' ),
1425
		'TA' => __( 'Taranto', 'give' ),
1426
		'TE' => __( 'Teramo', 'give' ),
1427
		'TR' => __( 'Terni', 'give' ),
1428
		'TO' => __( 'Torino', 'give' ),
1429
		'OG' => __( 'Ogliastra', 'give' ),
1430
		'TP' => __( 'Trapani', 'give' ),
1431
		'TN' => __( 'Trento', 'give' ),
1432
		'TV' => __( 'Treviso', 'give' ),
1433
		'TS' => __( 'Trieste', 'give' ),
1434
		'UD' => __( 'Udine', 'give' ),
1435
		'VA' => __( 'Varese', 'give' ),
1436
		'VE' => __( 'Venezia', 'give' ),
1437
		'VB' => __( 'Verbano-Cusio-Ossola', 'give' ),
1438
		'VC' => __( 'Vercelli', 'give' ),
1439
		'VR' => __( 'Verona', 'give' ),
1440
		'VV' => __( 'Vibo Valentia', 'give' ),
1441
		'VI' => __( 'Vicenza', 'give' ),
1442
		'VT' => __( 'Viterbo', 'give' ),
1443
	);
1444
1445
	return apply_filters( 'give_italy_states', $states );
1446
}
1447
1448
/**
1449
 * Get Iran States
1450
 *
1451
 * @since 1.8.12
1452
 * @return array $states A list of states
1453
 */
1454
function give_get_iran_states_list() {
1455
	$states = array(
1456
		''    => '',
1457
		'KHZ' => __( 'Khuzestan  (خوزستان)', 'give' ),
1458
		'THR' => __( 'Tehran  (تهران)', 'give' ),
1459
		'ILM' => __( 'Ilaam (ایلام)', 'give' ),
1460
		'BHR' => __( 'Bushehr (بوشهر)', 'give' ),
1461
		'ADL' => __( 'Ardabil (اردبیل)', 'give' ),
1462
		'ESF' => __( 'Isfahan (اصفهان)', 'give' ),
1463
		'YZD' => __( 'Yazd (یزد)', 'give' ),
1464
		'KRH' => __( 'Kermanshah (کرمانشاه)', 'give' ),
1465
		'KRN' => __( 'Kerman (کرمان)', 'give' ),
1466
		'HDN' => __( 'Hamadan (همدان)', 'give' ),
1467
		'GZN' => __( 'Ghazvin (قزوین)', 'give' ),
1468
		'ZJN' => __( 'Zanjan (زنجان)', 'give' ),
1469
		'LRS' => __( 'Luristan (لرستان)', 'give' ),
1470
		'ABZ' => __( 'Alborz (البرز)', 'give' ),
1471
		'EAZ' => __( 'East Azarbaijan (آذربایجان شرقی)', 'give' ),
1472
		'WAZ' => __( 'West Azarbaijan (آذربایجان غربی)', 'give' ),
1473
		'CHB' => __( 'Chaharmahal and Bakhtiari (چهارمحال و بختیاری)', 'give' ),
1474
		'SKH' => __( 'South Khorasan (خراسان جنوبی)', 'give' ),
1475
		'RKH' => __( 'Razavi Khorasan (خراسان رضوی)', 'give' ),
1476
		'NKH' => __( 'North Khorasan (خراسان جنوبی)', 'give' ),
1477
		'SMN' => __( 'Semnan (سمنان)', 'give' ),
1478
		'FRS' => __( 'Fars (فارس)', 'give' ),
1479
		'QHM' => __( 'Qom (قم)', 'give' ),
1480
		'KRD' => __( 'Kurdistan / کردستان)', 'give' ),
1481
		'KBD' => __( 'Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)', 'give' ),
1482
		'GLS' => __( 'Golestan (گلستان)', 'give' ),
1483
		'GIL' => __( 'Gilan (گیلان)', 'give' ),
1484
		'MZN' => __( 'Mazandaran (مازندران)', 'give' ),
1485
		'MKZ' => __( 'Markazi (مرکزی)', 'give' ),
1486
		'HRZ' => __( 'Hormozgan (هرمزگان)', 'give' ),
1487
		'SBN' => __( 'Sistan and Baluchestan (سیستان و بلوچستان)', 'give' ),
1488
	);
1489
1490
	return apply_filters( 'give_iran_states', $states );
1491
}
1492
1493
/**
1494
 * Get Ireland States
1495
 *
1496
 * @since 1.8.12
1497
 * @return array $states A list of states
1498
 */
1499
function give_get_ireland_states_list() {
1500
	$states = array(
1501
		''   => '',
1502
		'CE' => __( 'Clare', 'give' ),
1503
		'CK' => __( 'Cork', 'give' ),
1504
		'CN' => __( 'Cavan', 'give' ),
1505
		'CW' => __( 'Carlow', 'give' ),
1506
		'DL' => __( 'Donegal', 'give' ),
1507
		'DN' => __( 'Dublin', 'give' ),
1508
		'GY' => __( 'Galway', 'give' ),
1509
		'KE' => __( 'Kildare', 'give' ),
1510
		'KK' => __( 'Kilkenny', 'give' ),
1511
		'KY' => __( 'Kerry', 'give' ),
1512
		'LD' => __( 'Longford', 'give' ),
1513
		'LH' => __( 'Louth', 'give' ),
1514
		'LK' => __( 'Limerick', 'give' ),
1515
		'LM' => __( 'Leitrim', 'give' ),
1516
		'LS' => __( 'Laois', 'give' ),
1517
		'MH' => __( 'Meath', 'give' ),
1518
		'MN' => __( 'Monaghan', 'give' ),
1519
		'MO' => __( 'Mayo', 'give' ),
1520
		'OY' => __( 'Offaly', 'give' ),
1521
		'RN' => __( 'Roscommon', 'give' ),
1522
		'SO' => __( 'Sligo', 'give' ),
1523
		'TY' => __( 'Tipperary', 'give' ),
1524
		'WD' => __( 'Waterford', 'give' ),
1525
		'WH' => __( 'Westmeath', 'give' ),
1526
		'WW' => __( 'Wicklow', 'give' ),
1527
		'WX' => __( 'Wexford', 'give' ),
1528
	);
1529
1530
	return apply_filters( 'give_ireland_states', $states );
1531
}
1532
1533
/**
1534
 * Get Greek States
1535
 *
1536
 * @since 1.8.12
1537
 * @return array $states A list of states
1538
 */
1539
function give_get_greek_states_list() {
1540
	$states = array(
1541
		''  => '',
1542
		'I' => __( 'Αττική', 'give' ),
1543
		'A' => __( 'Ανατολική Μακεδονία και Θράκη', 'give' ),
1544
		'B' => __( 'Κεντρική Μακεδονία', 'give' ),
1545
		'C' => __( 'Δυτική Μακεδονία', 'give' ),
1546
		'D' => __( 'Ήπειρος', 'give' ),
1547
		'E' => __( 'Θεσσαλία', 'give' ),
1548
		'F' => __( 'Ιόνιοι Νήσοι', 'give' ),
1549
		'G' => __( 'Δυτική Ελλάδα', 'give' ),
1550
		'H' => __( 'Στερεά Ελλάδα', 'give' ),
1551
		'J' => __( 'Πελοπόννησος', 'give' ),
1552
		'K' => __( 'Βόρειο Αιγαίο', 'give' ),
1553
		'L' => __( 'Νότιο Αιγαίο', 'give' ),
1554
		'M' => __( 'Κρήτη', 'give' ),
1555
	);
1556
1557
	return apply_filters( 'give_greek_states', $states );
1558
}
1559
1560
/**
1561
 * Get bolivian States
1562
 *
1563
 * @since 1.8.12
1564
 * @return array $states A list of states
1565
 */
1566
function give_get_bolivian_states_list() {
1567
	$states = array(
1568
		''  => '',
1569
		'B' => __( 'Chuquisaca', 'give' ),
1570
		'H' => __( 'Beni', 'give' ),
1571
		'C' => __( 'Cochabamba', 'give' ),
1572
		'L' => __( 'La Paz', 'give' ),
1573
		'O' => __( 'Oruro', 'give' ),
1574
		'N' => __( 'Pando', 'give' ),
1575
		'P' => __( 'Potosí', 'give' ),
1576
		'S' => __( 'Santa Cruz', 'give' ),
1577
		'T' => __( 'Tarija', 'give' ),
1578
	);
1579
1580
	return apply_filters( 'give_bolivian_states', $states );
1581
}
1582
1583
/**
1584
 * Get Bulgarian States
1585
 *
1586
 * @since 1.8.12
1587
 * @return array $states A list of states
1588
 */
1589
function give_get_bulgarian_states_list() {
1590
	$states = array(
1591
		''      => '',
1592
		'BG-01' => __( 'Blagoevgrad', 'give' ),
1593
		'BG-02' => __( 'Burgas', 'give' ),
1594
		'BG-08' => __( 'Dobrich', 'give' ),
1595
		'BG-07' => __( 'Gabrovo', 'give' ),
1596
		'BG-26' => __( 'Haskovo', 'give' ),
1597
		'BG-09' => __( 'Kardzhali', 'give' ),
1598
		'BG-10' => __( 'Kyustendil', 'give' ),
1599
		'BG-11' => __( 'Lovech', 'give' ),
1600
		'BG-12' => __( 'Montana', 'give' ),
1601
		'BG-13' => __( 'Pazardzhik', 'give' ),
1602
		'BG-14' => __( 'Pernik', 'give' ),
1603
		'BG-15' => __( 'Pleven', 'give' ),
1604
		'BG-16' => __( 'Plovdiv', 'give' ),
1605
		'BG-17' => __( 'Razgrad', 'give' ),
1606
		'BG-18' => __( 'Ruse', 'give' ),
1607
		'BG-27' => __( 'Shumen', 'give' ),
1608
		'BG-19' => __( 'Silistra', 'give' ),
1609
		'BG-20' => __( 'Sliven', 'give' ),
1610
		'BG-21' => __( 'Smolyan', 'give' ),
1611
		'BG-23' => __( 'Sofia', 'give' ),
1612
		'BG-22' => __( 'Sofia-Grad', 'give' ),
1613
		'BG-24' => __( 'Stara Zagora', 'give' ),
1614
		'BG-25' => __( 'Targovishte', 'give' ),
1615
		'BG-03' => __( 'Varna', 'give' ),
1616
		'BG-04' => __( 'Veliko Tarnovo', 'give' ),
1617
		'BG-05' => __( 'Vidin', 'give' ),
1618
		'BG-06' => __( 'Vratsa', 'give' ),
1619
		'BG-28' => __( 'Yambol', 'give' ),
1620
	);
1621
1622
	return apply_filters( 'give_bulgarian_states', $states );
1623
}
1624
1625
/**
1626
 * Get Bangladeshi States
1627
 *
1628
 * @since 1.8.12.
1629
 * @return array $states A list of states
1630
 */
1631
function give_get_bangladeshi_states_list() {
1632
	$states = array(
1633
		''     => '',
1634
		'BAG'  => __( 'Bagerhat', 'give' ),
1635
		'BAN'  => __( 'Bandarban', 'give' ),
1636
		'BAR'  => __( 'Barguna', 'give' ),
1637
		'BARI' => __( 'Barisal', 'give' ),
1638
		'BHO'  => __( 'Bhola', 'give' ),
1639
		'BOG'  => __( 'Bogra', 'give' ),
1640
		'BRA'  => __( 'Brahmanbaria', 'give' ),
1641
		'CHA'  => __( 'Chandpur', 'give' ),
1642
		'CHI'  => __( 'Chittagong', 'give' ),
1643
		'CHU'  => __( 'Chuadanga', 'give' ),
1644
		'COM'  => __( 'Comilla', 'give' ),
1645
		'COX'  => __( "Cox's Bazar", 'give' ),
1646
		'DHA'  => __( 'Dhaka', 'give' ),
1647
		'DIN'  => __( 'Dinajpur', 'give' ),
1648
		'FAR'  => __( 'Faridpur ', 'give' ),
1649
		'FEN'  => __( 'Feni', 'give' ),
1650
		'GAI'  => __( 'Gaibandha', 'give' ),
1651
		'GAZI' => __( 'Gazipur', 'give' ),
1652
		'GOP'  => __( 'Gopalganj', 'give' ),
1653
		'HAB'  => __( 'Habiganj', 'give' ),
1654
		'JAM'  => __( 'Jamalpur', 'give' ),
1655
		'JES'  => __( 'Jessore', 'give' ),
1656
		'JHA'  => __( 'Jhalokati', 'give' ),
1657
		'JHE'  => __( 'Jhenaidah', 'give' ),
1658
		'JOY'  => __( 'Joypurhat', 'give' ),
1659
		'KHA'  => __( 'Khagrachhari', 'give' ),
1660
		'KHU'  => __( 'Khulna', 'give' ),
1661
		'KIS'  => __( 'Kishoreganj', 'give' ),
1662
		'KUR'  => __( 'Kurigram', 'give' ),
1663
		'KUS'  => __( 'Kushtia', 'give' ),
1664
		'LAK'  => __( 'Lakshmipur', 'give' ),
1665
		'LAL'  => __( 'Lalmonirhat', 'give' ),
1666
		'MAD'  => __( 'Madaripur', 'give' ),
1667
		'MAG'  => __( 'Magura', 'give' ),
1668
		'MAN'  => __( 'Manikganj ', 'give' ),
1669
		'MEH'  => __( 'Meherpur', 'give' ),
1670
		'MOU'  => __( 'Moulvibazar', 'give' ),
1671
		'MUN'  => __( 'Munshiganj', 'give' ),
1672
		'MYM'  => __( 'Mymensingh', 'give' ),
1673
		'NAO'  => __( 'Naogaon', 'give' ),
1674
		'NAR'  => __( 'Narail', 'give' ),
1675
		'NARG' => __( 'Narayanganj', 'give' ),
1676
		'NARD' => __( 'Narsingdi', 'give' ),
1677
		'NAT'  => __( 'Natore', 'give' ),
1678
		'NAW'  => __( 'Nawabganj', 'give' ),
1679
		'NET'  => __( 'Netrakona', 'give' ),
1680
		'NIL'  => __( 'Nilphamari', 'give' ),
1681
		'NOA'  => __( 'Noakhali', 'give' ),
1682
		'PAB'  => __( 'Pabna', 'give' ),
1683
		'PAN'  => __( 'Panchagarh', 'give' ),
1684
		'PAT'  => __( 'Patuakhali', 'give' ),
1685
		'PIR'  => __( 'Pirojpur', 'give' ),
1686
		'RAJB' => __( 'Rajbari', 'give' ),
1687
		'RAJ'  => __( 'Rajshahi', 'give' ),
1688
		'RAN'  => __( 'Rangamati', 'give' ),
1689
		'RANP' => __( 'Rangpur', 'give' ),
1690
		'SAT'  => __( 'Satkhira', 'give' ),
1691
		'SHA'  => __( 'Shariatpur', 'give' ),
1692
		'SHE'  => __( 'Sherpur', 'give' ),
1693
		'SIR'  => __( 'Sirajganj', 'give' ),
1694
		'SUN'  => __( 'Sunamganj', 'give' ),
1695
		'SYL'  => __( 'Sylhet', 'give' ),
1696
		'TAN'  => __( 'Tangail', 'give' ),
1697
		'THA'  => __( 'Thakurgaon', 'give' ),
1698
	);
1699
1700
	return apply_filters( 'give_bangladeshi_states', $states );
1701
}
1702
1703
/**
1704
 * Get Argentina States
1705
 *
1706
 * @since 1.8.12
1707
 * @return array $states A list of states
1708
 */
1709
function give_get_argentina_states_list() {
1710
	$states = array(
1711
		''  => '',
1712
		'C' => __( 'Ciudad Aut&oacute;noma de Buenos Aires', 'give' ),
1713
		'B' => __( 'Buenos Aires', 'give' ),
1714
		'K' => __( 'Catamarca', 'give' ),
1715
		'H' => __( 'Chaco', 'give' ),
1716
		'U' => __( 'Chubut', 'give' ),
1717
		'X' => __( 'C&oacute;rdoba', 'give' ),
1718
		'W' => __( 'Corrientes', 'give' ),
1719
		'E' => __( 'Entre R&iacute;os', 'give' ),
1720
		'P' => __( 'Formosa', 'give' ),
1721
		'Y' => __( 'Jujuy', 'give' ),
1722
		'L' => __( 'La Pampa', 'give' ),
1723
		'F' => __( 'La Rioja', 'give' ),
1724
		'M' => __( 'Mendoza', 'give' ),
1725
		'N' => __( 'Misiones', 'give' ),
1726
		'Q' => __( 'Neuqu&eacute;n', 'give' ),
1727
		'R' => __( 'R&iacute;o Negro', 'give' ),
1728
		'A' => __( 'Salta', 'give' ),
1729
		'J' => __( 'San Juan', 'give' ),
1730
		'D' => __( 'San Luis', 'give' ),
1731
		'Z' => __( 'Santa Cruz', 'give' ),
1732
		'S' => __( 'Santa Fe', 'give' ),
1733
		'G' => __( 'Santiago del Estero', 'give' ),
1734
		'V' => __( 'Tierra del Fuego', 'give' ),
1735
		'T' => __( 'Tucum&aacute;n', 'give' ),
1736
	);
1737
1738
	return apply_filters( 'give_argentina_states', $states );
1739
}
1740
1741
/**
1742
 * Get States List
1743
 *
1744
 * @access      public
1745
 * @since       1.2
1746
 * @return      array
1747
 */
1748
function give_get_states_list() {
1749
	$states = array(
1750
		''   => '',
1751
		'AL' => 'Alabama',
1752
		'AK' => 'Alaska',
1753
		'AZ' => 'Arizona',
1754
		'AR' => 'Arkansas',
1755
		'CA' => 'California',
1756
		'CO' => 'Colorado',
1757
		'CT' => 'Connecticut',
1758
		'DE' => 'Delaware',
1759
		'DC' => 'District of Columbia',
1760
		'FL' => 'Florida',
1761
		'GA' => 'Georgia',
1762
		'HI' => 'Hawaii',
1763
		'ID' => 'Idaho',
1764
		'IL' => 'Illinois',
1765
		'IN' => 'Indiana',
1766
		'IA' => 'Iowa',
1767
		'KS' => 'Kansas',
1768
		'KY' => 'Kentucky',
1769
		'LA' => 'Louisiana',
1770
		'ME' => 'Maine',
1771
		'MD' => 'Maryland',
1772
		'MA' => 'Massachusetts',
1773
		'MI' => 'Michigan',
1774
		'MN' => 'Minnesota',
1775
		'MS' => 'Mississippi',
1776
		'MO' => 'Missouri',
1777
		'MT' => 'Montana',
1778
		'NE' => 'Nebraska',
1779
		'NV' => 'Nevada',
1780
		'NH' => 'New Hampshire',
1781
		'NJ' => 'New Jersey',
1782
		'NM' => 'New Mexico',
1783
		'NY' => 'New York',
1784
		'NC' => 'North Carolina',
1785
		'ND' => 'North Dakota',
1786
		'OH' => 'Ohio',
1787
		'OK' => 'Oklahoma',
1788
		'OR' => 'Oregon',
1789
		'PA' => 'Pennsylvania',
1790
		'RI' => 'Rhode Island',
1791
		'SC' => 'South Carolina',
1792
		'SD' => 'South Dakota',
1793
		'TN' => 'Tennessee',
1794
		'TX' => 'Texas',
1795
		'UT' => 'Utah',
1796
		'VT' => 'Vermont',
1797
		'VA' => 'Virginia',
1798
		'WA' => 'Washington',
1799
		'WV' => 'West Virginia',
1800
		'WI' => 'Wisconsin',
1801
		'WY' => 'Wyoming',
1802
		'AS' => 'American Samoa',
1803
		'CZ' => 'Canal Zone',
1804
		'CM' => 'Commonwealth of the Northern Mariana Islands',
1805
		'FM' => 'Federated States of Micronesia',
1806
		'GU' => 'Guam',
1807
		'MH' => 'Marshall Islands',
1808
		'MP' => 'Northern Mariana Islands',
1809
		'PW' => 'Palau',
1810
		'PI' => 'Philippine Islands',
1811
		'PR' => 'Puerto Rico',
1812
		'TT' => 'Trust Territory of the Pacific Islands',
1813
		'VI' => 'Virgin Islands',
1814
		'AA' => 'Armed Forces - Americas',
1815
		'AE' => 'Armed Forces - Europe, Canada, Middle East, Africa',
1816
		'AP' => 'Armed Forces - Pacific',
1817
	);
1818
1819
	return apply_filters( 'give_us_states', $states );
1820
}
1821
1822
/**
1823
 * Get Provinces List
1824
 *
1825
 * @access      public
1826
 * @since       1.0
1827
 * @return      array
1828
 */
1829
function give_get_provinces_list() {
1830
	$provinces = array(
1831
		''   => '',
1832
		'AB' => esc_html__( 'Alberta', 'give' ),
1833
		'BC' => esc_html__( 'British Columbia', 'give' ),
1834
		'MB' => esc_html__( 'Manitoba', 'give' ),
1835
		'NB' => esc_html__( 'New Brunswick', 'give' ),
1836
		'NL' => esc_html__( 'Newfoundland and Labrador', 'give' ),
1837
		'NS' => esc_html__( 'Nova Scotia', 'give' ),
1838
		'NT' => esc_html__( 'Northwest Territories', 'give' ),
1839
		'NU' => esc_html__( 'Nunavut', 'give' ),
1840
		'ON' => esc_html__( 'Ontario', 'give' ),
1841
		'PE' => esc_html__( 'Prince Edward Island', 'give' ),
1842
		'QC' => esc_html__( 'Quebec', 'give' ),
1843
		'SK' => esc_html__( 'Saskatchewan', 'give' ),
1844
		'YT' => esc_html__( 'Yukon', 'give' ),
1845
	);
1846
1847
	return apply_filters( 'give_canada_provinces', $provinces );
1848
}
1849
1850
/**
1851
 * Get Australian States
1852
 *
1853
 * @since 1.0
1854
 * @return array $states A list of states
1855
 */
1856
function give_get_australian_states_list() {
1857
	$states = array(
1858
		''    => '',
1859
		'ACT' => 'Australian Capital Territory',
1860
		'NSW' => 'New South Wales',
1861
		'NT'  => 'Northern Territory',
1862
		'QLD' => 'Queensland',
1863
		'SA'  => 'South Australia',
1864
		'TAS' => 'Tasmania',
1865
		'VIC' => 'Victoria',
1866
		'WA'  => 'Western Australia',
1867
	);
1868
1869
	return apply_filters( 'give_australian_states', $states );
1870
}
1871
1872
/**
1873
 * Get Brazil States
1874
 *
1875
 * @since 1.0
1876
 * @return array $states A list of states
1877
 */
1878
function give_get_brazil_states_list() {
1879
	$states = array(
1880
		''   => '',
1881
		'AC' => 'Acre',
1882
		'AL' => 'Alagoas',
1883
		'AP' => 'Amap&aacute;',
1884
		'AM' => 'Amazonas',
1885
		'BA' => 'Bahia',
1886
		'CE' => 'Cear&aacute;',
1887
		'DF' => 'Distrito Federal',
1888
		'ES' => 'Esp&iacute;rito Santo',
1889
		'GO' => 'Goi&aacute;s',
1890
		'MA' => 'Maranh&atilde;o',
1891
		'MT' => 'Mato Grosso',
1892
		'MS' => 'Mato Grosso do Sul',
1893
		'MG' => 'Minas Gerais',
1894
		'PA' => 'Par&aacute;',
1895
		'PB' => 'Para&iacute;ba',
1896
		'PR' => 'Paran&aacute;',
1897
		'PE' => 'Pernambuco',
1898
		'PI' => 'Piau&iacute;',
1899
		'RJ' => 'Rio de Janeiro',
1900
		'RN' => 'Rio Grande do Norte',
1901
		'RS' => 'Rio Grande do Sul',
1902
		'RO' => 'Rond&ocirc;nia',
1903
		'RR' => 'Roraima',
1904
		'SC' => 'Santa Catarina',
1905
		'SP' => 'S&atilde;o Paulo',
1906
		'SE' => 'Sergipe',
1907
		'TO' => 'Tocantins',
1908
	);
1909
1910
	return apply_filters( 'give_brazil_states', $states );
1911
}
1912
1913
/**
1914
 * Get Hong Kong States
1915
 *
1916
 * @since 1.0
1917
 * @return array $states A list of states
1918
 */
1919
function give_get_hong_kong_states_list() {
1920
	$states = array(
1921
		''                => '',
1922
		'HONG KONG'       => 'Hong Kong Island',
1923
		'KOWLOON'         => 'Kowloon',
1924
		'NEW TERRITORIES' => 'New Territories',
1925
	);
1926
1927
	return apply_filters( 'give_hong_kong_states', $states );
1928
}
1929
1930
/**
1931
 * Get Hungary States
1932
 *
1933
 * @since 1.0
1934
 * @return array $states A list of states
1935
 */
1936
function give_get_hungary_states_list() {
1937
	$states = array(
1938
		''   => '',
1939
		'BK' => 'Bács-Kiskun',
1940
		'BE' => 'Békés',
1941
		'BA' => 'Baranya',
1942
		'BZ' => 'Borsod-Abaúj-Zemplén',
1943
		'BU' => 'Budapest',
1944
		'CS' => 'Csongrád',
1945
		'FE' => 'Fejér',
1946
		'GS' => 'Győr-Moson-Sopron',
1947
		'HB' => 'Hajdú-Bihar',
1948
		'HE' => 'Heves',
1949
		'JN' => 'Jász-Nagykun-Szolnok',
1950
		'KE' => 'Komárom-Esztergom',
1951
		'NO' => 'Nógrád',
1952
		'PE' => 'Pest',
1953
		'SO' => 'Somogy',
1954
		'SZ' => 'Szabolcs-Szatmár-Bereg',
1955
		'TO' => 'Tolna',
1956
		'VA' => 'Vas',
1957
		'VE' => 'Veszprém',
1958
		'ZA' => 'Zala',
1959
	);
1960
1961
	return apply_filters( 'give_hungary_states', $states );
1962
}
1963
1964
/**
1965
 * Get Chinese States
1966
 *
1967
 * @since 1.0
1968
 * @return array $states A list of states
1969
 */
1970
function give_get_chinese_states_list() {
1971
	$states = array(
1972
		''     => '',
1973
		'CN1'  => 'Yunnan / &#20113;&#21335;',
1974
		'CN2'  => 'Beijing / &#21271;&#20140;',
1975
		'CN3'  => 'Tianjin / &#22825;&#27941;',
1976
		'CN4'  => 'Hebei / &#27827;&#21271;',
1977
		'CN5'  => 'Shanxi / &#23665;&#35199;',
1978
		'CN6'  => 'Inner Mongolia / &#20839;&#33945;&#21476;',
1979
		'CN7'  => 'Liaoning / &#36797;&#23425;',
1980
		'CN8'  => 'Jilin / &#21513;&#26519;',
1981
		'CN9'  => 'Heilongjiang / &#40657;&#40857;&#27743;',
1982
		'CN10' => 'Shanghai / &#19978;&#28023;',
1983
		'CN11' => 'Jiangsu / &#27743;&#33487;',
1984
		'CN12' => 'Zhejiang / &#27993;&#27743;',
1985
		'CN13' => 'Anhui / &#23433;&#24509;',
1986
		'CN14' => 'Fujian / &#31119;&#24314;',
1987
		'CN15' => 'Jiangxi / &#27743;&#35199;',
1988
		'CN16' => 'Shandong / &#23665;&#19996;',
1989
		'CN17' => 'Henan / &#27827;&#21335;',
1990
		'CN18' => 'Hubei / &#28246;&#21271;',
1991
		'CN19' => 'Hunan / &#28246;&#21335;',
1992
		'CN20' => 'Guangdong / &#24191;&#19996;',
1993
		'CN21' => 'Guangxi Zhuang / &#24191;&#35199;&#22766;&#26063;',
1994
		'CN22' => 'Hainan / &#28023;&#21335;',
1995
		'CN23' => 'Chongqing / &#37325;&#24198;',
1996
		'CN24' => 'Sichuan / &#22235;&#24029;',
1997
		'CN25' => 'Guizhou / &#36149;&#24030;',
1998
		'CN26' => 'Shaanxi / &#38485;&#35199;',
1999
		'CN27' => 'Gansu / &#29976;&#32899;',
2000
		'CN28' => 'Qinghai / &#38738;&#28023;',
2001
		'CN29' => 'Ningxia Hui / &#23425;&#22799;',
2002
		'CN30' => 'Macau / &#28595;&#38376;',
2003
		'CN31' => 'Tibet / &#35199;&#34255;',
2004
		'CN32' => 'Xinjiang / &#26032;&#30086;',
2005
	);
2006
2007
	return apply_filters( 'give_chinese_states', $states );
2008
}
2009
2010
/**
2011
 * Get New Zealand States
2012
 *
2013
 * @since 1.0
2014
 * @return array $states A list of states
2015
 */
2016
function give_get_new_zealand_states_list() {
2017
	$states = array(
2018
		''   => '',
2019
		'AK' => 'Auckland',
2020
		'BP' => 'Bay of Plenty',
2021
		'CT' => 'Canterbury',
2022
		'HB' => 'Hawke&rsquo;s Bay',
2023
		'MW' => 'Manawatu-Wanganui',
2024
		'MB' => 'Marlborough',
2025
		'NS' => 'Nelson',
2026
		'NL' => 'Northland',
2027
		'OT' => 'Otago',
2028
		'SL' => 'Southland',
2029
		'TK' => 'Taranaki',
2030
		'TM' => 'Tasman',
2031
		'WA' => 'Waikato',
2032
		'WE' => 'Wellington',
2033
		'WC' => 'West Coast',
2034
	);
2035
2036
	return apply_filters( 'give_new_zealand_states', $states );
2037
}
2038
2039
/**
2040
 * Get Indonesian States
2041
 *
2042
 * @since 1.0
2043
 * @return array $states A list of states
2044
 */
2045
function give_get_indonesian_states_list() {
2046
	$states = array(
2047
		''   => '',
2048
		'AC' => 'Daerah Istimewa Aceh',
2049
		'SU' => 'Sumatera Utara',
2050
		'SB' => 'Sumatera Barat',
2051
		'RI' => 'Riau',
2052
		'KR' => 'Kepulauan Riau',
2053
		'JA' => 'Jambi',
2054
		'SS' => 'Sumatera Selatan',
2055
		'BB' => 'Bangka Belitung',
2056
		'BE' => 'Bengkulu',
2057
		'LA' => 'Lampung',
2058
		'JK' => 'DKI Jakarta',
2059
		'JB' => 'Jawa Barat',
2060
		'BT' => 'Banten',
2061
		'JT' => 'Jawa Tengah',
2062
		'JI' => 'Jawa Timur',
2063
		'YO' => 'Daerah Istimewa Yogyakarta',
2064
		'BA' => 'Bali',
2065
		'NB' => 'Nusa Tenggara Barat',
2066
		'NT' => 'Nusa Tenggara Timur',
2067
		'KB' => 'Kalimantan Barat',
2068
		'KT' => 'Kalimantan Tengah',
2069
		'KI' => 'Kalimantan Timur',
2070
		'KS' => 'Kalimantan Selatan',
2071
		'KU' => 'Kalimantan Utara',
2072
		'SA' => 'Sulawesi Utara',
2073
		'ST' => 'Sulawesi Tengah',
2074
		'SG' => 'Sulawesi Tenggara',
2075
		'SR' => 'Sulawesi Barat',
2076
		'SN' => 'Sulawesi Selatan',
2077
		'GO' => 'Gorontalo',
2078
		'MA' => 'Maluku',
2079
		'MU' => 'Maluku Utara',
2080
		'PA' => 'Papua',
2081
		'PB' => 'Papua Barat',
2082
	);
2083
2084
	return apply_filters( 'give_indonesia_states', $states );
2085
}
2086
2087
/**
2088
 * Get Indian States
2089
 *
2090
 * @since 1.0
2091
 * @return array $states A list of states
2092
 */
2093
function give_get_indian_states_list() {
2094
	$states = array(
2095
		''   => '',
2096
		'AP' => 'Andhra Pradesh',
2097
		'AR' => 'Arunachal Pradesh',
2098
		'AS' => 'Assam',
2099
		'BR' => 'Bihar',
2100
		'CT' => 'Chhattisgarh',
2101
		'GA' => 'Goa',
2102
		'GJ' => 'Gujarat',
2103
		'HR' => 'Haryana',
2104
		'HP' => 'Himachal Pradesh',
2105
		'JK' => 'Jammu and Kashmir',
2106
		'JH' => 'Jharkhand',
2107
		'KA' => 'Karnataka',
2108
		'KL' => 'Kerala',
2109
		'MP' => 'Madhya Pradesh',
2110
		'MH' => 'Maharashtra',
2111
		'MN' => 'Manipur',
2112
		'ML' => 'Meghalaya',
2113
		'MZ' => 'Mizoram',
2114
		'NL' => 'Nagaland',
2115
		'OR' => 'Orissa',
2116
		'PB' => 'Punjab',
2117
		'RJ' => 'Rajasthan',
2118
		'SK' => 'Sikkim',
2119
		'TN' => 'Tamil Nadu',
2120
		'TG' => 'Telangana',
2121
		'TR' => 'Tripura',
2122
		'UT' => 'Uttarakhand',
2123
		'UP' => 'Uttar Pradesh',
2124
		'WB' => 'West Bengal',
2125
		'AN' => 'Andaman and Nicobar Islands',
2126
		'CH' => 'Chandigarh',
2127
		'DN' => 'Dadar and Nagar Haveli',
2128
		'DD' => 'Daman and Diu',
2129
		'DL' => 'Delhi',
2130
		'LD' => 'Lakshadweep',
2131
		'PY' => 'Pondicherry (Puducherry)',
2132
	);
2133
2134
	return apply_filters( 'give_indian_states', $states );
2135
}
2136
2137
/**
2138
 * Get Malaysian States
2139
 *
2140
 * @since 1.6
2141
 * @return array $states A list of states
2142
 */
2143
function give_get_malaysian_states_list() {
2144
	$states = array(
2145
		''    => '',
2146
		'JHR' => 'Johor',
2147
		'KDH' => 'Kedah',
2148
		'KTN' => 'Kelantan',
2149
		'MLK' => 'Melaka',
2150
		'NSN' => 'Negeri Sembilan',
2151
		'PHG' => 'Pahang',
2152
		'PRK' => 'Perak',
2153
		'PLS' => 'Perlis',
2154
		'PNG' => 'Pulau Pinang',
2155
		'SBH' => 'Sabah',
2156
		'SWK' => 'Sarawak',
2157
		'SGR' => 'Selangor',
2158
		'TRG' => 'Terengganu',
2159
		'KUL' => 'W.P. Kuala Lumpur',
2160
		'LBN' => 'W.P. Labuan',
2161
		'PJY' => 'W.P. Putrajaya',
2162
	);
2163
2164
	return apply_filters( 'give_malaysian_states', $states );
2165
}
2166
2167
/**
2168
 * Get South African States
2169
 *
2170
 * @since 1.6
2171
 * @return array $states A list of states
2172
 */
2173
function give_get_south_african_states_list() {
2174
	$states = array(
2175
		''    => '',
2176
		'EC'  => 'Eastern Cape',
2177
		'FS'  => 'Free State',
2178
		'GP'  => 'Gauteng',
2179
		'KZN' => 'KwaZulu-Natal',
2180
		'LP'  => 'Limpopo',
2181
		'MP'  => 'Mpumalanga',
2182
		'NC'  => 'Northern Cape',
2183
		'NW'  => 'North West',
2184
		'WC'  => 'Western Cape',
2185
	);
2186
2187
	return apply_filters( 'give_south_african_states', $states );
2188
}
2189
2190
/**
2191
 * Get Thailand States
2192
 *
2193
 * @since 1.6
2194
 * @return array $states A list of states
2195
 */
2196
function give_get_thailand_states_list() {
2197
	$states = array(
2198
		''      => '',
2199
		'TH-37' => 'Amnat Charoen (&#3629;&#3635;&#3609;&#3634;&#3592;&#3648;&#3592;&#3619;&#3636;&#3597;)',
2200
		'TH-15' => 'Ang Thong (&#3629;&#3656;&#3634;&#3591;&#3607;&#3629;&#3591;)',
2201
		'TH-14' => 'Ayutthaya (&#3614;&#3619;&#3632;&#3609;&#3588;&#3619;&#3624;&#3619;&#3637;&#3629;&#3618;&#3640;&#3608;&#3618;&#3634;)',
2202
		'TH-10' => 'Bangkok (&#3585;&#3619;&#3640;&#3591;&#3648;&#3607;&#3614;&#3617;&#3627;&#3634;&#3609;&#3588;&#3619;)',
2203
		'TH-38' => 'Bueng Kan (&#3610;&#3638;&#3591;&#3585;&#3634;&#3628;)',
2204
		'TH-31' => 'Buri Ram (&#3610;&#3640;&#3619;&#3637;&#3619;&#3633;&#3617;&#3618;&#3660;)',
2205
		'TH-24' => 'Chachoengsao (&#3593;&#3632;&#3648;&#3594;&#3636;&#3591;&#3648;&#3607;&#3619;&#3634;)',
2206
		'TH-18' => 'Chai Nat (&#3594;&#3633;&#3618;&#3609;&#3634;&#3607;)',
2207
		'TH-36' => 'Chaiyaphum (&#3594;&#3633;&#3618;&#3616;&#3641;&#3617;&#3636;)',
2208
		'TH-22' => 'Chanthaburi (&#3592;&#3633;&#3609;&#3607;&#3610;&#3640;&#3619;&#3637;)',
2209
		'TH-50' => 'Chiang Mai (&#3648;&#3594;&#3637;&#3618;&#3591;&#3651;&#3627;&#3617;&#3656;)',
2210
		'TH-57' => 'Chiang Rai (&#3648;&#3594;&#3637;&#3618;&#3591;&#3619;&#3634;&#3618;)',
2211
		'TH-20' => 'Chonburi (&#3594;&#3621;&#3610;&#3640;&#3619;&#3637;)',
2212
		'TH-86' => 'Chumphon (&#3594;&#3640;&#3617;&#3614;&#3619;)',
2213
		'TH-46' => 'Kalasin (&#3585;&#3634;&#3628;&#3626;&#3636;&#3609;&#3608;&#3640;&#3660;)',
2214
		'TH-62' => 'Kamphaeng Phet (&#3585;&#3635;&#3649;&#3614;&#3591;&#3648;&#3614;&#3594;&#3619;)',
2215
		'TH-71' => 'Kanchanaburi (&#3585;&#3634;&#3597;&#3592;&#3609;&#3610;&#3640;&#3619;&#3637;)',
2216
		'TH-40' => 'Khon Kaen (&#3586;&#3629;&#3609;&#3649;&#3585;&#3656;&#3609;)',
2217
		'TH-81' => 'Krabi (&#3585;&#3619;&#3632;&#3610;&#3637;&#3656;)',
2218
		'TH-52' => 'Lampang (&#3621;&#3635;&#3611;&#3634;&#3591;)',
2219
		'TH-51' => 'Lamphun (&#3621;&#3635;&#3614;&#3641;&#3609;)',
2220
		'TH-42' => 'Loei (&#3648;&#3621;&#3618;)',
2221
		'TH-16' => 'Lopburi (&#3621;&#3614;&#3610;&#3640;&#3619;&#3637;)',
2222
		'TH-58' => 'Mae Hong Son (&#3649;&#3617;&#3656;&#3630;&#3656;&#3629;&#3591;&#3626;&#3629;&#3609;)',
2223
		'TH-44' => 'Maha Sarakham (&#3617;&#3627;&#3634;&#3626;&#3634;&#3619;&#3588;&#3634;&#3617;)',
2224
		'TH-49' => 'Mukdahan (&#3617;&#3640;&#3585;&#3604;&#3634;&#3627;&#3634;&#3619;)',
2225
		'TH-26' => 'Nakhon Nayok (&#3609;&#3588;&#3619;&#3609;&#3634;&#3618;&#3585;)',
2226
		'TH-73' => 'Nakhon Pathom (&#3609;&#3588;&#3619;&#3611;&#3600;&#3617;)',
2227
		'TH-48' => 'Nakhon Phanom (&#3609;&#3588;&#3619;&#3614;&#3609;&#3617;)',
2228
		'TH-30' => 'Nakhon Ratchasima (&#3609;&#3588;&#3619;&#3619;&#3634;&#3594;&#3626;&#3637;&#3617;&#3634;)',
2229
		'TH-60' => 'Nakhon Sawan (&#3609;&#3588;&#3619;&#3626;&#3623;&#3619;&#3619;&#3588;&#3660;)',
2230
		'TH-80' => 'Nakhon Si Thammarat (&#3609;&#3588;&#3619;&#3624;&#3619;&#3637;&#3608;&#3619;&#3619;&#3617;&#3619;&#3634;&#3594;)',
2231
		'TH-55' => 'Nan (&#3609;&#3656;&#3634;&#3609;)',
2232
		'TH-96' => 'Narathiwat (&#3609;&#3619;&#3634;&#3608;&#3636;&#3623;&#3634;&#3626;)',
2233
		'TH-39' => 'Nong Bua Lam Phu (&#3627;&#3609;&#3629;&#3591;&#3610;&#3633;&#3623;&#3621;&#3635;&#3616;&#3641;)',
2234
		'TH-43' => 'Nong Khai (&#3627;&#3609;&#3629;&#3591;&#3588;&#3634;&#3618;)',
2235
		'TH-12' => 'Nonthaburi (&#3609;&#3609;&#3607;&#3610;&#3640;&#3619;&#3637;)',
2236
		'TH-13' => 'Pathum Thani (&#3611;&#3607;&#3640;&#3617;&#3608;&#3634;&#3609;&#3637;)',
2237
		'TH-94' => 'Pattani (&#3611;&#3633;&#3605;&#3605;&#3634;&#3609;&#3637;)',
2238
		'TH-82' => 'Phang Nga (&#3614;&#3633;&#3591;&#3591;&#3634;)',
2239
		'TH-93' => 'Phatthalung (&#3614;&#3633;&#3607;&#3621;&#3640;&#3591;)',
2240
		'TH-56' => 'Phayao (&#3614;&#3632;&#3648;&#3618;&#3634;)',
2241
		'TH-67' => 'Phetchabun (&#3648;&#3614;&#3594;&#3619;&#3610;&#3641;&#3619;&#3603;&#3660;)',
2242
		'TH-76' => 'Phetchaburi (&#3648;&#3614;&#3594;&#3619;&#3610;&#3640;&#3619;&#3637;)',
2243
		'TH-66' => 'Phichit (&#3614;&#3636;&#3592;&#3636;&#3605;&#3619;)',
2244
		'TH-65' => 'Phitsanulok (&#3614;&#3636;&#3625;&#3603;&#3640;&#3650;&#3621;&#3585;)',
2245
		'TH-54' => 'Phrae (&#3649;&#3614;&#3619;&#3656;)',
2246
		'TH-83' => 'Phuket (&#3616;&#3641;&#3648;&#3585;&#3655;&#3605;)',
2247
		'TH-25' => 'Prachin Buri (&#3611;&#3619;&#3634;&#3592;&#3637;&#3609;&#3610;&#3640;&#3619;&#3637;)',
2248
		'TH-77' => 'Prachuap Khiri Khan (&#3611;&#3619;&#3632;&#3592;&#3623;&#3610;&#3588;&#3637;&#3619;&#3637;&#3586;&#3633;&#3609;&#3608;&#3660;)',
2249
		'TH-85' => 'Ranong (&#3619;&#3632;&#3609;&#3629;&#3591;)',
2250
		'TH-70' => 'Ratchaburi (&#3619;&#3634;&#3594;&#3610;&#3640;&#3619;&#3637;)',
2251
		'TH-21' => 'Rayong (&#3619;&#3632;&#3618;&#3629;&#3591;)',
2252
		'TH-45' => 'Roi Et (&#3619;&#3657;&#3629;&#3618;&#3648;&#3629;&#3655;&#3604;)',
2253
		'TH-27' => 'Sa Kaeo (&#3626;&#3619;&#3632;&#3649;&#3585;&#3657;&#3623;)',
2254
		'TH-47' => 'Sakon Nakhon (&#3626;&#3585;&#3621;&#3609;&#3588;&#3619;)',
2255
		'TH-11' => 'Samut Prakan (&#3626;&#3617;&#3640;&#3607;&#3619;&#3611;&#3619;&#3634;&#3585;&#3634;&#3619;)',
2256
		'TH-74' => 'Samut Sakhon (&#3626;&#3617;&#3640;&#3607;&#3619;&#3626;&#3634;&#3588;&#3619;)',
2257
		'TH-75' => 'Samut Songkhram (&#3626;&#3617;&#3640;&#3607;&#3619;&#3626;&#3591;&#3588;&#3619;&#3634;&#3617;)',
2258
		'TH-19' => 'Saraburi (&#3626;&#3619;&#3632;&#3610;&#3640;&#3619;&#3637;)',
2259
		'TH-91' => 'Satun (&#3626;&#3605;&#3641;&#3621;)',
2260
		'TH-17' => 'Sing Buri (&#3626;&#3636;&#3591;&#3627;&#3660;&#3610;&#3640;&#3619;&#3637;)',
2261
		'TH-33' => 'Sisaket (&#3624;&#3619;&#3637;&#3626;&#3632;&#3648;&#3585;&#3625;)',
2262
		'TH-90' => 'Songkhla (&#3626;&#3591;&#3586;&#3621;&#3634;)',
2263
		'TH-64' => 'Sukhothai (&#3626;&#3640;&#3650;&#3586;&#3607;&#3633;&#3618;)',
2264
		'TH-72' => 'Suphan Buri (&#3626;&#3640;&#3614;&#3619;&#3619;&#3603;&#3610;&#3640;&#3619;&#3637;)',
2265
		'TH-84' => 'Surat Thani (&#3626;&#3640;&#3619;&#3634;&#3625;&#3598;&#3619;&#3660;&#3608;&#3634;&#3609;&#3637;)',
2266
		'TH-32' => 'Surin (&#3626;&#3640;&#3619;&#3636;&#3609;&#3607;&#3619;&#3660;)',
2267
		'TH-63' => 'Tak (&#3605;&#3634;&#3585;)',
2268
		'TH-92' => 'Trang (&#3605;&#3619;&#3633;&#3591;)',
2269
		'TH-23' => 'Trat (&#3605;&#3619;&#3634;&#3604;)',
2270
		'TH-34' => 'Ubon Ratchathani (&#3629;&#3640;&#3610;&#3621;&#3619;&#3634;&#3594;&#3608;&#3634;&#3609;&#3637;)',
2271
		'TH-41' => 'Udon Thani (&#3629;&#3640;&#3604;&#3619;&#3608;&#3634;&#3609;&#3637;)',
2272
		'TH-61' => 'Uthai Thani (&#3629;&#3640;&#3607;&#3633;&#3618;&#3608;&#3634;&#3609;&#3637;)',
2273
		'TH-53' => 'Uttaradit (&#3629;&#3640;&#3605;&#3619;&#3604;&#3636;&#3605;&#3606;&#3660;)',
2274
		'TH-95' => 'Yala (&#3618;&#3632;&#3621;&#3634;)',
2275
		'TH-35' => 'Yasothon (&#3618;&#3650;&#3626;&#3608;&#3619;)',
2276
	);
2277
2278
	return apply_filters( 'give_thailand_states', $states );
2279
}
2280
2281
/**
2282
 * Get Spain States
2283
 *
2284
 * @since 1.0
2285
 * @return array $states A list of states
2286
 */
2287
function give_get_spain_states_list() {
2288
	$states = array(
2289
		''   => '',
2290
		'C'  => esc_html__( 'A Coru&ntilde;a', 'give' ),
2291
		'VI' => esc_html__( 'Álava', 'give' ),
2292
		'AB' => esc_html__( 'Albacete', 'give' ),
2293
		'A'  => esc_html__( 'Alicante', 'give' ),
2294
		'AL' => esc_html__( 'Almer&iacute;a', 'give' ),
2295
		'O'  => esc_html__( 'Asturias', 'give' ),
2296
		'AV' => esc_html__( '&Aacute;vila', 'give' ),
2297
		'BA' => esc_html__( 'Badajoz', 'give' ),
2298
		'PM' => esc_html__( 'Baleares', 'give' ),
2299
		'B'  => esc_html__( 'Barcelona', 'give' ),
2300
		'BU' => esc_html__( 'Burgos', 'give' ),
2301
		'CC' => esc_html__( 'C&aacute;ceres', 'give' ),
2302
		'CA' => esc_html__( 'C&aacute;diz', 'give' ),
2303
		'S'  => esc_html__( 'Cantabria', 'give' ),
2304
		'CS' => esc_html__( 'Castell&oacute;n', 'give' ),
2305
		'CE' => esc_html__( 'Ceuta', 'give' ),
2306
		'CR' => esc_html__( 'Ciudad Real', 'give' ),
2307
		'CO' => esc_html__( 'C&oacute;rdoba', 'give' ),
2308
		'CU' => esc_html__( 'Cuenca', 'give' ),
2309
		'GI' => esc_html__( 'Girona', 'give' ),
2310
		'GR' => esc_html__( 'Granada', 'give' ),
2311
		'GU' => esc_html__( 'Guadalajara', 'give' ),
2312
		'SS' => esc_html__( 'Gipuzkoa', 'give' ),
2313
		'H'  => esc_html__( 'Huelva', 'give' ),
2314
		'HU' => esc_html__( 'Huesca', 'give' ),
2315
		'J'  => esc_html__( 'Ja&eacute;n', 'give' ),
2316
		'LO' => esc_html__( 'La Rioja', 'give' ),
2317
		'GC' => esc_html__( 'Las Palmas', 'give' ),
2318
		'LE' => esc_html__( 'Le&oacute;n', 'give' ),
2319
		'L'  => esc_html__( 'Lleida', 'give' ),
2320
		'LU' => esc_html__( 'Lugo', 'give' ),
2321
		'M'  => esc_html__( 'Madrid', 'give' ),
2322
		'MA' => esc_html__( 'M&aacute;laga', 'give' ),
2323
		'ML' => esc_html__( 'Melilla', 'give' ),
2324
		'MU' => esc_html__( 'Murcia', 'give' ),
2325
		'NA' => esc_html__( 'Navarra', 'give' ),
2326
		'OR' => esc_html__( 'Ourense', 'give' ),
2327
		'P'  => esc_html__( 'Palencia', 'give' ),
2328
		'PO' => esc_html__( 'Pontevedra', 'give' ),
2329
		'SA' => esc_html__( 'Salamanca', 'give' ),
2330
		'TF' => esc_html__( 'Santa Cruz de Tenerife', 'give' ),
2331
		'SG' => esc_html__( 'Segovia', 'give' ),
2332
		'SE' => esc_html__( 'Sevilla', 'give' ),
2333
		'SO' => esc_html__( 'Soria', 'give' ),
2334
		'T'  => esc_html__( 'Tarragona', 'give' ),
2335
		'TE' => esc_html__( 'Teruel', 'give' ),
2336
		'TO' => esc_html__( 'Toledo', 'give' ),
2337
		'V'  => esc_html__( 'Valencia', 'give' ),
2338
		'VA' => esc_html__( 'Valladolid', 'give' ),
2339
		'BI' => esc_html__( 'Bizkaia', 'give' ),
2340
		'ZA' => esc_html__( 'Zamora', 'give' ),
2341
		'Z'  => esc_html__( 'Zaragoza', 'give' ),
2342
	);
2343
2344
	return apply_filters( 'give_spain_states', $states );
2345
}
2346