@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | 17 | // Load WP_List_Table if not loaded |
18 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
19 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
18 | +if ( ! class_exists('WP_List_Table')) { |
|
19 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -62,11 +62,11 @@ discard block |
||
62 | 62 | global $status, $page; |
63 | 63 | |
64 | 64 | // Set parent defaults |
65 | - parent::__construct( array( |
|
66 | - 'singular' => esc_html__( 'Donor', 'give' ), // Singular name of the listed records |
|
67 | - 'plural' => esc_html__( 'Donors', 'give' ), // Plural name of the listed records |
|
68 | - 'ajax' => false,// Does this table support ajax? |
|
69 | - ) ); |
|
65 | + parent::__construct(array( |
|
66 | + 'singular' => esc_html__('Donor', 'give'), // Singular name of the listed records |
|
67 | + 'plural' => esc_html__('Donors', 'give'), // Plural name of the listed records |
|
68 | + 'ajax' => false, // Does this table support ajax? |
|
69 | + )); |
|
70 | 70 | |
71 | 71 | } |
72 | 72 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @return false |
85 | 85 | */ |
86 | - public function search_box( $text, $input_id ) { |
|
86 | + public function search_box($text, $input_id) { |
|
87 | 87 | return false; |
88 | 88 | } |
89 | 89 | |
@@ -98,20 +98,20 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @return void |
100 | 100 | */ |
101 | - public function give_search_box( $text, $input_id ) { |
|
102 | - $input_id = $input_id . '-search-input'; |
|
101 | + public function give_search_box($text, $input_id) { |
|
102 | + $input_id = $input_id.'-search-input'; |
|
103 | 103 | |
104 | - if ( ! empty( $_REQUEST['orderby'] ) ) { |
|
105 | - echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />'; |
|
104 | + if ( ! empty($_REQUEST['orderby'])) { |
|
105 | + echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />'; |
|
106 | 106 | } |
107 | - if ( ! empty( $_REQUEST['order'] ) ) { |
|
108 | - echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />'; |
|
107 | + if ( ! empty($_REQUEST['order'])) { |
|
108 | + echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />'; |
|
109 | 109 | } |
110 | 110 | ?> |
111 | 111 | <p class="search-box donor-search" role="search"> |
112 | 112 | <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> |
113 | 113 | <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" /> |
114 | - <?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?> |
|
114 | + <?php submit_button($text, 'button', false, false, array('ID' => 'search-submit')); ?> |
|
115 | 115 | </p> |
116 | 116 | <?php |
117 | 117 | } |
@@ -124,33 +124,33 @@ discard block |
||
124 | 124 | * |
125 | 125 | * @param string $which |
126 | 126 | */ |
127 | - protected function display_tablenav( $which ) { |
|
127 | + protected function display_tablenav($which) { |
|
128 | 128 | |
129 | - if ( 'top' === $which ) { |
|
130 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
129 | + if ('top' === $which) { |
|
130 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
131 | 131 | } |
132 | 132 | ?> |
133 | - <div class="tablenav give-clearfix <?php echo esc_attr( $which ); ?>"> |
|
133 | + <div class="tablenav give-clearfix <?php echo esc_attr($which); ?>"> |
|
134 | 134 | |
135 | - <?php if ( 'top' === $which ) { ?> |
|
135 | + <?php if ('top' === $which) { ?> |
|
136 | 136 | <h2 class="alignleft reports-earnings-title"> |
137 | - <?php esc_html_e( 'Donors Report', 'give' ); ?> |
|
137 | + <?php esc_html_e('Donors Report', 'give'); ?> |
|
138 | 138 | </h2> |
139 | 139 | <?php } ?> |
140 | 140 | |
141 | 141 | <div class="alignright tablenav-right"> |
142 | 142 | <div class="actions bulkactions"> |
143 | 143 | <?php |
144 | - if ( 'top' === $which ) { |
|
145 | - $this->give_search_box( esc_html__( 'Search Donors', 'give' ), 'give-donors-report-search' ); |
|
144 | + if ('top' === $which) { |
|
145 | + $this->give_search_box(esc_html__('Search Donors', 'give'), 'give-donors-report-search'); |
|
146 | 146 | } |
147 | 147 | |
148 | - $this->bulk_actions( $which ); ?> |
|
148 | + $this->bulk_actions($which); ?> |
|
149 | 149 | |
150 | 150 | </div> |
151 | 151 | <?php |
152 | - $this->extra_tablenav( $which ); |
|
153 | - $this->pagination( $which ); |
|
152 | + $this->extra_tablenav($which); |
|
153 | + $this->pagination($which); |
|
154 | 154 | ?> |
155 | 155 | </div> |
156 | 156 | |
@@ -172,35 +172,35 @@ discard block |
||
172 | 172 | * |
173 | 173 | * @return string Column Name |
174 | 174 | */ |
175 | - public function column_default( $item, $column_name ) { |
|
175 | + public function column_default($item, $column_name) { |
|
176 | 176 | |
177 | - switch ( $column_name ) { |
|
177 | + switch ($column_name) { |
|
178 | 178 | |
179 | 179 | case 'name' : |
180 | - $name = '#' . $item['id'] . ' '; |
|
181 | - $name .= ! empty( $item['name'] ) ? $item['name'] : '<em>' . esc_html__( 'Unnamed Donor', 'give' ) . '</em>'; |
|
182 | - $view_url = admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=overview&id=' . $item['id'] ); |
|
183 | - $value = '<a href="' . esc_url( $view_url ) . '">' . $name . '</a>'; |
|
180 | + $name = '#'.$item['id'].' '; |
|
181 | + $name .= ! empty($item['name']) ? $item['name'] : '<em>'.esc_html__('Unnamed Donor', 'give').'</em>'; |
|
182 | + $view_url = admin_url('edit.php?post_type=give_forms&page=give-donors&view=overview&id='.$item['id']); |
|
183 | + $value = '<a href="'.esc_url($view_url).'">'.$name.'</a>'; |
|
184 | 184 | break; |
185 | 185 | |
186 | 186 | case 'num_donations' : |
187 | 187 | $value = sprintf( |
188 | 188 | '<a href="%s">%s</a>', |
189 | - admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&donor=' . absint( $item['id'] ) ), |
|
190 | - esc_html( $item['num_donations'] ) |
|
189 | + admin_url('edit.php?post_type=give_forms&page=give-payment-history&donor='.absint($item['id'])), |
|
190 | + esc_html($item['num_donations']) |
|
191 | 191 | ); |
192 | 192 | break; |
193 | 193 | |
194 | 194 | case 'amount_spent' : |
195 | - $value = give_currency_filter( give_format_amount( $item[ $column_name ], array( 'sanitize' => false ) ) ); |
|
195 | + $value = give_currency_filter(give_format_amount($item[$column_name], array('sanitize' => false))); |
|
196 | 196 | break; |
197 | 197 | |
198 | 198 | default: |
199 | - $value = isset( $item[ $column_name ] ) ? $item[ $column_name ] : null; |
|
199 | + $value = isset($item[$column_name]) ? $item[$column_name] : null; |
|
200 | 200 | break; |
201 | 201 | } |
202 | 202 | |
203 | - return apply_filters( "give_report_column_{$column_name}", $value, $item['id'] ); |
|
203 | + return apply_filters("give_report_column_{$column_name}", $value, $item['id']); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -212,13 +212,13 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function get_columns() { |
214 | 214 | $columns = array( |
215 | - 'name' => __( 'Name', 'give' ), |
|
216 | - 'email' => __( 'Email', 'give' ), |
|
217 | - 'num_donations' => __( 'Donations', 'give' ), |
|
218 | - 'amount_spent' => __( 'Total Donated', 'give' ), |
|
215 | + 'name' => __('Name', 'give'), |
|
216 | + 'email' => __('Email', 'give'), |
|
217 | + 'num_donations' => __('Donations', 'give'), |
|
218 | + 'amount_spent' => __('Total Donated', 'give'), |
|
219 | 219 | ); |
220 | 220 | |
221 | - return apply_filters( 'give_report_donor_columns', $columns ); |
|
221 | + return apply_filters('give_report_donor_columns', $columns); |
|
222 | 222 | |
223 | 223 | } |
224 | 224 | |
@@ -231,10 +231,10 @@ discard block |
||
231 | 231 | */ |
232 | 232 | public function get_sortable_columns() { |
233 | 233 | return array( |
234 | - 'id' => array( 'id', true ), |
|
235 | - 'name' => array( 'name', true ), |
|
236 | - 'num_donations' => array( 'purchase_count', false ), |
|
237 | - 'amount_spent' => array( 'purchase_value', false ), |
|
234 | + 'id' => array('id', true), |
|
235 | + 'name' => array('name', true), |
|
236 | + 'num_donations' => array('purchase_count', false), |
|
237 | + 'amount_spent' => array('purchase_value', false), |
|
238 | 238 | ); |
239 | 239 | } |
240 | 240 | |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | * @since 1.0 |
246 | 246 | * @return void |
247 | 247 | */ |
248 | - public function bulk_actions( $which = '' ) { |
|
248 | + public function bulk_actions($which = '') { |
|
249 | 249 | |
250 | 250 | } |
251 | 251 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | * @return int Current page number |
258 | 258 | */ |
259 | 259 | public function get_paged() { |
260 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
260 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | /** |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | * @return mixed string If search is present, false otherwise |
269 | 269 | */ |
270 | 270 | public function get_search() { |
271 | - return ! empty( $_GET['s'] ) ? urldecode( trim( $_GET['s'] ) ) : false; |
|
271 | + return ! empty($_GET['s']) ? urldecode(trim($_GET['s'])) : false; |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
@@ -287,15 +287,15 @@ discard block |
||
287 | 287 | |
288 | 288 | // Get donor query. |
289 | 289 | $args = $this->get_donor_query(); |
290 | - $donors = Give()->donors->get_donors( $args ); |
|
290 | + $donors = Give()->donors->get_donors($args); |
|
291 | 291 | |
292 | - if ( $donors ) { |
|
292 | + if ($donors) { |
|
293 | 293 | |
294 | - $this->count = count( $donors ); |
|
294 | + $this->count = count($donors); |
|
295 | 295 | |
296 | - foreach ( $donors as $donor ) { |
|
296 | + foreach ($donors as $donor) { |
|
297 | 297 | |
298 | - $user_id = ! empty( $donor->user_id ) ? absint( $donor->user_id ) : 0; |
|
298 | + $user_id = ! empty($donor->user_id) ? absint($donor->user_id) : 0; |
|
299 | 299 | |
300 | 300 | $data[] = array( |
301 | 301 | 'id' => $donor->id, |
@@ -323,9 +323,9 @@ discard block |
||
323 | 323 | |
324 | 324 | $_donor_query['number'] = -1; |
325 | 325 | $_donor_query['offset'] = 0; |
326 | - $donors = Give()->donors->get_donors( $_donor_query ); |
|
326 | + $donors = Give()->donors->get_donors($_donor_query); |
|
327 | 327 | |
328 | - return count( $donors ); |
|
328 | + return count($donors); |
|
329 | 329 | } |
330 | 330 | |
331 | 331 | /** |
@@ -337,10 +337,10 @@ discard block |
||
337 | 337 | */ |
338 | 338 | public function get_donor_query() { |
339 | 339 | $paged = $this->get_paged(); |
340 | - $offset = $this->per_page * ( $paged - 1 ); |
|
340 | + $offset = $this->per_page * ($paged - 1); |
|
341 | 341 | $search = $this->get_search(); |
342 | - $order = isset( $_GET['order'] ) ? sanitize_text_field( $_GET['order'] ) : 'DESC'; |
|
343 | - $orderby = isset( $_GET['orderby'] ) ? sanitize_text_field( $_GET['orderby'] ) : 'id'; |
|
342 | + $order = isset($_GET['order']) ? sanitize_text_field($_GET['order']) : 'DESC'; |
|
343 | + $orderby = isset($_GET['orderby']) ? sanitize_text_field($_GET['orderby']) : 'id'; |
|
344 | 344 | |
345 | 345 | $args = array( |
346 | 346 | 'number' => $this->per_page, |
@@ -349,10 +349,10 @@ discard block |
||
349 | 349 | 'orderby' => $orderby, |
350 | 350 | ); |
351 | 351 | |
352 | - if( $search ) { |
|
353 | - if ( is_email( $search ) ) { |
|
352 | + if ($search) { |
|
353 | + if (is_email($search)) { |
|
354 | 354 | $args['email'] = $search; |
355 | - } elseif ( is_numeric( $search ) ) { |
|
355 | + } elseif (is_numeric($search)) { |
|
356 | 356 | $args['id'] = $search; |
357 | 357 | } else { |
358 | 358 | $args['name'] = $search; |
@@ -379,16 +379,16 @@ discard block |
||
379 | 379 | $hidden = array(); // No hidden columns |
380 | 380 | $sortable = $this->get_sortable_columns(); |
381 | 381 | |
382 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
382 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
383 | 383 | |
384 | 384 | $this->items = $this->reports_data(); |
385 | 385 | |
386 | 386 | $this->total = $this->get_donor_count(); |
387 | 387 | |
388 | - $this->set_pagination_args( array( |
|
388 | + $this->set_pagination_args(array( |
|
389 | 389 | 'total_items' => $this->total, |
390 | 390 | 'per_page' => $this->per_page, |
391 | - 'total_pages' => ceil( $this->total / $this->per_page ), |
|
392 | - ) ); |
|
391 | + 'total_pages' => ceil($this->total / $this->per_page), |
|
392 | + )); |
|
393 | 393 | } |
394 | 394 | } |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | 17 | // Load WP_List_Table if not loaded |
18 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
19 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
18 | +if ( ! class_exists('WP_List_Table')) { |
|
19 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -56,13 +56,13 @@ discard block |
||
56 | 56 | global $status, $page; |
57 | 57 | |
58 | 58 | // Set parent defaults |
59 | - parent::__construct( array( |
|
60 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records. |
|
61 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records. |
|
59 | + parent::__construct(array( |
|
60 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records. |
|
61 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records. |
|
62 | 62 | 'ajax' => false // Does this table support ajax? |
63 | - ) ); |
|
63 | + )); |
|
64 | 64 | |
65 | - add_action( 'give_report_view_actions', array( $this, 'category_filter' ) ); |
|
65 | + add_action('give_report_view_actions', array($this, 'category_filter')); |
|
66 | 66 | $this->query(); |
67 | 67 | |
68 | 68 | } |
@@ -78,32 +78,32 @@ discard block |
||
78 | 78 | * |
79 | 79 | * @return string Column Name |
80 | 80 | */ |
81 | - public function column_default( $item, $column_name ) { |
|
82 | - switch ( $column_name ) { |
|
81 | + public function column_default($item, $column_name) { |
|
82 | + switch ($column_name) { |
|
83 | 83 | case 'title': |
84 | - $title = empty( $item['title'] ) ? sprintf( __( 'Untitled (#%s)', 'give' ), $item['ID'] ) : $item['title']; |
|
84 | + $title = empty($item['title']) ? sprintf(__('Untitled (#%s)', 'give'), $item['ID']) : $item['title']; |
|
85 | 85 | |
86 | 86 | return sprintf( |
87 | 87 | '<a href="%s">%s</a>', |
88 | - get_edit_post_link( $item['ID'] ), |
|
88 | + get_edit_post_link($item['ID']), |
|
89 | 89 | $title |
90 | 90 | ); |
91 | 91 | case 'sales': |
92 | 92 | return sprintf( |
93 | 93 | '<a href="%s">%s</a>', |
94 | - admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&form_id=' . urlencode( $item['ID'] ) ), |
|
94 | + admin_url('edit.php?post_type=give_forms&page=give-payment-history&form_id='.urlencode($item['ID'])), |
|
95 | 95 | $item['sales'] |
96 | 96 | ); |
97 | 97 | case 'earnings' : |
98 | - return give_currency_filter( give_format_amount( $item[ $column_name ], array( 'sanitize' => false ) ) ); |
|
98 | + return give_currency_filter(give_format_amount($item[$column_name], array('sanitize' => false))); |
|
99 | 99 | case 'average_sales' : |
100 | - return round( $item[ $column_name ] ); |
|
100 | + return round($item[$column_name]); |
|
101 | 101 | case 'average_earnings' : |
102 | - return give_currency_filter( give_format_amount( $item[ $column_name ], array( 'sanitize' => false ) ) ); |
|
102 | + return give_currency_filter(give_format_amount($item[$column_name], array('sanitize' => false))); |
|
103 | 103 | case 'details' : |
104 | - return '<a href="' . admin_url( 'edit.php?post_type=give_forms&page=give-reports&tab=forms&form-id=' . $item['ID'] ) . '">' . esc_html__( 'View Detailed Report', 'give' ) . '</a>'; |
|
104 | + return '<a href="'.admin_url('edit.php?post_type=give_forms&page=give-reports&tab=forms&form-id='.$item['ID']).'">'.esc_html__('View Detailed Report', 'give').'</a>'; |
|
105 | 105 | default: |
106 | - return $item[ $column_name ]; |
|
106 | + return $item[$column_name]; |
|
107 | 107 | } |
108 | 108 | } |
109 | 109 | |
@@ -117,12 +117,12 @@ discard block |
||
117 | 117 | */ |
118 | 118 | public function get_columns() { |
119 | 119 | $columns = array( |
120 | - 'title' => esc_html__( 'Form', 'give' ), |
|
121 | - 'sales' => esc_html__( 'Donations', 'give' ), |
|
122 | - 'earnings' => esc_html__( 'Income', 'give' ), |
|
123 | - 'average_sales' => esc_html__( 'Monthly Average Donations', 'give' ), |
|
124 | - 'average_earnings' => esc_html__( 'Monthly Average Income', 'give' ), |
|
125 | - 'details' => esc_html__( 'Detailed Report', 'give' ) |
|
120 | + 'title' => esc_html__('Form', 'give'), |
|
121 | + 'sales' => esc_html__('Donations', 'give'), |
|
122 | + 'earnings' => esc_html__('Income', 'give'), |
|
123 | + 'average_sales' => esc_html__('Monthly Average Donations', 'give'), |
|
124 | + 'average_earnings' => esc_html__('Monthly Average Income', 'give'), |
|
125 | + 'details' => esc_html__('Detailed Report', 'give') |
|
126 | 126 | ); |
127 | 127 | |
128 | 128 | return $columns; |
@@ -138,9 +138,9 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function get_sortable_columns() { |
140 | 140 | return array( |
141 | - 'title' => array( 'title', true ), |
|
142 | - 'sales' => array( 'sales', false ), |
|
143 | - 'earnings' => array( 'earnings', false ), |
|
141 | + 'title' => array('title', true), |
|
142 | + 'sales' => array('sales', false), |
|
143 | + 'earnings' => array('earnings', false), |
|
144 | 144 | ); |
145 | 145 | } |
146 | 146 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | * @return int Current page number |
154 | 154 | */ |
155 | 155 | public function get_paged() { |
156 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
156 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | * @return int Category ID |
166 | 166 | */ |
167 | 167 | public function get_category() { |
168 | - return isset( $_GET['category'] ) ? absint( $_GET['category'] ) : 0; |
|
168 | + return isset($_GET['category']) ? absint($_GET['category']) : 0; |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | * |
177 | 177 | * @return void |
178 | 178 | */ |
179 | - public function bulk_actions( $which = '' ) { |
|
179 | + public function bulk_actions($which = '') { |
|
180 | 180 | |
181 | 181 | } |
182 | 182 | |
@@ -188,27 +188,27 @@ discard block |
||
188 | 188 | * |
189 | 189 | * @param string $which |
190 | 190 | */ |
191 | - protected function display_tablenav( $which ) { |
|
191 | + protected function display_tablenav($which) { |
|
192 | 192 | |
193 | - if ( 'top' === $which ) { |
|
194 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
193 | + if ('top' === $which) { |
|
194 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
195 | 195 | } |
196 | 196 | ?> |
197 | - <div class="tablenav give-clearfix <?php echo esc_attr( $which ); ?>"> |
|
197 | + <div class="tablenav give-clearfix <?php echo esc_attr($which); ?>"> |
|
198 | 198 | |
199 | - <?php if ( 'top' === $which ) { ?> |
|
199 | + <?php if ('top' === $which) { ?> |
|
200 | 200 | <h2 class="alignleft reports-earnings-title"> |
201 | - <?php esc_html_e( 'Donation Forms Report', 'give' ); ?> |
|
201 | + <?php esc_html_e('Donation Forms Report', 'give'); ?> |
|
202 | 202 | </h2> |
203 | 203 | <?php } ?> |
204 | 204 | |
205 | 205 | <div class="alignright tablenav-right"> |
206 | 206 | <div class="actions bulkactions"> |
207 | - <?php $this->bulk_actions( $which ); ?> |
|
207 | + <?php $this->bulk_actions($which); ?> |
|
208 | 208 | </div> |
209 | 209 | <?php |
210 | - $this->extra_tablenav( $which ); |
|
211 | - $this->pagination( $which ); |
|
210 | + $this->extra_tablenav($which); |
|
211 | + $this->pagination($which); |
|
212 | 212 | ?> |
213 | 213 | </div> |
214 | 214 | |
@@ -228,9 +228,9 @@ discard block |
||
228 | 228 | */ |
229 | 229 | public function category_filter() { |
230 | 230 | |
231 | - $categories = get_terms( 'form_category' ); |
|
232 | - if ( $categories && ! is_wp_error( $categories ) ) { |
|
233 | - echo Give()->html->category_dropdown( 'category', $this->get_category() ); |
|
231 | + $categories = get_terms('form_category'); |
|
232 | + if ($categories && ! is_wp_error($categories)) { |
|
233 | + echo Give()->html->category_dropdown('category', $this->get_category()); |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 | |
@@ -244,8 +244,8 @@ discard block |
||
244 | 244 | */ |
245 | 245 | public function query() { |
246 | 246 | |
247 | - $orderby = isset( $_GET['orderby'] ) ? $_GET['orderby'] : 'title'; |
|
248 | - $order = isset( $_GET['order'] ) ? $_GET['order'] : 'DESC'; |
|
247 | + $orderby = isset($_GET['orderby']) ? $_GET['orderby'] : 'title'; |
|
248 | + $order = isset($_GET['order']) ? $_GET['order'] : 'DESC'; |
|
249 | 249 | $category = $this->get_category(); |
250 | 250 | |
251 | 251 | $args = array( |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | 'suppress_filters' => true |
259 | 259 | ); |
260 | 260 | |
261 | - if ( ! empty( $category ) ) { |
|
261 | + if ( ! empty($category)) { |
|
262 | 262 | $args['tax_query'] = array( |
263 | 263 | array( |
264 | 264 | 'taxonomy' => 'form_category', |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | ); |
268 | 268 | } |
269 | 269 | |
270 | - switch ( $orderby ) : |
|
270 | + switch ($orderby) : |
|
271 | 271 | case 'title' : |
272 | 272 | $args['orderby'] = 'title'; |
273 | 273 | break; |
@@ -283,9 +283,9 @@ discard block |
||
283 | 283 | break; |
284 | 284 | endswitch; |
285 | 285 | |
286 | - $args = apply_filters( 'give_form_reports_prepare_items_args', $args, $this ); |
|
286 | + $args = apply_filters('give_form_reports_prepare_items_args', $args, $this); |
|
287 | 287 | |
288 | - $this->donation_forms = new WP_Query( $args ); |
|
288 | + $this->donation_forms = new WP_Query($args); |
|
289 | 289 | |
290 | 290 | // Store total number of donation forms count. |
291 | 291 | $this->count = $this->donation_forms->found_posts; |
@@ -305,15 +305,15 @@ discard block |
||
305 | 305 | |
306 | 306 | $give_forms = $this->donation_forms->posts; |
307 | 307 | |
308 | - if ( $give_forms ) { |
|
309 | - foreach ( $give_forms as $form ) { |
|
308 | + if ($give_forms) { |
|
309 | + foreach ($give_forms as $form) { |
|
310 | 310 | $reports_data[] = array( |
311 | 311 | 'ID' => $form, |
312 | - 'title' => get_the_title( $form ), |
|
313 | - 'sales' => give_get_form_sales_stats( $form ), |
|
314 | - 'earnings' => give_get_form_earnings_stats( $form ), |
|
315 | - 'average_sales' => give_get_average_monthly_form_sales( $form ), |
|
316 | - 'average_earnings' => give_get_average_monthly_form_earnings( $form ) |
|
312 | + 'title' => get_the_title($form), |
|
313 | + 'sales' => give_get_form_sales_stats($form), |
|
314 | + 'earnings' => give_get_form_earnings_stats($form), |
|
315 | + 'average_sales' => give_get_average_monthly_form_sales($form), |
|
316 | + 'average_earnings' => give_get_average_monthly_form_earnings($form) |
|
317 | 317 | ); |
318 | 318 | } |
319 | 319 | } |
@@ -338,14 +338,14 @@ discard block |
||
338 | 338 | $columns = $this->get_columns(); |
339 | 339 | $hidden = array(); // No hidden columns |
340 | 340 | $sortable = $this->get_sortable_columns(); |
341 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
341 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
342 | 342 | $this->items = $this->reports_data(); |
343 | 343 | $total_items = $this->count; |
344 | 344 | |
345 | - $this->set_pagination_args( array( |
|
345 | + $this->set_pagination_args(array( |
|
346 | 346 | 'total_items' => $total_items, |
347 | 347 | 'per_page' => $this->per_page, |
348 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
348 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
349 | 349 | ) |
350 | 350 | ); |
351 | 351 | } |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | 17 | // Load WP_List_Table if not loaded |
18 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
19 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
18 | +if ( ! class_exists('WP_List_Table')) { |
|
19 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | global $status, $page; |
46 | 46 | |
47 | 47 | // Set parent defaults |
48 | - parent::__construct( array( |
|
49 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
50 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
48 | + parent::__construct(array( |
|
49 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
50 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
51 | 51 | 'ajax' => false // Does this table support ajax? |
52 | - ) ); |
|
52 | + )); |
|
53 | 53 | |
54 | 54 | } |
55 | 55 | |
@@ -64,10 +64,10 @@ discard block |
||
64 | 64 | * |
65 | 65 | * @return string Column Name |
66 | 66 | */ |
67 | - public function column_default( $item, $column_name ) { |
|
68 | - switch ( $column_name ) { |
|
67 | + public function column_default($item, $column_name) { |
|
68 | + switch ($column_name) { |
|
69 | 69 | default: |
70 | - return $item[ $column_name ]; |
|
70 | + return $item[$column_name]; |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function get_columns() { |
82 | 82 | $columns = array( |
83 | - 'label' => esc_attr__( 'Gateway', 'give' ), |
|
84 | - 'complete_sales' => esc_attr__( 'Complete Payments', 'give' ), |
|
85 | - 'pending_sales' => esc_attr__( 'Pending / Failed Payments', 'give' ), |
|
86 | - 'total_sales' => esc_attr__( 'Total Payments', 'give' ), |
|
87 | - 'total_donations' => esc_attr__( 'Total Donated', 'give' ) |
|
83 | + 'label' => esc_attr__('Gateway', 'give'), |
|
84 | + 'complete_sales' => esc_attr__('Complete Payments', 'give'), |
|
85 | + 'pending_sales' => esc_attr__('Pending / Failed Payments', 'give'), |
|
86 | + 'total_sales' => esc_attr__('Total Payments', 'give'), |
|
87 | + 'total_donations' => esc_attr__('Total Donated', 'give') |
|
88 | 88 | ); |
89 | 89 | |
90 | 90 | return $columns; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | public function get_sortable_columns() { |
101 | 101 | return array( |
102 | - 'total_donations' => array( 'total_donations', false ) |
|
102 | + 'total_donations' => array('total_donations', false) |
|
103 | 103 | ); |
104 | 104 | } |
105 | 105 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | * @return int Current page number |
113 | 113 | */ |
114 | 114 | public function get_paged() { |
115 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
115 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @since 1.0 |
124 | 124 | * @return void |
125 | 125 | */ |
126 | - public function bulk_actions( $which = '' ) { |
|
126 | + public function bulk_actions($which = '') { |
|
127 | 127 | |
128 | 128 | } |
129 | 129 | |
@@ -135,27 +135,27 @@ discard block |
||
135 | 135 | * |
136 | 136 | * @param string $which |
137 | 137 | */ |
138 | - protected function display_tablenav( $which ) { |
|
138 | + protected function display_tablenav($which) { |
|
139 | 139 | |
140 | - if ( 'top' === $which ) { |
|
141 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
140 | + if ('top' === $which) { |
|
141 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
142 | 142 | } |
143 | 143 | ?> |
144 | - <div class="tablenav gateways-report-tablenav give-clearfix <?php echo esc_attr( $which ); ?>"> |
|
144 | + <div class="tablenav gateways-report-tablenav give-clearfix <?php echo esc_attr($which); ?>"> |
|
145 | 145 | |
146 | - <?php if ( 'top' === $which ) { ?> |
|
146 | + <?php if ('top' === $which) { ?> |
|
147 | 147 | <h2 class="alignleft reports-earnings-title"> |
148 | - <?php esc_html_e( 'Donation Methods Report', 'give' ); ?> |
|
148 | + <?php esc_html_e('Donation Methods Report', 'give'); ?> |
|
149 | 149 | </h2> |
150 | 150 | <?php } ?> |
151 | 151 | |
152 | 152 | <div class="alignright tablenav-right"> |
153 | 153 | <div class="actions bulkactions"> |
154 | - <?php $this->bulk_actions( $which ); ?> |
|
154 | + <?php $this->bulk_actions($which); ?> |
|
155 | 155 | </div> |
156 | 156 | <?php |
157 | - $this->extra_tablenav( $which ); |
|
158 | - $this->pagination( $which ); |
|
157 | + $this->extra_tablenav($which); |
|
158 | + $this->pagination($which); |
|
159 | 159 | ?> |
160 | 160 | </div> |
161 | 161 | |
@@ -177,17 +177,17 @@ discard block |
||
177 | 177 | * |
178 | 178 | * @return int |
179 | 179 | */ |
180 | - public function give_sort_total_donations( $old_value, $new_value ) { |
|
180 | + public function give_sort_total_donations($old_value, $new_value) { |
|
181 | 181 | // If no sort, default to label. |
182 | - $orderby = ( ! empty( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] : 'label'; |
|
182 | + $orderby = ( ! empty($_REQUEST['orderby'])) ? $_REQUEST['orderby'] : 'label'; |
|
183 | 183 | |
184 | 184 | //If no order, default to asc. |
185 | - $order = ( ! empty( $_REQUEST['order'] ) ) ? $_REQUEST['order'] : 'asc'; |
|
185 | + $order = ( ! empty($_REQUEST['order'])) ? $_REQUEST['order'] : 'asc'; |
|
186 | 186 | |
187 | 187 | //Determine sort order. |
188 | - $result = strcmp( $old_value[ $orderby ], $new_value[ $orderby ] ); |
|
188 | + $result = strcmp($old_value[$orderby], $new_value[$orderby]); |
|
189 | 189 | |
190 | - return ( $order === 'asc' ) ? $result : -$result; |
|
190 | + return ($order === 'asc') ? $result : -$result; |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
@@ -204,10 +204,10 @@ discard block |
||
204 | 204 | $gateways = give_get_payment_gateways(); |
205 | 205 | $stats = new Give_Payment_Stats(); |
206 | 206 | |
207 | - foreach ( $gateways as $gateway_id => $gateway ) { |
|
207 | + foreach ($gateways as $gateway_id => $gateway) { |
|
208 | 208 | |
209 | - $complete_count = give_count_sales_by_gateway( $gateway_id, 'publish' ); |
|
210 | - $pending_count = give_count_sales_by_gateway( $gateway_id, array( 'pending', 'failed' ) ); |
|
209 | + $complete_count = give_count_sales_by_gateway($gateway_id, 'publish'); |
|
210 | + $pending_count = give_count_sales_by_gateway($gateway_id, array('pending', 'failed')); |
|
211 | 211 | |
212 | 212 | $reports_data[] = array( |
213 | 213 | 'ID' => $gateway_id, |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | 'complete_sales' => $complete_count, |
216 | 216 | 'pending_sales' => $pending_count, |
217 | 217 | 'total_sales' => $complete_count + $pending_count, |
218 | - 'total_donations' => give_currency_filter( give_format_amount( $stats->get_earnings( 0, strtotime('04/13/2015' ), current_time('timestamp' ), $gateway_id ), array( 'sanitize' => false ) ) ), |
|
218 | + 'total_donations' => give_currency_filter(give_format_amount($stats->get_earnings(0, strtotime('04/13/2015'), current_time('timestamp'), $gateway_id), array('sanitize' => false))), |
|
219 | 219 | ); |
220 | 220 | } |
221 | 221 | |
@@ -236,11 +236,11 @@ discard block |
||
236 | 236 | $columns = $this->get_columns(); |
237 | 237 | $hidden = array(); // No hidden columns |
238 | 238 | $sortable = $this->get_sortable_columns(); |
239 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
239 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
240 | 240 | $this->items = $this->reports_data(); |
241 | 241 | |
242 | 242 | // Sort Array when we are sorting data in array. |
243 | - usort( $this->items, array( $this, 'give_sort_total_donations' ) ); |
|
243 | + usort($this->items, array($this, 'give_sort_total_donations')); |
|
244 | 244 | |
245 | 245 | } |
246 | 246 | } |
@@ -9,11 +9,11 @@ discard block |
||
9 | 9 | * @since 1.8 |
10 | 10 | */ |
11 | 11 | |
12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
12 | +if ( ! defined('ABSPATH')) { |
|
13 | 13 | exit; // Exit if accessed directly |
14 | 14 | } |
15 | 15 | |
16 | -if ( ! class_exists( 'Give_Settings_General' ) ) : |
|
16 | +if ( ! class_exists('Give_Settings_General')) : |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Give_Settings_General. |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | 29 | $this->id = 'general'; |
30 | - $this->label = esc_html__( 'General', 'give' ); |
|
30 | + $this->label = esc_html__('General', 'give'); |
|
31 | 31 | |
32 | 32 | $this->default_tab = 'general-settings'; |
33 | 33 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $settings = array(); |
45 | 45 | $current_section = give_get_current_setting_section(); |
46 | 46 | |
47 | - switch ( $current_section ) { |
|
47 | + switch ($current_section) { |
|
48 | 48 | case 'access-control': |
49 | 49 | $settings = array( |
50 | 50 | // Section 3: Access control. |
@@ -54,47 +54,47 @@ discard block |
||
54 | 54 | ), |
55 | 55 | array( |
56 | 56 | 'id' => 'session_lifetime', |
57 | - 'name' => esc_html__( 'Session Lifetime', 'give' ), |
|
58 | - 'desc' => esc_html__( 'The length of time a user\'s session is kept alive. Give starts a new session per user upon donation. Sessions allow donors to view their donation receipts without being logged in.', 'give' ), |
|
57 | + 'name' => esc_html__('Session Lifetime', 'give'), |
|
58 | + 'desc' => esc_html__('The length of time a user\'s session is kept alive. Give starts a new session per user upon donation. Sessions allow donors to view their donation receipts without being logged in.', 'give'), |
|
59 | 59 | 'type' => 'select', |
60 | 60 | 'options' => array( |
61 | - '86400' => esc_html__( '24 Hours', 'give' ), |
|
62 | - '172800' => esc_html__( '48 Hours', 'give' ), |
|
63 | - '259200' => esc_html__( '72 Hours', 'give' ), |
|
64 | - '604800' => esc_html__( '1 Week', 'give' ), |
|
61 | + '86400' => esc_html__('24 Hours', 'give'), |
|
62 | + '172800' => esc_html__('48 Hours', 'give'), |
|
63 | + '259200' => esc_html__('72 Hours', 'give'), |
|
64 | + '604800' => esc_html__('1 Week', 'give'), |
|
65 | 65 | ) |
66 | 66 | ), |
67 | 67 | array( |
68 | - 'name' => esc_html__( 'Email Access', 'give' ), |
|
69 | - 'desc' => esc_html__( 'Would you like your donors to be able to access their donation history using only email? Donors whose sessions have expired and do not have an account may still access their donation history via a temporary email access link.', 'give' ), |
|
68 | + 'name' => esc_html__('Email Access', 'give'), |
|
69 | + 'desc' => esc_html__('Would you like your donors to be able to access their donation history using only email? Donors whose sessions have expired and do not have an account may still access their donation history via a temporary email access link.', 'give'), |
|
70 | 70 | 'id' => 'email_access', |
71 | 71 | 'type' => 'radio_inline', |
72 | 72 | 'default' => 'disabled', |
73 | 73 | 'options' => array( |
74 | - 'enabled' => __( 'Enabled', 'give' ), |
|
75 | - 'disabled' => __( 'Disabled', 'give' ), |
|
74 | + 'enabled' => __('Enabled', 'give'), |
|
75 | + 'disabled' => __('Disabled', 'give'), |
|
76 | 76 | ) |
77 | 77 | ), |
78 | 78 | array( |
79 | 79 | 'id' => 'recaptcha_key', |
80 | - 'name' => esc_html__( 'reCAPTCHA Site Key', 'give' ), |
|
80 | + 'name' => esc_html__('reCAPTCHA Site Key', 'give'), |
|
81 | 81 | /* translators: %s: https://www.google.com/recaptcha/ */ |
82 | - 'desc' => sprintf( __( 'Please paste your reCAPTCHA site key here. <br />If you would like to prevent spam on the email access form navigate to <a href="%s" target="_blank">the reCAPTCHA website</a> and sign up for an API key. The reCAPTCHA uses Google\'s user-friendly single click verification method.', 'give' ), esc_url( 'http://docs.givewp.com/recaptcha' ) ), |
|
82 | + 'desc' => sprintf(__('Please paste your reCAPTCHA site key here. <br />If you would like to prevent spam on the email access form navigate to <a href="%s" target="_blank">the reCAPTCHA website</a> and sign up for an API key. The reCAPTCHA uses Google\'s user-friendly single click verification method.', 'give'), esc_url('http://docs.givewp.com/recaptcha')), |
|
83 | 83 | 'default' => '', |
84 | 84 | 'type' => 'text' |
85 | 85 | ), |
86 | 86 | array( |
87 | 87 | 'id' => 'recaptcha_secret', |
88 | - 'name' => esc_html__( 'reCAPTCHA Secret Key', 'give' ), |
|
89 | - 'desc' => esc_html__( 'Please paste the reCAPTCHA secret key here from your reCAPTCHA API Keys panel.', 'give' ), |
|
88 | + 'name' => esc_html__('reCAPTCHA Secret Key', 'give'), |
|
89 | + 'desc' => esc_html__('Please paste the reCAPTCHA secret key here from your reCAPTCHA API Keys panel.', 'give'), |
|
90 | 90 | 'default' => '', |
91 | 91 | 'type' => 'text' |
92 | 92 | ), |
93 | 93 | array( |
94 | - 'name' => esc_html__( 'Access Control Docs Link', 'give' ), |
|
94 | + 'name' => esc_html__('Access Control Docs Link', 'give'), |
|
95 | 95 | 'id' => 'access_control_docs_link', |
96 | - 'url' => esc_url( 'http://docs.givewp.com/settings-access-control' ), |
|
97 | - 'title' => __( 'Access Control', 'give' ), |
|
96 | + 'url' => esc_url('http://docs.givewp.com/settings-access-control'), |
|
97 | + 'title' => __('Access Control', 'give'), |
|
98 | 98 | 'type' => 'give_docs_link', |
99 | 99 | ), |
100 | 100 | array( |
@@ -112,61 +112,61 @@ discard block |
||
112 | 112 | 'id' => 'give_title_general_settings_2' |
113 | 113 | ), |
114 | 114 | array( |
115 | - 'name' => esc_html__( 'Currency Settings', 'give' ), |
|
115 | + 'name' => esc_html__('Currency Settings', 'give'), |
|
116 | 116 | 'desc' => '', |
117 | 117 | 'type' => 'give_title', |
118 | 118 | 'id' => 'give_title_general_settings_2' |
119 | 119 | ), |
120 | 120 | array( |
121 | - 'name' => esc_html__( 'Currency', 'give' ), |
|
122 | - 'desc' => esc_html__( 'The donation currency. Note that some payment gateways have currency restrictions.', 'give' ), |
|
121 | + 'name' => esc_html__('Currency', 'give'), |
|
122 | + 'desc' => esc_html__('The donation currency. Note that some payment gateways have currency restrictions.', 'give'), |
|
123 | 123 | 'id' => 'currency', |
124 | 124 | 'type' => 'select', |
125 | 125 | 'options' => give_get_currencies(), |
126 | 126 | 'default' => 'USD', |
127 | 127 | ), |
128 | 128 | array( |
129 | - 'name' => esc_html__( 'Currency Position', 'give' ), |
|
130 | - 'desc' => esc_html__( 'The position of the currency symbol.', 'give' ), |
|
129 | + 'name' => esc_html__('Currency Position', 'give'), |
|
130 | + 'desc' => esc_html__('The position of the currency symbol.', 'give'), |
|
131 | 131 | 'id' => 'currency_position', |
132 | 132 | 'type' => 'select', |
133 | 133 | 'options' => array( |
134 | 134 | /* translators: %s: currency symbol */ |
135 | - 'before' => sprintf( esc_html__( 'Before - %s10', 'give' ), give_currency_symbol( give_get_currency() ) ), |
|
135 | + 'before' => sprintf(esc_html__('Before - %s10', 'give'), give_currency_symbol(give_get_currency())), |
|
136 | 136 | /* translators: %s: currency symbol */ |
137 | - 'after' => sprintf( esc_html__( 'After - 10%s', 'give' ), give_currency_symbol( give_get_currency() ) ) |
|
137 | + 'after' => sprintf(esc_html__('After - 10%s', 'give'), give_currency_symbol(give_get_currency())) |
|
138 | 138 | ), |
139 | 139 | 'default' => 'before', |
140 | 140 | ), |
141 | 141 | array( |
142 | - 'name' => esc_html__( 'Thousands Separator', 'give' ), |
|
143 | - 'desc' => esc_html__( 'The symbol (typically , or .) to separate thousands.', 'give' ), |
|
142 | + 'name' => esc_html__('Thousands Separator', 'give'), |
|
143 | + 'desc' => esc_html__('The symbol (typically , or .) to separate thousands.', 'give'), |
|
144 | 144 | 'id' => 'thousands_separator', |
145 | 145 | 'type' => 'text', |
146 | 146 | 'default' => ',', |
147 | 147 | 'css' => 'width:12em;', |
148 | 148 | ), |
149 | 149 | array( |
150 | - 'name' => esc_html__( 'Decimal Separator', 'give' ), |
|
151 | - 'desc' => esc_html__( 'The symbol (usually , or .) to separate decimal points.', 'give' ), |
|
150 | + 'name' => esc_html__('Decimal Separator', 'give'), |
|
151 | + 'desc' => esc_html__('The symbol (usually , or .) to separate decimal points.', 'give'), |
|
152 | 152 | 'id' => 'decimal_separator', |
153 | 153 | 'type' => 'text', |
154 | 154 | 'default' => '.', |
155 | 155 | 'css' => 'width:12em;', |
156 | 156 | ), |
157 | 157 | array( |
158 | - 'name' => __( 'Number of Decimals', 'give' ), |
|
159 | - 'desc' => __( 'The number of decimal points displayed in amounts.', 'give' ), |
|
158 | + 'name' => __('Number of Decimals', 'give'), |
|
159 | + 'desc' => __('The number of decimal points displayed in amounts.', 'give'), |
|
160 | 160 | 'id' => 'number_decimals', |
161 | 161 | 'type' => 'text', |
162 | 162 | 'default' => 2, |
163 | 163 | 'css' => 'width:12em;', |
164 | 164 | ), |
165 | 165 | array( |
166 | - 'name' => esc_html__( 'Currency Options Docs Link', 'give' ), |
|
166 | + 'name' => esc_html__('Currency Options Docs Link', 'give'), |
|
167 | 167 | 'id' => 'currency_settings_docs_link', |
168 | - 'url' => esc_url( 'http://docs.givewp.com/settings-currency' ), |
|
169 | - 'title' => __( 'Currency Settings', 'give' ), |
|
168 | + 'url' => esc_url('http://docs.givewp.com/settings-currency'), |
|
169 | + 'title' => __('Currency Settings', 'give'), |
|
170 | 170 | 'type' => 'give_docs_link', |
171 | 171 | ), |
172 | 172 | array( |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | $country = give_get_country(); |
182 | 182 | |
183 | 183 | // get the list of the states of which defalut country is selected |
184 | - $states = give_get_states( $country ); |
|
184 | + $states = give_get_states($country); |
|
185 | 185 | |
186 | 186 | // Get the country list that does not have any states init. |
187 | 187 | $no_states_country = give_no_states_country_list(); |
@@ -193,46 +193,46 @@ discard block |
||
193 | 193 | 'id' => 'give_title_general_settings_1' |
194 | 194 | ), |
195 | 195 | array( |
196 | - 'name' => esc_html__( 'General Settings', 'give' ), |
|
196 | + 'name' => esc_html__('General Settings', 'give'), |
|
197 | 197 | 'desc' => '', |
198 | 198 | 'type' => 'give_title', |
199 | 199 | 'id' => 'give_title_general_settings_1' |
200 | 200 | ), |
201 | 201 | array( |
202 | - 'name' => esc_html__( 'Success Page', 'give' ), |
|
202 | + 'name' => esc_html__('Success Page', 'give'), |
|
203 | 203 | /* translators: %s: [give_receipt] */ |
204 | - 'desc' => sprintf( __( 'The page donors are sent to after completing their donations. The %s shortcode should be on this page.', 'give' ), '<code>[give_receipt]</code>' ), |
|
204 | + 'desc' => sprintf(__('The page donors are sent to after completing their donations. The %s shortcode should be on this page.', 'give'), '<code>[give_receipt]</code>'), |
|
205 | 205 | 'id' => 'success_page', |
206 | 206 | 'type' => 'select', |
207 | - 'options' => give_cmb2_get_post_options( array( |
|
207 | + 'options' => give_cmb2_get_post_options(array( |
|
208 | 208 | 'post_type' => 'page', |
209 | - 'numberposts' => - 1 |
|
210 | - ) ), |
|
209 | + 'numberposts' => -1 |
|
210 | + )), |
|
211 | 211 | ), |
212 | 212 | array( |
213 | - 'name' => esc_html__( 'Failed Donation Page', 'give' ), |
|
214 | - 'desc' => esc_html__( 'The page donors are sent to if their donation is cancelled or fails.', 'give' ), |
|
213 | + 'name' => esc_html__('Failed Donation Page', 'give'), |
|
214 | + 'desc' => esc_html__('The page donors are sent to if their donation is cancelled or fails.', 'give'), |
|
215 | 215 | 'id' => 'failure_page', |
216 | 216 | 'type' => 'select', |
217 | - 'options' => give_cmb2_get_post_options( array( |
|
217 | + 'options' => give_cmb2_get_post_options(array( |
|
218 | 218 | 'post_type' => 'page', |
219 | - 'numberposts' => - 1 |
|
220 | - ) ), |
|
219 | + 'numberposts' => -1 |
|
220 | + )), |
|
221 | 221 | ), |
222 | 222 | array( |
223 | - 'name' => esc_html__( 'Donation History Page', 'give' ), |
|
223 | + 'name' => esc_html__('Donation History Page', 'give'), |
|
224 | 224 | /* translators: %s: [donation_history] */ |
225 | - 'desc' => sprintf( __( 'The page showing a complete donation history for the current user. The %s shortcode should be on this page.', 'give' ), '<code>[donation_history]</code>' ), |
|
225 | + 'desc' => sprintf(__('The page showing a complete donation history for the current user. The %s shortcode should be on this page.', 'give'), '<code>[donation_history]</code>'), |
|
226 | 226 | 'id' => 'history_page', |
227 | 227 | 'type' => 'select', |
228 | - 'options' => give_cmb2_get_post_options( array( |
|
228 | + 'options' => give_cmb2_get_post_options(array( |
|
229 | 229 | 'post_type' => 'page', |
230 | - 'numberposts' => - 1 |
|
231 | - ) ), |
|
230 | + 'numberposts' => -1 |
|
231 | + )), |
|
232 | 232 | ), |
233 | 233 | array( |
234 | - 'name' => esc_html__( 'Base Country', 'give' ), |
|
235 | - 'desc' => esc_html__( 'The country your site operates from.', 'give' ), |
|
234 | + 'name' => esc_html__('Base Country', 'give'), |
|
235 | + 'desc' => esc_html__('The country your site operates from.', 'give'), |
|
236 | 236 | 'id' => 'base_country', |
237 | 237 | 'type' => 'select', |
238 | 238 | 'options' => give_get_country_list(), |
@@ -243,18 +243,18 @@ discard block |
||
243 | 243 | * @since 1.8.14 |
244 | 244 | */ |
245 | 245 | array( |
246 | - 'wrapper_class' => ( array_key_exists( $country, $no_states_country ) ? 'give-hidden' : '' ), |
|
247 | - 'name' => __( 'Base State/Province', 'give' ), |
|
248 | - 'desc' => __( 'The state/province your site operates from.', 'give' ), |
|
246 | + 'wrapper_class' => (array_key_exists($country, $no_states_country) ? 'give-hidden' : ''), |
|
247 | + 'name' => __('Base State/Province', 'give'), |
|
248 | + 'desc' => __('The state/province your site operates from.', 'give'), |
|
249 | 249 | 'id' => 'base_state', |
250 | - 'type' => ( empty( $states ) ? 'text' : 'select' ), |
|
250 | + 'type' => (empty($states) ? 'text' : 'select'), |
|
251 | 251 | 'options' => $states, |
252 | 252 | ), |
253 | 253 | array( |
254 | - 'name' => esc_html__( 'General Options Docs Link', 'give' ), |
|
254 | + 'name' => esc_html__('General Options Docs Link', 'give'), |
|
255 | 255 | 'id' => 'general_options_docs_link', |
256 | - 'url' => esc_url( 'http://docs.givewp.com/settings-general' ), |
|
257 | - 'title' => __( 'General Options', 'give' ), |
|
256 | + 'url' => esc_url('http://docs.givewp.com/settings-general'), |
|
257 | + 'title' => __('General Options', 'give'), |
|
258 | 258 | 'type' => 'give_docs_link', |
259 | 259 | ), |
260 | 260 | array( |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | * Filter the general settings. |
270 | 270 | * Backward compatibility: Please do not use this filter. This filter is deprecated in 1.8 |
271 | 271 | */ |
272 | - $settings = apply_filters( 'give_settings_general', $settings ); |
|
272 | + $settings = apply_filters('give_settings_general', $settings); |
|
273 | 273 | |
274 | 274 | /** |
275 | 275 | * Filter the settings. |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * |
279 | 279 | * @param array $settings |
280 | 280 | */ |
281 | - $settings = apply_filters( 'give_get_settings_' . $this->id, $settings ); |
|
281 | + $settings = apply_filters('give_get_settings_'.$this->id, $settings); |
|
282 | 282 | |
283 | 283 | // Output. |
284 | 284 | return $settings; |
@@ -292,12 +292,12 @@ discard block |
||
292 | 292 | */ |
293 | 293 | public function get_sections() { |
294 | 294 | $sections = array( |
295 | - 'general-settings' => esc_html__( 'General', 'give' ), |
|
296 | - 'currency-settings' => esc_html__( 'Currency', 'give' ), |
|
297 | - 'access-control' => esc_html__( 'Access Control', 'give' ) |
|
295 | + 'general-settings' => esc_html__('General', 'give'), |
|
296 | + 'currency-settings' => esc_html__('Currency', 'give'), |
|
297 | + 'access-control' => esc_html__('Access Control', 'give') |
|
298 | 298 | ); |
299 | 299 | |
300 | - return apply_filters( 'give_get_sections_' . $this->id, $sections ); |
|
300 | + return apply_filters('give_get_sections_'.$this->id, $sections); |
|
301 | 301 | } |
302 | 302 | } |
303 | 303 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | */ |
23 | 23 | function give_get_country() { |
24 | 24 | $give_options = give_get_settings(); |
25 | - $country = isset( $give_options['base_country'] ) ? $give_options['base_country'] : 'US'; |
|
25 | + $country = isset($give_options['base_country']) ? $give_options['base_country'] : 'US'; |
|
26 | 26 | |
27 | - return apply_filters( 'give_give_country', $country ); |
|
27 | + return apply_filters('give_give_country', $country); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | */ |
36 | 36 | function give_get_state() { |
37 | 37 | $give_options = give_get_settings(); |
38 | - $state = isset( $give_options['base_state'] ) ? $give_options['base_state'] : false; |
|
38 | + $state = isset($give_options['base_state']) ? $give_options['base_state'] : false; |
|
39 | 39 | |
40 | - return apply_filters( 'give_give_state', $state ); |
|
40 | + return apply_filters('give_give_state', $state); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -49,12 +49,12 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @return mixed A list of states for the site's base country. |
51 | 51 | */ |
52 | -function give_get_states( $country = null ) { |
|
52 | +function give_get_states($country = null) { |
|
53 | 53 | // If Country have no states return empty array. |
54 | 54 | $states = array(); |
55 | 55 | |
56 | 56 | // Check if Country Code is empty or not. |
57 | - if ( empty( $country ) ) { |
|
57 | + if (empty($country)) { |
|
58 | 58 | // Get defalut country code that is being set by the admin. |
59 | 59 | $country = give_get_country(); |
60 | 60 | } |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | $states_list = give_states_list(); |
64 | 64 | |
65 | 65 | // Check if $country code exists in the array key. |
66 | - if ( array_key_exists( $country, $states_list ) ) { |
|
67 | - $states = $states_list[ $country ]; |
|
66 | + if (array_key_exists($country, $states_list)) { |
|
67 | + $states = $states_list[$country]; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @param string $query Database count query |
74 | 74 | */ |
75 | - return (array) apply_filters( 'give_give_states', $states ); |
|
75 | + return (array) apply_filters('give_give_states', $states); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -84,253 +84,253 @@ discard block |
||
84 | 84 | function give_get_country_list() { |
85 | 85 | $countries = array( |
86 | 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__( 'Phillipines', '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' ), |
|
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__('Phillipines', '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 | 331 | ); |
332 | 332 | |
333 | - return (array) apply_filters( 'give_countries', $countries ); |
|
333 | + return (array) apply_filters('give_countries', $countries); |
|
334 | 334 | } |
335 | 335 | |
336 | 336 | /** |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | * |
385 | 385 | * @param array $states Contain the list of states in array key format where key of the array is there respected country code. |
386 | 386 | */ |
387 | - return (array) apply_filters( 'give_states_list', $states ); |
|
387 | + return (array) apply_filters('give_states_list', $states); |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | /** |
@@ -399,9 +399,9 @@ discard block |
||
399 | 399 | function give_no_states_country_list() { |
400 | 400 | $country_list = array(); |
401 | 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']; |
|
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 | 405 | } |
406 | 406 | } |
407 | 407 | |
@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | * |
413 | 413 | * @param array $country Contain key as there country code & value as there country name. |
414 | 414 | */ |
415 | - return (array) apply_filters( 'give_no_states_country_list', $country_list ); |
|
415 | + return (array) apply_filters('give_no_states_country_list', $country_list); |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | /** |
@@ -427,9 +427,9 @@ discard block |
||
427 | 427 | function give_states_not_required_country_list() { |
428 | 428 | $country_list = array(); |
429 | 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']; |
|
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 | 433 | } |
434 | 434 | } |
435 | 435 | |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | * |
441 | 441 | * @param array $country Contain key as there country code & value as there country name. |
442 | 442 | */ |
443 | - return (array) apply_filters( 'give_states_not_required_country_list', $country_list ); |
|
443 | + return (array) apply_filters('give_states_not_required_country_list', $country_list); |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | /** |
@@ -452,11 +452,11 @@ discard block |
||
452 | 452 | * |
453 | 453 | * @return string|bool |
454 | 454 | */ |
455 | -function give_get_country_name_by_key( $key ) { |
|
455 | +function give_get_country_name_by_key($key) { |
|
456 | 456 | $country_list = give_get_country_list(); |
457 | 457 | |
458 | - if ( array_key_exists( $key, $country_list ) ) { |
|
459 | - return $country_list[ $key ]; |
|
458 | + if (array_key_exists($key, $country_list)) { |
|
459 | + return $country_list[$key]; |
|
460 | 460 | } |
461 | 461 | |
462 | 462 | return false; |
@@ -471,14 +471,14 @@ discard block |
||
471 | 471 | */ |
472 | 472 | function give_get_states_label() { |
473 | 473 | $country_states_label = array(); |
474 | - $default_label = __( 'State', 'give' ); |
|
474 | + $default_label = __('State', 'give'); |
|
475 | 475 | $locale = give_get_country_locale(); |
476 | - foreach ( $locale as $key => $value ) { |
|
476 | + foreach ($locale as $key => $value) { |
|
477 | 477 | $label = $default_label; |
478 | - if ( ! empty( $value['state'] ) && ! empty( $value['state']['label'] ) ) { |
|
478 | + if ( ! empty($value['state']) && ! empty($value['state']['label'])) { |
|
479 | 479 | $label = $value['state']['label']; |
480 | 480 | } |
481 | - $country_states_label[ $key ] = $label; |
|
481 | + $country_states_label[$key] = $label; |
|
482 | 482 | } |
483 | 483 | |
484 | 484 | /** |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | * |
489 | 489 | * @param array $country Contain key as there country code & value as there country name. |
490 | 490 | */ |
491 | - return (array) apply_filters( 'give_get_states_label', $country_states_label ); |
|
491 | + return (array) apply_filters('give_get_states_label', $country_states_label); |
|
492 | 492 | } |
493 | 493 | |
494 | 494 | /** |
@@ -499,7 +499,7 @@ discard block |
||
499 | 499 | * @return array |
500 | 500 | */ |
501 | 501 | function give_get_country_locale() { |
502 | - return (array) apply_filters( 'give_get_country_locale', array( |
|
502 | + return (array) apply_filters('give_get_country_locale', array( |
|
503 | 503 | 'AE' => array( |
504 | 504 | 'state' => array( |
505 | 505 | 'required' => false, |
@@ -519,7 +519,7 @@ discard block |
||
519 | 519 | ), |
520 | 520 | 'AU' => array( |
521 | 521 | 'state' => array( |
522 | - 'label' => __( 'State', 'give' ), |
|
522 | + 'label' => __('State', 'give'), |
|
523 | 523 | ), |
524 | 524 | ), |
525 | 525 | 'AX' => array( |
@@ -529,13 +529,13 @@ discard block |
||
529 | 529 | ), |
530 | 530 | 'BD' => array( |
531 | 531 | 'state' => array( |
532 | - 'label' => __( 'District', 'give' ), |
|
532 | + 'label' => __('District', 'give'), |
|
533 | 533 | ), |
534 | 534 | ), |
535 | 535 | 'BE' => array( |
536 | 536 | 'state' => array( |
537 | 537 | 'required' => false, |
538 | - 'label' => __( 'Province', 'give' ), |
|
538 | + 'label' => __('Province', 'give'), |
|
539 | 539 | 'hidden' => true, |
540 | 540 | ), |
541 | 541 | ), |
@@ -546,24 +546,24 @@ discard block |
||
546 | 546 | ), |
547 | 547 | 'CA' => array( |
548 | 548 | 'state' => array( |
549 | - 'label' => __( 'Province', 'give' ), |
|
549 | + 'label' => __('Province', 'give'), |
|
550 | 550 | ), |
551 | 551 | ), |
552 | 552 | 'CH' => array( |
553 | 553 | 'state' => array( |
554 | - 'label' => __( 'Canton', 'give' ), |
|
554 | + 'label' => __('Canton', 'give'), |
|
555 | 555 | 'required' => false, |
556 | 556 | 'hidden' => true, |
557 | 557 | ), |
558 | 558 | ), |
559 | 559 | 'CL' => array( |
560 | 560 | 'state' => array( |
561 | - 'label' => __( 'Region', 'give' ), |
|
561 | + 'label' => __('Region', 'give'), |
|
562 | 562 | ), |
563 | 563 | ), |
564 | 564 | 'CN' => array( |
565 | 565 | 'state' => array( |
566 | - 'label' => __( 'Province', 'give' ), |
|
566 | + 'label' => __('Province', 'give'), |
|
567 | 567 | ), |
568 | 568 | ), |
569 | 569 | 'CZ' => array( |
@@ -614,23 +614,23 @@ discard block |
||
614 | 614 | ), |
615 | 615 | 'HK' => array( |
616 | 616 | 'state' => array( |
617 | - 'label' => __( 'Region', 'give' ), |
|
617 | + 'label' => __('Region', 'give'), |
|
618 | 618 | ), |
619 | 619 | ), |
620 | 620 | 'HU' => array( |
621 | 621 | 'state' => array( |
622 | - 'label' => __( 'County', 'give' ), |
|
622 | + 'label' => __('County', 'give'), |
|
623 | 623 | 'hidden' => true, |
624 | 624 | ), |
625 | 625 | ), |
626 | 626 | 'ID' => array( |
627 | 627 | 'state' => array( |
628 | - 'label' => __( 'Province', 'give' ), |
|
628 | + 'label' => __('Province', 'give'), |
|
629 | 629 | ), |
630 | 630 | ), |
631 | 631 | 'IE' => array( |
632 | 632 | 'state' => array( |
633 | - 'label' => __( 'County', 'give' ), |
|
633 | + 'label' => __('County', 'give'), |
|
634 | 634 | ), |
635 | 635 | ), |
636 | 636 | 'IS' => array( |
@@ -647,12 +647,12 @@ discard block |
||
647 | 647 | 'IT' => array( |
648 | 648 | 'state' => array( |
649 | 649 | 'required' => true, |
650 | - 'label' => __( 'Province', 'give' ), |
|
650 | + 'label' => __('Province', 'give'), |
|
651 | 651 | ), |
652 | 652 | ), |
653 | 653 | 'JP' => array( |
654 | 654 | 'state' => array( |
655 | - 'label' => __( 'Prefecture', 'give' ), |
|
655 | + 'label' => __('Prefecture', 'give'), |
|
656 | 656 | ), |
657 | 657 | ), |
658 | 658 | 'KR' => array( |
@@ -678,13 +678,13 @@ discard block |
||
678 | 678 | 'NL' => array( |
679 | 679 | 'state' => array( |
680 | 680 | 'required' => false, |
681 | - 'label' => __( 'Province', 'give' ), |
|
681 | + 'label' => __('Province', 'give'), |
|
682 | 682 | 'hidden' => true, |
683 | 683 | ), |
684 | 684 | ), |
685 | 685 | 'NZ' => array( |
686 | 686 | 'state' => array( |
687 | - 'label' => __( 'Region', 'give' ), |
|
687 | + 'label' => __('Region', 'give'), |
|
688 | 688 | ), |
689 | 689 | ), |
690 | 690 | 'NO' => array( |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | ), |
696 | 696 | 'NP' => array( |
697 | 697 | 'state' => array( |
698 | - 'label' => __( 'State / Zone', 'give' ), |
|
698 | + 'label' => __('State / Zone', 'give'), |
|
699 | 699 | ), |
700 | 700 | ), |
701 | 701 | 'PL' => array( |
@@ -739,12 +739,12 @@ discard block |
||
739 | 739 | ), |
740 | 740 | 'ES' => array( |
741 | 741 | 'state' => array( |
742 | - 'label' => __( 'Province', 'give' ), |
|
742 | + 'label' => __('Province', 'give'), |
|
743 | 743 | ), |
744 | 744 | ), |
745 | 745 | 'LI' => array( |
746 | 746 | 'state' => array( |
747 | - 'label' => __( 'Municipality', 'give' ), |
|
747 | + 'label' => __('Municipality', 'give'), |
|
748 | 748 | 'required' => false, |
749 | 749 | 'hidden' => true, |
750 | 750 | ), |
@@ -762,17 +762,17 @@ discard block |
||
762 | 762 | ), |
763 | 763 | 'TR' => array( |
764 | 764 | 'state' => array( |
765 | - 'label' => __( 'Province', 'give' ), |
|
765 | + 'label' => __('Province', 'give'), |
|
766 | 766 | ), |
767 | 767 | ), |
768 | 768 | 'US' => array( |
769 | 769 | 'state' => array( |
770 | - 'label' => __( 'State', 'give' ), |
|
770 | + 'label' => __('State', 'give'), |
|
771 | 771 | ), |
772 | 772 | ), |
773 | 773 | 'GB' => array( |
774 | 774 | 'state' => array( |
775 | - 'label' => __( 'County', 'give' ), |
|
775 | + 'label' => __('County', 'give'), |
|
776 | 776 | 'required' => false, |
777 | 777 | ), |
778 | 778 | ), |
@@ -789,10 +789,10 @@ discard block |
||
789 | 789 | ), |
790 | 790 | 'ZA' => array( |
791 | 791 | 'state' => array( |
792 | - 'label' => __( 'Province', 'give' ), |
|
792 | + 'label' => __('Province', 'give'), |
|
793 | 793 | ), |
794 | 794 | ), |
795 | - ) ); |
|
795 | + )); |
|
796 | 796 | } |
797 | 797 | |
798 | 798 | /** |
@@ -804,90 +804,90 @@ discard block |
||
804 | 804 | function give_get_turkey_states_list() { |
805 | 805 | $states = array( |
806 | 806 | '' => '', |
807 | - 'TR01' => __( 'Adana', 'give' ), |
|
808 | - 'TR02' => __( 'Adıyaman', 'give' ), |
|
809 | - 'TR03' => __( 'Afyon', 'give' ), |
|
810 | - 'TR04' => __( 'Ağrı', 'give' ), |
|
811 | - 'TR05' => __( 'Amasya', 'give' ), |
|
812 | - 'TR06' => __( 'Ankara', 'give' ), |
|
813 | - 'TR07' => __( 'Antalya', 'give' ), |
|
814 | - 'TR08' => __( 'Artvin', 'give' ), |
|
815 | - 'TR09' => __( 'Aydın', 'give' ), |
|
816 | - 'TR10' => __( 'Balıkesir', 'give' ), |
|
817 | - 'TR11' => __( 'Bilecik', 'give' ), |
|
818 | - 'TR12' => __( 'Bingöl', 'give' ), |
|
819 | - 'TR13' => __( 'Bitlis', 'give' ), |
|
820 | - 'TR14' => __( 'Bolu', 'give' ), |
|
821 | - 'TR15' => __( 'Burdur', 'give' ), |
|
822 | - 'TR16' => __( 'Bursa', 'give' ), |
|
823 | - 'TR17' => __( 'Çanakkale', 'give' ), |
|
824 | - 'TR18' => __( 'Çankırı', 'give' ), |
|
825 | - 'TR19' => __( 'Çorum', 'give' ), |
|
826 | - 'TR20' => __( 'Denizli', 'give' ), |
|
827 | - 'TR21' => __( 'Diyarbakır', 'give' ), |
|
828 | - 'TR22' => __( 'Edirne', 'give' ), |
|
829 | - 'TR23' => __( 'Elazığ', 'give' ), |
|
830 | - 'TR24' => __( 'Erzincan', 'give' ), |
|
831 | - 'TR25' => __( 'Erzurum', 'give' ), |
|
832 | - 'TR26' => __( 'Eskişehir', 'give' ), |
|
833 | - 'TR27' => __( 'Gaziantep', 'give' ), |
|
834 | - 'TR28' => __( 'Giresun', 'give' ), |
|
835 | - 'TR29' => __( 'Gümüşhane', 'give' ), |
|
836 | - 'TR30' => __( 'Hakkari', 'give' ), |
|
837 | - 'TR31' => __( 'Hatay', 'give' ), |
|
838 | - 'TR32' => __( 'Isparta', 'give' ), |
|
839 | - 'TR33' => __( 'İçel', 'give' ), |
|
840 | - 'TR34' => __( 'İstanbul', 'give' ), |
|
841 | - 'TR35' => __( 'İzmir', 'give' ), |
|
842 | - 'TR36' => __( 'Kars', 'give' ), |
|
843 | - 'TR37' => __( 'Kastamonu', 'give' ), |
|
844 | - 'TR38' => __( 'Kayseri', 'give' ), |
|
845 | - 'TR39' => __( 'Kırklareli', 'give' ), |
|
846 | - 'TR40' => __( 'Kırşehir', 'give' ), |
|
847 | - 'TR41' => __( 'Kocaeli', 'give' ), |
|
848 | - 'TR42' => __( 'Konya', 'give' ), |
|
849 | - 'TR43' => __( 'Kütahya', 'give' ), |
|
850 | - 'TR44' => __( 'Malatya', 'give' ), |
|
851 | - 'TR45' => __( 'Manisa', 'give' ), |
|
852 | - 'TR46' => __( 'Kahramanmaraş', 'give' ), |
|
853 | - 'TR47' => __( 'Mardin', 'give' ), |
|
854 | - 'TR48' => __( 'Muğla', 'give' ), |
|
855 | - 'TR49' => __( 'Muş', 'give' ), |
|
856 | - 'TR50' => __( 'Nevşehir', 'give' ), |
|
857 | - 'TR51' => __( 'Niğde', 'give' ), |
|
858 | - 'TR52' => __( 'Ordu', 'give' ), |
|
859 | - 'TR53' => __( 'Rize', 'give' ), |
|
860 | - 'TR54' => __( 'Sakarya', 'give' ), |
|
861 | - 'TR55' => __( 'Samsun', 'give' ), |
|
862 | - 'TR56' => __( 'Siirt', 'give' ), |
|
863 | - 'TR57' => __( 'Sinop', 'give' ), |
|
864 | - 'TR58' => __( 'Sivas', 'give' ), |
|
865 | - 'TR59' => __( 'Tekirdağ', 'give' ), |
|
866 | - 'TR60' => __( 'Tokat', 'give' ), |
|
867 | - 'TR61' => __( 'Trabzon', 'give' ), |
|
868 | - 'TR62' => __( 'Tunceli', 'give' ), |
|
869 | - 'TR63' => __( 'Şanlıurfa', 'give' ), |
|
870 | - 'TR64' => __( 'Uşak', 'give' ), |
|
871 | - 'TR65' => __( 'Van', 'give' ), |
|
872 | - 'TR66' => __( 'Yozgat', 'give' ), |
|
873 | - 'TR67' => __( 'Zonguldak', 'give' ), |
|
874 | - 'TR68' => __( 'Aksaray', 'give' ), |
|
875 | - 'TR69' => __( 'Bayburt', 'give' ), |
|
876 | - 'TR70' => __( 'Karaman', 'give' ), |
|
877 | - 'TR71' => __( 'Kırıkkale', 'give' ), |
|
878 | - 'TR72' => __( 'Batman', 'give' ), |
|
879 | - 'TR73' => __( 'Şırnak', 'give' ), |
|
880 | - 'TR74' => __( 'Bartın', 'give' ), |
|
881 | - 'TR75' => __( 'Ardahan', 'give' ), |
|
882 | - 'TR76' => __( 'Iğdır', 'give' ), |
|
883 | - 'TR77' => __( 'Yalova', 'give' ), |
|
884 | - 'TR78' => __( 'Karabük', 'give' ), |
|
885 | - 'TR79' => __( 'Kilis', 'give' ), |
|
886 | - 'TR80' => __( 'Osmaniye', 'give' ), |
|
887 | - 'TR81' => __( 'Düzce', 'give' ), |
|
807 | + 'TR01' => __('Adana', 'give'), |
|
808 | + 'TR02' => __('Adıyaman', 'give'), |
|
809 | + 'TR03' => __('Afyon', 'give'), |
|
810 | + 'TR04' => __('Ağrı', 'give'), |
|
811 | + 'TR05' => __('Amasya', 'give'), |
|
812 | + 'TR06' => __('Ankara', 'give'), |
|
813 | + 'TR07' => __('Antalya', 'give'), |
|
814 | + 'TR08' => __('Artvin', 'give'), |
|
815 | + 'TR09' => __('Aydın', 'give'), |
|
816 | + 'TR10' => __('Balıkesir', 'give'), |
|
817 | + 'TR11' => __('Bilecik', 'give'), |
|
818 | + 'TR12' => __('Bingöl', 'give'), |
|
819 | + 'TR13' => __('Bitlis', 'give'), |
|
820 | + 'TR14' => __('Bolu', 'give'), |
|
821 | + 'TR15' => __('Burdur', 'give'), |
|
822 | + 'TR16' => __('Bursa', 'give'), |
|
823 | + 'TR17' => __('Çanakkale', 'give'), |
|
824 | + 'TR18' => __('Çankırı', 'give'), |
|
825 | + 'TR19' => __('Çorum', 'give'), |
|
826 | + 'TR20' => __('Denizli', 'give'), |
|
827 | + 'TR21' => __('Diyarbakır', 'give'), |
|
828 | + 'TR22' => __('Edirne', 'give'), |
|
829 | + 'TR23' => __('Elazığ', 'give'), |
|
830 | + 'TR24' => __('Erzincan', 'give'), |
|
831 | + 'TR25' => __('Erzurum', 'give'), |
|
832 | + 'TR26' => __('Eskişehir', 'give'), |
|
833 | + 'TR27' => __('Gaziantep', 'give'), |
|
834 | + 'TR28' => __('Giresun', 'give'), |
|
835 | + 'TR29' => __('Gümüşhane', 'give'), |
|
836 | + 'TR30' => __('Hakkari', 'give'), |
|
837 | + 'TR31' => __('Hatay', 'give'), |
|
838 | + 'TR32' => __('Isparta', 'give'), |
|
839 | + 'TR33' => __('İçel', 'give'), |
|
840 | + 'TR34' => __('İstanbul', 'give'), |
|
841 | + 'TR35' => __('İzmir', 'give'), |
|
842 | + 'TR36' => __('Kars', 'give'), |
|
843 | + 'TR37' => __('Kastamonu', 'give'), |
|
844 | + 'TR38' => __('Kayseri', 'give'), |
|
845 | + 'TR39' => __('Kırklareli', 'give'), |
|
846 | + 'TR40' => __('Kırşehir', 'give'), |
|
847 | + 'TR41' => __('Kocaeli', 'give'), |
|
848 | + 'TR42' => __('Konya', 'give'), |
|
849 | + 'TR43' => __('Kütahya', 'give'), |
|
850 | + 'TR44' => __('Malatya', 'give'), |
|
851 | + 'TR45' => __('Manisa', 'give'), |
|
852 | + 'TR46' => __('Kahramanmaraş', 'give'), |
|
853 | + 'TR47' => __('Mardin', 'give'), |
|
854 | + 'TR48' => __('Muğla', 'give'), |
|
855 | + 'TR49' => __('Muş', 'give'), |
|
856 | + 'TR50' => __('Nevşehir', 'give'), |
|
857 | + 'TR51' => __('Niğde', 'give'), |
|
858 | + 'TR52' => __('Ordu', 'give'), |
|
859 | + 'TR53' => __('Rize', 'give'), |
|
860 | + 'TR54' => __('Sakarya', 'give'), |
|
861 | + 'TR55' => __('Samsun', 'give'), |
|
862 | + 'TR56' => __('Siirt', 'give'), |
|
863 | + 'TR57' => __('Sinop', 'give'), |
|
864 | + 'TR58' => __('Sivas', 'give'), |
|
865 | + 'TR59' => __('Tekirdağ', 'give'), |
|
866 | + 'TR60' => __('Tokat', 'give'), |
|
867 | + 'TR61' => __('Trabzon', 'give'), |
|
868 | + 'TR62' => __('Tunceli', 'give'), |
|
869 | + 'TR63' => __('Şanlıurfa', 'give'), |
|
870 | + 'TR64' => __('Uşak', 'give'), |
|
871 | + 'TR65' => __('Van', 'give'), |
|
872 | + 'TR66' => __('Yozgat', 'give'), |
|
873 | + 'TR67' => __('Zonguldak', 'give'), |
|
874 | + 'TR68' => __('Aksaray', 'give'), |
|
875 | + 'TR69' => __('Bayburt', 'give'), |
|
876 | + 'TR70' => __('Karaman', 'give'), |
|
877 | + 'TR71' => __('Kırıkkale', 'give'), |
|
878 | + 'TR72' => __('Batman', 'give'), |
|
879 | + 'TR73' => __('Şırnak', 'give'), |
|
880 | + 'TR74' => __('Bartın', 'give'), |
|
881 | + 'TR75' => __('Ardahan', 'give'), |
|
882 | + 'TR76' => __('Iğdır', 'give'), |
|
883 | + 'TR77' => __('Yalova', 'give'), |
|
884 | + 'TR78' => __('Karabük', 'give'), |
|
885 | + 'TR79' => __('Kilis', 'give'), |
|
886 | + 'TR80' => __('Osmaniye', 'give'), |
|
887 | + 'TR81' => __('Düzce', 'give'), |
|
888 | 888 | ); |
889 | 889 | |
890 | - return apply_filters( 'give_turkey_states', $states ); |
|
890 | + return apply_filters('give_turkey_states', $states); |
|
891 | 891 | } |
892 | 892 | |
893 | 893 | /** |
@@ -899,51 +899,51 @@ discard block |
||
899 | 899 | function give_get_romania_states_list() { |
900 | 900 | $states = array( |
901 | 901 | '' => '', |
902 | - 'AB' => __( 'Alba', 'give' ), |
|
903 | - 'AR' => __( 'Arad', 'give' ), |
|
904 | - 'AG' => __( 'Arges', 'give' ), |
|
905 | - 'BC' => __( 'Bacau', 'give' ), |
|
906 | - 'BH' => __( 'Bihor', 'give' ), |
|
907 | - 'BN' => __( 'Bistrita-Nasaud', 'give' ), |
|
908 | - 'BT' => __( 'Botosani', 'give' ), |
|
909 | - 'BR' => __( 'Braila', 'give' ), |
|
910 | - 'BV' => __( 'Brasov', 'give' ), |
|
911 | - 'B' => __( 'Bucuresti', 'give' ), |
|
912 | - 'BZ' => __( 'Buzau', 'give' ), |
|
913 | - 'CL' => __( 'Calarasi', 'give' ), |
|
914 | - 'CS' => __( 'Caras-Severin', 'give' ), |
|
915 | - 'CJ' => __( 'Cluj', 'give' ), |
|
916 | - 'CT' => __( 'Constanta', 'give' ), |
|
917 | - 'CV' => __( 'Covasna', 'give' ), |
|
918 | - 'DB' => __( 'Dambovita', 'give' ), |
|
919 | - 'DJ' => __( 'Dolj', 'give' ), |
|
920 | - 'GL' => __( 'Galati', 'give' ), |
|
921 | - 'GR' => __( 'Giurgiu', 'give' ), |
|
922 | - 'GJ' => __( 'Gorj', 'give' ), |
|
923 | - 'HR' => __( 'Harghita', 'give' ), |
|
924 | - 'HD' => __( 'Hunedoara', 'give' ), |
|
925 | - 'IL' => __( 'Ialomita', 'give' ), |
|
926 | - 'IS' => __( 'Iasi', 'give' ), |
|
927 | - 'IF' => __( 'Ilfov', 'give' ), |
|
928 | - 'MM' => __( 'Maramures', 'give' ), |
|
929 | - 'MH' => __( 'Mehedinti', 'give' ), |
|
930 | - 'MS' => __( 'Mures', 'give' ), |
|
931 | - 'NT' => __( 'Neamt', 'give' ), |
|
932 | - 'OT' => __( 'Olt', 'give' ), |
|
933 | - 'PH' => __( 'Prahova', 'give' ), |
|
934 | - 'SJ' => __( 'Salaj', 'give' ), |
|
935 | - 'SM' => __( 'Satu Mare', 'give' ), |
|
936 | - 'SB' => __( 'Sibiu', 'give' ), |
|
937 | - 'SV' => __( 'Suceava', 'give' ), |
|
938 | - 'TR' => __( 'Teleorman', 'give' ), |
|
939 | - 'TM' => __( 'Timis', 'give' ), |
|
940 | - 'TL' => __( 'Tulcea', 'give' ), |
|
941 | - 'VL' => __( 'Valcea', 'give' ), |
|
942 | - 'VS' => __( 'Vaslui', 'give' ), |
|
943 | - 'VN' => __( 'Vrancea', 'give' ), |
|
902 | + 'AB' => __('Alba', 'give'), |
|
903 | + 'AR' => __('Arad', 'give'), |
|
904 | + 'AG' => __('Arges', 'give'), |
|
905 | + 'BC' => __('Bacau', 'give'), |
|
906 | + 'BH' => __('Bihor', 'give'), |
|
907 | + 'BN' => __('Bistrita-Nasaud', 'give'), |
|
908 | + 'BT' => __('Botosani', 'give'), |
|
909 | + 'BR' => __('Braila', 'give'), |
|
910 | + 'BV' => __('Brasov', 'give'), |
|
911 | + 'B' => __('Bucuresti', 'give'), |
|
912 | + 'BZ' => __('Buzau', 'give'), |
|
913 | + 'CL' => __('Calarasi', 'give'), |
|
914 | + 'CS' => __('Caras-Severin', 'give'), |
|
915 | + 'CJ' => __('Cluj', 'give'), |
|
916 | + 'CT' => __('Constanta', 'give'), |
|
917 | + 'CV' => __('Covasna', 'give'), |
|
918 | + 'DB' => __('Dambovita', 'give'), |
|
919 | + 'DJ' => __('Dolj', 'give'), |
|
920 | + 'GL' => __('Galati', 'give'), |
|
921 | + 'GR' => __('Giurgiu', 'give'), |
|
922 | + 'GJ' => __('Gorj', 'give'), |
|
923 | + 'HR' => __('Harghita', 'give'), |
|
924 | + 'HD' => __('Hunedoara', 'give'), |
|
925 | + 'IL' => __('Ialomita', 'give'), |
|
926 | + 'IS' => __('Iasi', 'give'), |
|
927 | + 'IF' => __('Ilfov', 'give'), |
|
928 | + 'MM' => __('Maramures', 'give'), |
|
929 | + 'MH' => __('Mehedinti', 'give'), |
|
930 | + 'MS' => __('Mures', 'give'), |
|
931 | + 'NT' => __('Neamt', 'give'), |
|
932 | + 'OT' => __('Olt', 'give'), |
|
933 | + 'PH' => __('Prahova', 'give'), |
|
934 | + 'SJ' => __('Salaj', 'give'), |
|
935 | + 'SM' => __('Satu Mare', 'give'), |
|
936 | + 'SB' => __('Sibiu', 'give'), |
|
937 | + 'SV' => __('Suceava', 'give'), |
|
938 | + 'TR' => __('Teleorman', 'give'), |
|
939 | + 'TM' => __('Timis', 'give'), |
|
940 | + 'TL' => __('Tulcea', 'give'), |
|
941 | + 'VL' => __('Valcea', 'give'), |
|
942 | + 'VS' => __('Vaslui', 'give'), |
|
943 | + 'VN' => __('Vrancea', 'give'), |
|
944 | 944 | ); |
945 | 945 | |
946 | - return apply_filters( 'give_romania_states', $states ); |
|
946 | + return apply_filters('give_romania_states', $states); |
|
947 | 947 | } |
948 | 948 | |
949 | 949 | /** |
@@ -955,17 +955,17 @@ discard block |
||
955 | 955 | function give_get_pakistan_states_list() { |
956 | 956 | $states = array( |
957 | 957 | '' => '', |
958 | - 'JK' => __( 'Azad Kashmir', 'give' ), |
|
959 | - 'BA' => __( 'Balochistan', 'give' ), |
|
960 | - 'TA' => __( 'FATA', 'give' ), |
|
961 | - 'GB' => __( 'Gilgit Baltistan', 'give' ), |
|
962 | - 'IS' => __( 'Islamabad Capital Territory', 'give' ), |
|
963 | - 'KP' => __( 'Khyber Pakhtunkhwa', 'give' ), |
|
964 | - 'PB' => __( 'Punjab', 'give' ), |
|
965 | - 'SD' => __( 'Sindh', 'give' ), |
|
958 | + 'JK' => __('Azad Kashmir', 'give'), |
|
959 | + 'BA' => __('Balochistan', 'give'), |
|
960 | + 'TA' => __('FATA', 'give'), |
|
961 | + 'GB' => __('Gilgit Baltistan', 'give'), |
|
962 | + 'IS' => __('Islamabad Capital Territory', 'give'), |
|
963 | + 'KP' => __('Khyber Pakhtunkhwa', 'give'), |
|
964 | + 'PB' => __('Punjab', 'give'), |
|
965 | + 'SD' => __('Sindh', 'give'), |
|
966 | 966 | ); |
967 | 967 | |
968 | - return apply_filters( 'give_pakistan_states', $states ); |
|
968 | + return apply_filters('give_pakistan_states', $states); |
|
969 | 969 | } |
970 | 970 | |
971 | 971 | /** |
@@ -977,91 +977,91 @@ discard block |
||
977 | 977 | function give_get_philippines_states_list() { |
978 | 978 | $states = array( |
979 | 979 | '' => '', |
980 | - 'ABR' => __( 'Abra', 'give' ), |
|
981 | - 'AGN' => __( 'Agusan del Norte', 'give' ), |
|
982 | - 'AGS' => __( 'Agusan del Sur', 'give' ), |
|
983 | - 'AKL' => __( 'Aklan', 'give' ), |
|
984 | - 'ALB' => __( 'Albay', 'give' ), |
|
985 | - 'ANT' => __( 'Antique', 'give' ), |
|
986 | - 'APA' => __( 'Apayao', 'give' ), |
|
987 | - 'AUR' => __( 'Aurora', 'give' ), |
|
988 | - 'BAS' => __( 'Basilan', 'give' ), |
|
989 | - 'BAN' => __( 'Bataan', 'give' ), |
|
990 | - 'BTN' => __( 'Batanes', 'give' ), |
|
991 | - 'BTG' => __( 'Batangas', 'give' ), |
|
992 | - 'BEN' => __( 'Benguet', 'give' ), |
|
993 | - 'BIL' => __( 'Biliran', 'give' ), |
|
994 | - 'BOH' => __( 'Bohol', 'give' ), |
|
995 | - 'BUK' => __( 'Bukidnon', 'give' ), |
|
996 | - 'BUL' => __( 'Bulacan', 'give' ), |
|
997 | - 'CAG' => __( 'Cagayan', 'give' ), |
|
998 | - 'CAN' => __( 'Camarines Norte', 'give' ), |
|
999 | - 'CAS' => __( 'Camarines Sur', 'give' ), |
|
1000 | - 'CAM' => __( 'Camiguin', 'give' ), |
|
1001 | - 'CAP' => __( 'Capiz', 'give' ), |
|
1002 | - 'CAT' => __( 'Catanduanes', 'give' ), |
|
1003 | - 'CAV' => __( 'Cavite', 'give' ), |
|
1004 | - 'CEB' => __( 'Cebu', 'give' ), |
|
1005 | - 'COM' => __( 'Compostela Valley', 'give' ), |
|
1006 | - 'NCO' => __( 'Cotabato', 'give' ), |
|
1007 | - 'DAV' => __( 'Davao del Norte', 'give' ), |
|
1008 | - 'DAS' => __( 'Davao del Sur', 'give' ), |
|
1009 | - 'DAC' => __( 'Davao Occidental', 'give' ), // TODO: Needs to be updated when ISO code is assigned |
|
1010 | - 'DAO' => __( 'Davao Oriental', 'give' ), |
|
1011 | - 'DIN' => __( 'Dinagat Islands', 'give' ), |
|
1012 | - 'EAS' => __( 'Eastern Samar', 'give' ), |
|
1013 | - 'GUI' => __( 'Guimaras', 'give' ), |
|
1014 | - 'IFU' => __( 'Ifugao', 'give' ), |
|
1015 | - 'ILN' => __( 'Ilocos Norte', 'give' ), |
|
1016 | - 'ILS' => __( 'Ilocos Sur', 'give' ), |
|
1017 | - 'ILI' => __( 'Iloilo', 'give' ), |
|
1018 | - 'ISA' => __( 'Isabela', 'give' ), |
|
1019 | - 'KAL' => __( 'Kalinga', 'give' ), |
|
1020 | - 'LUN' => __( 'La Union', 'give' ), |
|
1021 | - 'LAG' => __( 'Laguna', 'give' ), |
|
1022 | - 'LAN' => __( 'Lanao del Norte', 'give' ), |
|
1023 | - 'LAS' => __( 'Lanao del Sur', 'give' ), |
|
1024 | - 'LEY' => __( 'Leyte', 'give' ), |
|
1025 | - 'MAG' => __( 'Maguindanao', 'give' ), |
|
1026 | - 'MAD' => __( 'Marinduque', 'give' ), |
|
1027 | - 'MAS' => __( 'Masbate', 'give' ), |
|
1028 | - 'MSC' => __( 'Misamis Occidental', 'give' ), |
|
1029 | - 'MSR' => __( 'Misamis Oriental', 'give' ), |
|
1030 | - 'MOU' => __( 'Mountain Province', 'give' ), |
|
1031 | - 'NEC' => __( 'Negros Occidental', 'give' ), |
|
1032 | - 'NER' => __( 'Negros Oriental', 'give' ), |
|
1033 | - 'NSA' => __( 'Northern Samar', 'give' ), |
|
1034 | - 'NUE' => __( 'Nueva Ecija', 'give' ), |
|
1035 | - 'NUV' => __( 'Nueva Vizcaya', 'give' ), |
|
1036 | - 'MDC' => __( 'Occidental Mindoro', 'give' ), |
|
1037 | - 'MDR' => __( 'Oriental Mindoro', 'give' ), |
|
1038 | - 'PLW' => __( 'Palawan', 'give' ), |
|
1039 | - 'PAM' => __( 'Pampanga', 'give' ), |
|
1040 | - 'PAN' => __( 'Pangasinan', 'give' ), |
|
1041 | - 'QUE' => __( 'Quezon', 'give' ), |
|
1042 | - 'QUI' => __( 'Quirino', 'give' ), |
|
1043 | - 'RIZ' => __( 'Rizal', 'give' ), |
|
1044 | - 'ROM' => __( 'Romblon', 'give' ), |
|
1045 | - 'WSA' => __( 'Samar', 'give' ), |
|
1046 | - 'SAR' => __( 'Sarangani', 'give' ), |
|
1047 | - 'SIQ' => __( 'Siquijor', 'give' ), |
|
1048 | - 'SOR' => __( 'Sorsogon', 'give' ), |
|
1049 | - 'SCO' => __( 'South Cotabato', 'give' ), |
|
1050 | - 'SLE' => __( 'Southern Leyte', 'give' ), |
|
1051 | - 'SUK' => __( 'Sultan Kudarat', 'give' ), |
|
1052 | - 'SLU' => __( 'Sulu', 'give' ), |
|
1053 | - 'SUN' => __( 'Surigao del Norte', 'give' ), |
|
1054 | - 'SUR' => __( 'Surigao del Sur', 'give' ), |
|
1055 | - 'TAR' => __( 'Tarlac', 'give' ), |
|
1056 | - 'TAW' => __( 'Tawi-Tawi', 'give' ), |
|
1057 | - 'ZMB' => __( 'Zambales', 'give' ), |
|
1058 | - 'ZAN' => __( 'Zamboanga del Norte', 'give' ), |
|
1059 | - 'ZAS' => __( 'Zamboanga del Sur', 'give' ), |
|
1060 | - 'ZSI' => __( 'Zamboanga Sibugay', 'give' ), |
|
1061 | - '00' => __( 'Metro Manila', 'give' ), |
|
980 | + 'ABR' => __('Abra', 'give'), |
|
981 | + 'AGN' => __('Agusan del Norte', 'give'), |
|
982 | + 'AGS' => __('Agusan del Sur', 'give'), |
|
983 | + 'AKL' => __('Aklan', 'give'), |
|
984 | + 'ALB' => __('Albay', 'give'), |
|
985 | + 'ANT' => __('Antique', 'give'), |
|
986 | + 'APA' => __('Apayao', 'give'), |
|
987 | + 'AUR' => __('Aurora', 'give'), |
|
988 | + 'BAS' => __('Basilan', 'give'), |
|
989 | + 'BAN' => __('Bataan', 'give'), |
|
990 | + 'BTN' => __('Batanes', 'give'), |
|
991 | + 'BTG' => __('Batangas', 'give'), |
|
992 | + 'BEN' => __('Benguet', 'give'), |
|
993 | + 'BIL' => __('Biliran', 'give'), |
|
994 | + 'BOH' => __('Bohol', 'give'), |
|
995 | + 'BUK' => __('Bukidnon', 'give'), |
|
996 | + 'BUL' => __('Bulacan', 'give'), |
|
997 | + 'CAG' => __('Cagayan', 'give'), |
|
998 | + 'CAN' => __('Camarines Norte', 'give'), |
|
999 | + 'CAS' => __('Camarines Sur', 'give'), |
|
1000 | + 'CAM' => __('Camiguin', 'give'), |
|
1001 | + 'CAP' => __('Capiz', 'give'), |
|
1002 | + 'CAT' => __('Catanduanes', 'give'), |
|
1003 | + 'CAV' => __('Cavite', 'give'), |
|
1004 | + 'CEB' => __('Cebu', 'give'), |
|
1005 | + 'COM' => __('Compostela Valley', 'give'), |
|
1006 | + 'NCO' => __('Cotabato', 'give'), |
|
1007 | + 'DAV' => __('Davao del Norte', 'give'), |
|
1008 | + 'DAS' => __('Davao del Sur', 'give'), |
|
1009 | + 'DAC' => __('Davao Occidental', 'give'), // TODO: Needs to be updated when ISO code is assigned |
|
1010 | + 'DAO' => __('Davao Oriental', 'give'), |
|
1011 | + 'DIN' => __('Dinagat Islands', 'give'), |
|
1012 | + 'EAS' => __('Eastern Samar', 'give'), |
|
1013 | + 'GUI' => __('Guimaras', 'give'), |
|
1014 | + 'IFU' => __('Ifugao', 'give'), |
|
1015 | + 'ILN' => __('Ilocos Norte', 'give'), |
|
1016 | + 'ILS' => __('Ilocos Sur', 'give'), |
|
1017 | + 'ILI' => __('Iloilo', 'give'), |
|
1018 | + 'ISA' => __('Isabela', 'give'), |
|
1019 | + 'KAL' => __('Kalinga', 'give'), |
|
1020 | + 'LUN' => __('La Union', 'give'), |
|
1021 | + 'LAG' => __('Laguna', 'give'), |
|
1022 | + 'LAN' => __('Lanao del Norte', 'give'), |
|
1023 | + 'LAS' => __('Lanao del Sur', 'give'), |
|
1024 | + 'LEY' => __('Leyte', 'give'), |
|
1025 | + 'MAG' => __('Maguindanao', 'give'), |
|
1026 | + 'MAD' => __('Marinduque', 'give'), |
|
1027 | + 'MAS' => __('Masbate', 'give'), |
|
1028 | + 'MSC' => __('Misamis Occidental', 'give'), |
|
1029 | + 'MSR' => __('Misamis Oriental', 'give'), |
|
1030 | + 'MOU' => __('Mountain Province', 'give'), |
|
1031 | + 'NEC' => __('Negros Occidental', 'give'), |
|
1032 | + 'NER' => __('Negros Oriental', 'give'), |
|
1033 | + 'NSA' => __('Northern Samar', 'give'), |
|
1034 | + 'NUE' => __('Nueva Ecija', 'give'), |
|
1035 | + 'NUV' => __('Nueva Vizcaya', 'give'), |
|
1036 | + 'MDC' => __('Occidental Mindoro', 'give'), |
|
1037 | + 'MDR' => __('Oriental Mindoro', 'give'), |
|
1038 | + 'PLW' => __('Palawan', 'give'), |
|
1039 | + 'PAM' => __('Pampanga', 'give'), |
|
1040 | + 'PAN' => __('Pangasinan', 'give'), |
|
1041 | + 'QUE' => __('Quezon', 'give'), |
|
1042 | + 'QUI' => __('Quirino', 'give'), |
|
1043 | + 'RIZ' => __('Rizal', 'give'), |
|
1044 | + 'ROM' => __('Romblon', 'give'), |
|
1045 | + 'WSA' => __('Samar', 'give'), |
|
1046 | + 'SAR' => __('Sarangani', 'give'), |
|
1047 | + 'SIQ' => __('Siquijor', 'give'), |
|
1048 | + 'SOR' => __('Sorsogon', 'give'), |
|
1049 | + 'SCO' => __('South Cotabato', 'give'), |
|
1050 | + 'SLE' => __('Southern Leyte', 'give'), |
|
1051 | + 'SUK' => __('Sultan Kudarat', 'give'), |
|
1052 | + 'SLU' => __('Sulu', 'give'), |
|
1053 | + 'SUN' => __('Surigao del Norte', 'give'), |
|
1054 | + 'SUR' => __('Surigao del Sur', 'give'), |
|
1055 | + 'TAR' => __('Tarlac', 'give'), |
|
1056 | + 'TAW' => __('Tawi-Tawi', 'give'), |
|
1057 | + 'ZMB' => __('Zambales', 'give'), |
|
1058 | + 'ZAN' => __('Zamboanga del Norte', 'give'), |
|
1059 | + 'ZAS' => __('Zamboanga del Sur', 'give'), |
|
1060 | + 'ZSI' => __('Zamboanga Sibugay', 'give'), |
|
1061 | + '00' => __('Metro Manila', 'give'), |
|
1062 | 1062 | ); |
1063 | 1063 | |
1064 | - return apply_filters( 'give_philippines_states', $states ); |
|
1064 | + return apply_filters('give_philippines_states', $states); |
|
1065 | 1065 | } |
1066 | 1066 | |
1067 | 1067 | /** |
@@ -1073,35 +1073,35 @@ discard block |
||
1073 | 1073 | function give_get_peru_states_list() { |
1074 | 1074 | $states = array( |
1075 | 1075 | '' => '', |
1076 | - 'CAL' => __( 'El Callao', 'give' ), |
|
1077 | - 'LMA' => __( 'Municipalidad Metropolitana de Lima', 'give' ), |
|
1078 | - 'AMA' => __( 'Amazonas', 'give' ), |
|
1079 | - 'ANC' => __( 'Ancash', 'give' ), |
|
1080 | - 'APU' => __( 'Apurímac', 'give' ), |
|
1081 | - 'ARE' => __( 'Arequipa', 'give' ), |
|
1082 | - 'AYA' => __( 'Ayacucho', 'give' ), |
|
1083 | - 'CAJ' => __( 'Cajamarca', 'give' ), |
|
1084 | - 'CUS' => __( 'Cusco', 'give' ), |
|
1085 | - 'HUV' => __( 'Huancavelica', 'give' ), |
|
1086 | - 'HUC' => __( 'Huánuco', 'give' ), |
|
1087 | - 'ICA' => __( 'Ica', 'give' ), |
|
1088 | - 'JUN' => __( 'Junín', 'give' ), |
|
1089 | - 'LAL' => __( 'La Libertad', 'give' ), |
|
1090 | - 'LAM' => __( 'Lambayeque', 'give' ), |
|
1091 | - 'LIM' => __( 'Lima', 'give' ), |
|
1092 | - 'LOR' => __( 'Loreto', 'give' ), |
|
1093 | - 'MDD' => __( 'Madre de Dios', 'give' ), |
|
1094 | - 'MOQ' => __( 'Moquegua', 'give' ), |
|
1095 | - 'PAS' => __( 'Pasco', 'give' ), |
|
1096 | - 'PIU' => __( 'Piura', 'give' ), |
|
1097 | - 'PUN' => __( 'Puno', 'give' ), |
|
1098 | - 'SAM' => __( 'San Martín', 'give' ), |
|
1099 | - 'TAC' => __( 'Tacna', 'give' ), |
|
1100 | - 'TUM' => __( 'Tumbes', 'give' ), |
|
1101 | - 'UCA' => __( 'Ucayali', 'give' ), |
|
1076 | + 'CAL' => __('El Callao', 'give'), |
|
1077 | + 'LMA' => __('Municipalidad Metropolitana de Lima', 'give'), |
|
1078 | + 'AMA' => __('Amazonas', 'give'), |
|
1079 | + 'ANC' => __('Ancash', 'give'), |
|
1080 | + 'APU' => __('Apurímac', 'give'), |
|
1081 | + 'ARE' => __('Arequipa', 'give'), |
|
1082 | + 'AYA' => __('Ayacucho', 'give'), |
|
1083 | + 'CAJ' => __('Cajamarca', 'give'), |
|
1084 | + 'CUS' => __('Cusco', 'give'), |
|
1085 | + 'HUV' => __('Huancavelica', 'give'), |
|
1086 | + 'HUC' => __('Huánuco', 'give'), |
|
1087 | + 'ICA' => __('Ica', 'give'), |
|
1088 | + 'JUN' => __('Junín', 'give'), |
|
1089 | + 'LAL' => __('La Libertad', 'give'), |
|
1090 | + 'LAM' => __('Lambayeque', 'give'), |
|
1091 | + 'LIM' => __('Lima', 'give'), |
|
1092 | + 'LOR' => __('Loreto', 'give'), |
|
1093 | + 'MDD' => __('Madre de Dios', 'give'), |
|
1094 | + 'MOQ' => __('Moquegua', 'give'), |
|
1095 | + 'PAS' => __('Pasco', 'give'), |
|
1096 | + 'PIU' => __('Piura', 'give'), |
|
1097 | + 'PUN' => __('Puno', 'give'), |
|
1098 | + 'SAM' => __('San Martín', 'give'), |
|
1099 | + 'TAC' => __('Tacna', 'give'), |
|
1100 | + 'TUM' => __('Tumbes', 'give'), |
|
1101 | + 'UCA' => __('Ucayali', 'give'), |
|
1102 | 1102 | ); |
1103 | 1103 | |
1104 | - return apply_filters( 'give_peru_states', $states ); |
|
1104 | + return apply_filters('give_peru_states', $states); |
|
1105 | 1105 | } |
1106 | 1106 | |
1107 | 1107 | /** |
@@ -1113,23 +1113,23 @@ discard block |
||
1113 | 1113 | function give_get_nepal_states_list() { |
1114 | 1114 | $states = array( |
1115 | 1115 | '' => '', |
1116 | - 'BAG' => __( 'Bagmati', 'give' ), |
|
1117 | - 'BHE' => __( 'Bheri', 'give' ), |
|
1118 | - 'DHA' => __( 'Dhaulagiri', 'give' ), |
|
1119 | - 'GAN' => __( 'Gandaki', 'give' ), |
|
1120 | - 'JAN' => __( 'Janakpur', 'give' ), |
|
1121 | - 'KAR' => __( 'Karnali', 'give' ), |
|
1122 | - 'KOS' => __( 'Koshi', 'give' ), |
|
1123 | - 'LUM' => __( 'Lumbini', 'give' ), |
|
1124 | - 'MAH' => __( 'Mahakali', 'give' ), |
|
1125 | - 'MEC' => __( 'Mechi', 'give' ), |
|
1126 | - 'NAR' => __( 'Narayani', 'give' ), |
|
1127 | - 'RAP' => __( 'Rapti', 'give' ), |
|
1128 | - 'SAG' => __( 'Sagarmatha', 'give' ), |
|
1129 | - 'SET' => __( 'Seti', 'give' ), |
|
1116 | + 'BAG' => __('Bagmati', 'give'), |
|
1117 | + 'BHE' => __('Bheri', 'give'), |
|
1118 | + 'DHA' => __('Dhaulagiri', 'give'), |
|
1119 | + 'GAN' => __('Gandaki', 'give'), |
|
1120 | + 'JAN' => __('Janakpur', 'give'), |
|
1121 | + 'KAR' => __('Karnali', 'give'), |
|
1122 | + 'KOS' => __('Koshi', 'give'), |
|
1123 | + 'LUM' => __('Lumbini', 'give'), |
|
1124 | + 'MAH' => __('Mahakali', 'give'), |
|
1125 | + 'MEC' => __('Mechi', 'give'), |
|
1126 | + 'NAR' => __('Narayani', 'give'), |
|
1127 | + 'RAP' => __('Rapti', 'give'), |
|
1128 | + 'SAG' => __('Sagarmatha', 'give'), |
|
1129 | + 'SET' => __('Seti', 'give'), |
|
1130 | 1130 | ); |
1131 | 1131 | |
1132 | - return apply_filters( 'give_nepal_states', $states ); |
|
1132 | + return apply_filters('give_nepal_states', $states); |
|
1133 | 1133 | } |
1134 | 1134 | |
1135 | 1135 | /** |
@@ -1141,46 +1141,46 @@ discard block |
||
1141 | 1141 | function give_get_nigerian_states_list() { |
1142 | 1142 | $states = array( |
1143 | 1143 | '' => '', |
1144 | - 'AB' => __( 'Abia', 'give' ), |
|
1145 | - 'FC' => __( 'Abuja', 'give' ), |
|
1146 | - 'AD' => __( 'Adamawa', 'give' ), |
|
1147 | - 'AK' => __( 'Akwa Ibom', 'give' ), |
|
1148 | - 'AN' => __( 'Anambra', 'give' ), |
|
1149 | - 'BA' => __( 'Bauchi', 'give' ), |
|
1150 | - 'BY' => __( 'Bayelsa', 'give' ), |
|
1151 | - 'BE' => __( 'Benue', 'give' ), |
|
1152 | - 'BO' => __( 'Borno', 'give' ), |
|
1153 | - 'CR' => __( 'Cross River', 'give' ), |
|
1154 | - 'DE' => __( 'Delta', 'give' ), |
|
1155 | - 'EB' => __( 'Ebonyi', 'give' ), |
|
1156 | - 'ED' => __( 'Edo', 'give' ), |
|
1157 | - 'EK' => __( 'Ekiti', 'give' ), |
|
1158 | - 'EN' => __( 'Enugu', 'give' ), |
|
1159 | - 'GO' => __( 'Gombe', 'give' ), |
|
1160 | - 'IM' => __( 'Imo', 'give' ), |
|
1161 | - 'JI' => __( 'Jigawa', 'give' ), |
|
1162 | - 'KD' => __( 'Kaduna', 'give' ), |
|
1163 | - 'KN' => __( 'Kano', 'give' ), |
|
1164 | - 'KT' => __( 'Katsina', 'give' ), |
|
1165 | - 'KE' => __( 'Kebbi', 'give' ), |
|
1166 | - 'KO' => __( 'Kogi', 'give' ), |
|
1167 | - 'KW' => __( 'Kwara', 'give' ), |
|
1168 | - 'LA' => __( 'Lagos', 'give' ), |
|
1169 | - 'NA' => __( 'Nasarawa', 'give' ), |
|
1170 | - 'NI' => __( 'Niger', 'give' ), |
|
1171 | - 'OG' => __( 'Ogun', 'give' ), |
|
1172 | - 'ON' => __( 'Ondo', 'give' ), |
|
1173 | - 'OS' => __( 'Osun', 'give' ), |
|
1174 | - 'OY' => __( 'Oyo', 'give' ), |
|
1175 | - 'PL' => __( 'Plateau', 'give' ), |
|
1176 | - 'RI' => __( 'Rivers', 'give' ), |
|
1177 | - 'SO' => __( 'Sokoto', 'give' ), |
|
1178 | - 'TA' => __( 'Taraba', 'give' ), |
|
1179 | - 'YO' => __( 'Yobe', 'give' ), |
|
1180 | - 'ZA' => __( 'Zamfara', 'give' ), |
|
1144 | + 'AB' => __('Abia', 'give'), |
|
1145 | + 'FC' => __('Abuja', 'give'), |
|
1146 | + 'AD' => __('Adamawa', 'give'), |
|
1147 | + 'AK' => __('Akwa Ibom', 'give'), |
|
1148 | + 'AN' => __('Anambra', 'give'), |
|
1149 | + 'BA' => __('Bauchi', 'give'), |
|
1150 | + 'BY' => __('Bayelsa', 'give'), |
|
1151 | + 'BE' => __('Benue', 'give'), |
|
1152 | + 'BO' => __('Borno', 'give'), |
|
1153 | + 'CR' => __('Cross River', 'give'), |
|
1154 | + 'DE' => __('Delta', 'give'), |
|
1155 | + 'EB' => __('Ebonyi', 'give'), |
|
1156 | + 'ED' => __('Edo', 'give'), |
|
1157 | + 'EK' => __('Ekiti', 'give'), |
|
1158 | + 'EN' => __('Enugu', 'give'), |
|
1159 | + 'GO' => __('Gombe', 'give'), |
|
1160 | + 'IM' => __('Imo', 'give'), |
|
1161 | + 'JI' => __('Jigawa', 'give'), |
|
1162 | + 'KD' => __('Kaduna', 'give'), |
|
1163 | + 'KN' => __('Kano', 'give'), |
|
1164 | + 'KT' => __('Katsina', 'give'), |
|
1165 | + 'KE' => __('Kebbi', 'give'), |
|
1166 | + 'KO' => __('Kogi', 'give'), |
|
1167 | + 'KW' => __('Kwara', 'give'), |
|
1168 | + 'LA' => __('Lagos', 'give'), |
|
1169 | + 'NA' => __('Nasarawa', 'give'), |
|
1170 | + 'NI' => __('Niger', 'give'), |
|
1171 | + 'OG' => __('Ogun', 'give'), |
|
1172 | + 'ON' => __('Ondo', 'give'), |
|
1173 | + 'OS' => __('Osun', 'give'), |
|
1174 | + 'OY' => __('Oyo', 'give'), |
|
1175 | + 'PL' => __('Plateau', 'give'), |
|
1176 | + 'RI' => __('Rivers', 'give'), |
|
1177 | + 'SO' => __('Sokoto', 'give'), |
|
1178 | + 'TA' => __('Taraba', 'give'), |
|
1179 | + 'YO' => __('Yobe', 'give'), |
|
1180 | + 'ZA' => __('Zamfara', 'give'), |
|
1181 | 1181 | ); |
1182 | 1182 | |
1183 | - return apply_filters( 'give_nigerian_states', $states ); |
|
1183 | + return apply_filters('give_nigerian_states', $states); |
|
1184 | 1184 | } |
1185 | 1185 | |
1186 | 1186 | /** |
@@ -1192,41 +1192,41 @@ discard block |
||
1192 | 1192 | function give_get_mexico_states_list() { |
1193 | 1193 | $states = array( |
1194 | 1194 | '' => '', |
1195 | - 'Distrito Federal' => __( 'Distrito Federal', 'give' ), |
|
1196 | - 'Jalisco' => __( 'Jalisco', 'give' ), |
|
1197 | - 'Nuevo Leon' => __( 'Nuevo León', 'give' ), |
|
1198 | - 'Aguascalientes' => __( 'Aguascalientes', 'give' ), |
|
1199 | - 'Baja California' => __( 'Baja California', 'give' ), |
|
1200 | - 'Baja California Sur' => __( 'Baja California Sur', 'give' ), |
|
1201 | - 'Campeche' => __( 'Campeche', 'give' ), |
|
1202 | - 'Chiapas' => __( 'Chiapas', 'give' ), |
|
1203 | - 'Chihuahua' => __( 'Chihuahua', 'give' ), |
|
1204 | - 'Coahuila' => __( 'Coahuila', 'give' ), |
|
1205 | - 'Colima' => __( 'Colima', 'give' ), |
|
1206 | - 'Durango' => __( 'Durango', 'give' ), |
|
1207 | - 'Guanajuato' => __( 'Guanajuato', 'give' ), |
|
1208 | - 'Guerrero' => __( 'Guerrero', 'give' ), |
|
1209 | - 'Hidalgo' => __( 'Hidalgo', 'give' ), |
|
1210 | - 'Estado de Mexico' => __( 'Edo. de México', 'give' ), |
|
1211 | - 'Michoacan' => __( 'Michoacán', 'give' ), |
|
1212 | - 'Morelos' => __( 'Morelos', 'give' ), |
|
1213 | - 'Nayarit' => __( 'Nayarit', 'give' ), |
|
1214 | - 'Oaxaca' => __( 'Oaxaca', 'give' ), |
|
1215 | - 'Puebla' => __( 'Puebla', 'give' ), |
|
1216 | - 'Queretaro' => __( 'Querétaro', 'give' ), |
|
1217 | - 'Quintana Roo' => __( 'Quintana Roo', 'give' ), |
|
1218 | - 'San Luis Potosi' => __( 'San Luis Potosí', 'give' ), |
|
1219 | - 'Sinaloa' => __( 'Sinaloa', 'give' ), |
|
1220 | - 'Sonora' => __( 'Sonora', 'give' ), |
|
1221 | - 'Tabasco' => __( 'Tabasco', 'give' ), |
|
1222 | - 'Tamaulipas' => __( 'Tamaulipas', 'give' ), |
|
1223 | - 'Tlaxcala' => __( 'Tlaxcala', 'give' ), |
|
1224 | - 'Veracruz' => __( 'Veracruz', 'give' ), |
|
1225 | - 'Yucatan' => __( 'Yucatán', 'give' ), |
|
1226 | - 'Zacatecas' => __( 'Zacatecas', 'give' ), |
|
1195 | + 'Distrito Federal' => __('Distrito Federal', 'give'), |
|
1196 | + 'Jalisco' => __('Jalisco', 'give'), |
|
1197 | + 'Nuevo Leon' => __('Nuevo León', 'give'), |
|
1198 | + 'Aguascalientes' => __('Aguascalientes', 'give'), |
|
1199 | + 'Baja California' => __('Baja California', 'give'), |
|
1200 | + 'Baja California Sur' => __('Baja California Sur', 'give'), |
|
1201 | + 'Campeche' => __('Campeche', 'give'), |
|
1202 | + 'Chiapas' => __('Chiapas', 'give'), |
|
1203 | + 'Chihuahua' => __('Chihuahua', 'give'), |
|
1204 | + 'Coahuila' => __('Coahuila', 'give'), |
|
1205 | + 'Colima' => __('Colima', 'give'), |
|
1206 | + 'Durango' => __('Durango', 'give'), |
|
1207 | + 'Guanajuato' => __('Guanajuato', 'give'), |
|
1208 | + 'Guerrero' => __('Guerrero', 'give'), |
|
1209 | + 'Hidalgo' => __('Hidalgo', 'give'), |
|
1210 | + 'Estado de Mexico' => __('Edo. de México', 'give'), |
|
1211 | + 'Michoacan' => __('Michoacán', 'give'), |
|
1212 | + 'Morelos' => __('Morelos', 'give'), |
|
1213 | + 'Nayarit' => __('Nayarit', 'give'), |
|
1214 | + 'Oaxaca' => __('Oaxaca', 'give'), |
|
1215 | + 'Puebla' => __('Puebla', 'give'), |
|
1216 | + 'Queretaro' => __('Querétaro', 'give'), |
|
1217 | + 'Quintana Roo' => __('Quintana Roo', 'give'), |
|
1218 | + 'San Luis Potosi' => __('San Luis Potosí', 'give'), |
|
1219 | + 'Sinaloa' => __('Sinaloa', 'give'), |
|
1220 | + 'Sonora' => __('Sonora', 'give'), |
|
1221 | + 'Tabasco' => __('Tabasco', 'give'), |
|
1222 | + 'Tamaulipas' => __('Tamaulipas', 'give'), |
|
1223 | + 'Tlaxcala' => __('Tlaxcala', 'give'), |
|
1224 | + 'Veracruz' => __('Veracruz', 'give'), |
|
1225 | + 'Yucatan' => __('Yucatán', 'give'), |
|
1226 | + 'Zacatecas' => __('Zacatecas', 'give'), |
|
1227 | 1227 | ); |
1228 | 1228 | |
1229 | - return apply_filters( 'give_mexico_states', $states ); |
|
1229 | + return apply_filters('give_mexico_states', $states); |
|
1230 | 1230 | } |
1231 | 1231 | |
1232 | 1232 | /** |
@@ -1238,56 +1238,56 @@ discard block |
||
1238 | 1238 | function give_get_japan_states_list() { |
1239 | 1239 | $states = array( |
1240 | 1240 | '' => '', |
1241 | - 'JP01' => __( 'Hokkaido', 'give' ), |
|
1242 | - 'JP02' => __( 'Aomori', 'give' ), |
|
1243 | - 'JP03' => __( 'Iwate', 'give' ), |
|
1244 | - 'JP04' => __( 'Miyagi', 'give' ), |
|
1245 | - 'JP05' => __( 'Akita', 'give' ), |
|
1246 | - 'JP06' => __( 'Yamagata', 'give' ), |
|
1247 | - 'JP07' => __( 'Fukushima', 'give' ), |
|
1248 | - 'JP08' => __( 'Ibaraki', 'give' ), |
|
1249 | - 'JP09' => __( 'Tochigi', 'give' ), |
|
1250 | - 'JP10' => __( 'Gunma', 'give' ), |
|
1251 | - 'JP11' => __( 'Saitama', 'give' ), |
|
1252 | - 'JP12' => __( 'Chiba', 'give' ), |
|
1253 | - 'JP13' => __( 'Tokyo', 'give' ), |
|
1254 | - 'JP14' => __( 'Kanagawa', 'give' ), |
|
1255 | - 'JP15' => __( 'Niigata', 'give' ), |
|
1256 | - 'JP16' => __( 'Toyama', 'give' ), |
|
1257 | - 'JP17' => __( 'Ishikawa', 'give' ), |
|
1258 | - 'JP18' => __( 'Fukui', 'give' ), |
|
1259 | - 'JP19' => __( 'Yamanashi', 'give' ), |
|
1260 | - 'JP20' => __( 'Nagano', 'give' ), |
|
1261 | - 'JP21' => __( 'Gifu', 'give' ), |
|
1262 | - 'JP22' => __( 'Shizuoka', 'give' ), |
|
1263 | - 'JP23' => __( 'Aichi', 'give' ), |
|
1264 | - 'JP24' => __( 'Mie', 'give' ), |
|
1265 | - 'JP25' => __( 'Shiga', 'give' ), |
|
1266 | - 'JP26' => __( 'Kyoto', 'give' ), |
|
1267 | - 'JP27' => __( 'Osaka', 'give' ), |
|
1268 | - 'JP28' => __( 'Hyogo', 'give' ), |
|
1269 | - 'JP29' => __( 'Nara', 'give' ), |
|
1270 | - 'JP30' => __( 'Wakayama', 'give' ), |
|
1271 | - 'JP31' => __( 'Tottori', 'give' ), |
|
1272 | - 'JP32' => __( 'Shimane', 'give' ), |
|
1273 | - 'JP33' => __( 'Okayama', 'give' ), |
|
1274 | - 'JP34' => __( 'Hiroshima', 'give' ), |
|
1275 | - 'JP35' => __( 'Yamaguchi', 'give' ), |
|
1276 | - 'JP36' => __( 'Tokushima', 'give' ), |
|
1277 | - 'JP37' => __( 'Kagawa', 'give' ), |
|
1278 | - 'JP38' => __( 'Ehime', 'give' ), |
|
1279 | - 'JP39' => __( 'Kochi', 'give' ), |
|
1280 | - 'JP40' => __( 'Fukuoka', 'give' ), |
|
1281 | - 'JP41' => __( 'Saga', 'give' ), |
|
1282 | - 'JP42' => __( 'Nagasaki', 'give' ), |
|
1283 | - 'JP43' => __( 'Kumamoto', 'give' ), |
|
1284 | - 'JP44' => __( 'Oita', 'give' ), |
|
1285 | - 'JP45' => __( 'Miyazaki', 'give' ), |
|
1286 | - 'JP46' => __( 'Kagoshima', 'give' ), |
|
1287 | - 'JP47' => __( 'Okinawa', 'give' ), |
|
1241 | + 'JP01' => __('Hokkaido', 'give'), |
|
1242 | + 'JP02' => __('Aomori', 'give'), |
|
1243 | + 'JP03' => __('Iwate', 'give'), |
|
1244 | + 'JP04' => __('Miyagi', 'give'), |
|
1245 | + 'JP05' => __('Akita', 'give'), |
|
1246 | + 'JP06' => __('Yamagata', 'give'), |
|
1247 | + 'JP07' => __('Fukushima', 'give'), |
|
1248 | + 'JP08' => __('Ibaraki', 'give'), |
|
1249 | + 'JP09' => __('Tochigi', 'give'), |
|
1250 | + 'JP10' => __('Gunma', 'give'), |
|
1251 | + 'JP11' => __('Saitama', 'give'), |
|
1252 | + 'JP12' => __('Chiba', 'give'), |
|
1253 | + 'JP13' => __('Tokyo', 'give'), |
|
1254 | + 'JP14' => __('Kanagawa', 'give'), |
|
1255 | + 'JP15' => __('Niigata', 'give'), |
|
1256 | + 'JP16' => __('Toyama', 'give'), |
|
1257 | + 'JP17' => __('Ishikawa', 'give'), |
|
1258 | + 'JP18' => __('Fukui', 'give'), |
|
1259 | + 'JP19' => __('Yamanashi', 'give'), |
|
1260 | + 'JP20' => __('Nagano', 'give'), |
|
1261 | + 'JP21' => __('Gifu', 'give'), |
|
1262 | + 'JP22' => __('Shizuoka', 'give'), |
|
1263 | + 'JP23' => __('Aichi', 'give'), |
|
1264 | + 'JP24' => __('Mie', 'give'), |
|
1265 | + 'JP25' => __('Shiga', 'give'), |
|
1266 | + 'JP26' => __('Kyoto', 'give'), |
|
1267 | + 'JP27' => __('Osaka', 'give'), |
|
1268 | + 'JP28' => __('Hyogo', 'give'), |
|
1269 | + 'JP29' => __('Nara', 'give'), |
|
1270 | + 'JP30' => __('Wakayama', 'give'), |
|
1271 | + 'JP31' => __('Tottori', 'give'), |
|
1272 | + 'JP32' => __('Shimane', 'give'), |
|
1273 | + 'JP33' => __('Okayama', 'give'), |
|
1274 | + 'JP34' => __('Hiroshima', 'give'), |
|
1275 | + 'JP35' => __('Yamaguchi', 'give'), |
|
1276 | + 'JP36' => __('Tokushima', 'give'), |
|
1277 | + 'JP37' => __('Kagawa', 'give'), |
|
1278 | + 'JP38' => __('Ehime', 'give'), |
|
1279 | + 'JP39' => __('Kochi', 'give'), |
|
1280 | + 'JP40' => __('Fukuoka', 'give'), |
|
1281 | + 'JP41' => __('Saga', 'give'), |
|
1282 | + 'JP42' => __('Nagasaki', 'give'), |
|
1283 | + 'JP43' => __('Kumamoto', 'give'), |
|
1284 | + 'JP44' => __('Oita', 'give'), |
|
1285 | + 'JP45' => __('Miyazaki', 'give'), |
|
1286 | + 'JP46' => __('Kagoshima', 'give'), |
|
1287 | + 'JP47' => __('Okinawa', 'give'), |
|
1288 | 1288 | ); |
1289 | 1289 | |
1290 | - return apply_filters( 'give_japan_states', $states ); |
|
1290 | + return apply_filters('give_japan_states', $states); |
|
1291 | 1291 | } |
1292 | 1292 | |
1293 | 1293 | /** |
@@ -1299,119 +1299,119 @@ discard block |
||
1299 | 1299 | function give_get_italy_states_list() { |
1300 | 1300 | $states = array( |
1301 | 1301 | '' => '', |
1302 | - 'AG' => __( 'Agrigento', 'give' ), |
|
1303 | - 'AL' => __( 'Alessandria', 'give' ), |
|
1304 | - 'AN' => __( 'Ancona', 'give' ), |
|
1305 | - 'AO' => __( 'Aosta', 'give' ), |
|
1306 | - 'AR' => __( 'Arezzo', 'give' ), |
|
1307 | - 'AP' => __( 'Ascoli Piceno', 'give' ), |
|
1308 | - 'AT' => __( 'Asti', 'give' ), |
|
1309 | - 'AV' => __( 'Avellino', 'give' ), |
|
1310 | - 'BA' => __( 'Bari', 'give' ), |
|
1311 | - 'BT' => __( 'Barletta-Andria-Trani', 'give' ), |
|
1312 | - 'BL' => __( 'Belluno', 'give' ), |
|
1313 | - 'BN' => __( 'Benevento', 'give' ), |
|
1314 | - 'BG' => __( 'Bergamo', 'give' ), |
|
1315 | - 'BI' => __( 'Biella', 'give' ), |
|
1316 | - 'BO' => __( 'Bologna', 'give' ), |
|
1317 | - 'BZ' => __( 'Bolzano', 'give' ), |
|
1318 | - 'BS' => __( 'Brescia', 'give' ), |
|
1319 | - 'BR' => __( 'Brindisi', 'give' ), |
|
1320 | - 'CA' => __( 'Cagliari', 'give' ), |
|
1321 | - 'CL' => __( 'Caltanissetta', 'give' ), |
|
1322 | - 'CB' => __( 'Campobasso', 'give' ), |
|
1323 | - 'CI' => __( 'Carbonia-Iglesias', 'give' ), |
|
1324 | - 'CE' => __( 'Caserta', 'give' ), |
|
1325 | - 'CT' => __( 'Catania', 'give' ), |
|
1326 | - 'CZ' => __( 'Catanzaro', 'give' ), |
|
1327 | - 'CH' => __( 'Chieti', 'give' ), |
|
1328 | - 'CO' => __( 'Como', 'give' ), |
|
1329 | - 'CS' => __( 'Cosenza', 'give' ), |
|
1330 | - 'CR' => __( 'Cremona', 'give' ), |
|
1331 | - 'KR' => __( 'Crotone', 'give' ), |
|
1332 | - 'CN' => __( 'Cuneo', 'give' ), |
|
1333 | - 'EN' => __( 'Enna', 'give' ), |
|
1334 | - 'FM' => __( 'Fermo', 'give' ), |
|
1335 | - 'FE' => __( 'Ferrara', 'give' ), |
|
1336 | - 'FI' => __( 'Firenze', 'give' ), |
|
1337 | - 'FG' => __( 'Foggia', 'give' ), |
|
1338 | - 'FC' => __( 'Forlì-Cesena', 'give' ), |
|
1339 | - 'FR' => __( 'Frosinone', 'give' ), |
|
1340 | - 'GE' => __( 'Genova', 'give' ), |
|
1341 | - 'GO' => __( 'Gorizia', 'give' ), |
|
1342 | - 'GR' => __( 'Grosseto', 'give' ), |
|
1343 | - 'IM' => __( 'Imperia', 'give' ), |
|
1344 | - 'IS' => __( 'Isernia', 'give' ), |
|
1345 | - 'SP' => __( 'La Spezia', 'give' ), |
|
1346 | - 'AQ' => __( "L'Aquila", 'give' ), |
|
1347 | - 'LT' => __( 'Latina', 'give' ), |
|
1348 | - 'LE' => __( 'Lecce', 'give' ), |
|
1349 | - 'LC' => __( 'Lecco', 'give' ), |
|
1350 | - 'LI' => __( 'Livorno', 'give' ), |
|
1351 | - 'LO' => __( 'Lodi', 'give' ), |
|
1352 | - 'LU' => __( 'Lucca', 'give' ), |
|
1353 | - 'MC' => __( 'Macerata', 'give' ), |
|
1354 | - 'MN' => __( 'Mantova', 'give' ), |
|
1355 | - 'MS' => __( 'Massa-Carrara', 'give' ), |
|
1356 | - 'MT' => __( 'Matera', 'give' ), |
|
1357 | - 'ME' => __( 'Messina', 'give' ), |
|
1358 | - 'MI' => __( 'Milano', 'give' ), |
|
1359 | - 'MO' => __( 'Modena', 'give' ), |
|
1360 | - 'MB' => __( 'Monza e della Brianza', 'give' ), |
|
1361 | - 'NA' => __( 'Napoli', 'give' ), |
|
1362 | - 'NO' => __( 'Novara', 'give' ), |
|
1363 | - 'NU' => __( 'Nuoro', 'give' ), |
|
1364 | - 'OT' => __( 'Olbia-Tempio', 'give' ), |
|
1365 | - 'OR' => __( 'Oristano', 'give' ), |
|
1366 | - 'PD' => __( 'Padova', 'give' ), |
|
1367 | - 'PA' => __( 'Palermo', 'give' ), |
|
1368 | - 'PR' => __( 'Parma', 'give' ), |
|
1369 | - 'PV' => __( 'Pavia', 'give' ), |
|
1370 | - 'PG' => __( 'Perugia', 'give' ), |
|
1371 | - 'PU' => __( 'Pesaro e Urbino', 'give' ), |
|
1372 | - 'PE' => __( 'Pescara', 'give' ), |
|
1373 | - 'PC' => __( 'Piacenza', 'give' ), |
|
1374 | - 'PI' => __( 'Pisa', 'give' ), |
|
1375 | - 'PT' => __( 'Pistoia', 'give' ), |
|
1376 | - 'PN' => __( 'Pordenone', 'give' ), |
|
1377 | - 'PZ' => __( 'Potenza', 'give' ), |
|
1378 | - 'PO' => __( 'Prato', 'give' ), |
|
1379 | - 'RG' => __( 'Ragusa', 'give' ), |
|
1380 | - 'RA' => __( 'Ravenna', 'give' ), |
|
1381 | - 'RC' => __( 'Reggio Calabria', 'give' ), |
|
1382 | - 'RE' => __( 'Reggio Emilia', 'give' ), |
|
1383 | - 'RI' => __( 'Rieti', 'give' ), |
|
1384 | - 'RN' => __( 'Rimini', 'give' ), |
|
1385 | - 'RM' => __( 'Roma', 'give' ), |
|
1386 | - 'RO' => __( 'Rovigo', 'give' ), |
|
1387 | - 'SA' => __( 'Salerno', 'give' ), |
|
1388 | - 'VS' => __( 'Medio Campidano', 'give' ), |
|
1389 | - 'SS' => __( 'Sassari', 'give' ), |
|
1390 | - 'SV' => __( 'Savona', 'give' ), |
|
1391 | - 'SI' => __( 'Siena', 'give' ), |
|
1392 | - 'SR' => __( 'Siracusa', 'give' ), |
|
1393 | - 'SO' => __( 'Sondrio', 'give' ), |
|
1394 | - 'TA' => __( 'Taranto', 'give' ), |
|
1395 | - 'TE' => __( 'Teramo', 'give' ), |
|
1396 | - 'TR' => __( 'Terni', 'give' ), |
|
1397 | - 'TO' => __( 'Torino', 'give' ), |
|
1398 | - 'OG' => __( 'Ogliastra', 'give' ), |
|
1399 | - 'TP' => __( 'Trapani', 'give' ), |
|
1400 | - 'TN' => __( 'Trento', 'give' ), |
|
1401 | - 'TV' => __( 'Treviso', 'give' ), |
|
1402 | - 'TS' => __( 'Trieste', 'give' ), |
|
1403 | - 'UD' => __( 'Udine', 'give' ), |
|
1404 | - 'VA' => __( 'Varese', 'give' ), |
|
1405 | - 'VE' => __( 'Venezia', 'give' ), |
|
1406 | - 'VB' => __( 'Verbano-Cusio-Ossola', 'give' ), |
|
1407 | - 'VC' => __( 'Vercelli', 'give' ), |
|
1408 | - 'VR' => __( 'Verona', 'give' ), |
|
1409 | - 'VV' => __( 'Vibo Valentia', 'give' ), |
|
1410 | - 'VI' => __( 'Vicenza', 'give' ), |
|
1411 | - 'VT' => __( 'Viterbo', 'give' ), |
|
1302 | + 'AG' => __('Agrigento', 'give'), |
|
1303 | + 'AL' => __('Alessandria', 'give'), |
|
1304 | + 'AN' => __('Ancona', 'give'), |
|
1305 | + 'AO' => __('Aosta', 'give'), |
|
1306 | + 'AR' => __('Arezzo', 'give'), |
|
1307 | + 'AP' => __('Ascoli Piceno', 'give'), |
|
1308 | + 'AT' => __('Asti', 'give'), |
|
1309 | + 'AV' => __('Avellino', 'give'), |
|
1310 | + 'BA' => __('Bari', 'give'), |
|
1311 | + 'BT' => __('Barletta-Andria-Trani', 'give'), |
|
1312 | + 'BL' => __('Belluno', 'give'), |
|
1313 | + 'BN' => __('Benevento', 'give'), |
|
1314 | + 'BG' => __('Bergamo', 'give'), |
|
1315 | + 'BI' => __('Biella', 'give'), |
|
1316 | + 'BO' => __('Bologna', 'give'), |
|
1317 | + 'BZ' => __('Bolzano', 'give'), |
|
1318 | + 'BS' => __('Brescia', 'give'), |
|
1319 | + 'BR' => __('Brindisi', 'give'), |
|
1320 | + 'CA' => __('Cagliari', 'give'), |
|
1321 | + 'CL' => __('Caltanissetta', 'give'), |
|
1322 | + 'CB' => __('Campobasso', 'give'), |
|
1323 | + 'CI' => __('Carbonia-Iglesias', 'give'), |
|
1324 | + 'CE' => __('Caserta', 'give'), |
|
1325 | + 'CT' => __('Catania', 'give'), |
|
1326 | + 'CZ' => __('Catanzaro', 'give'), |
|
1327 | + 'CH' => __('Chieti', 'give'), |
|
1328 | + 'CO' => __('Como', 'give'), |
|
1329 | + 'CS' => __('Cosenza', 'give'), |
|
1330 | + 'CR' => __('Cremona', 'give'), |
|
1331 | + 'KR' => __('Crotone', 'give'), |
|
1332 | + 'CN' => __('Cuneo', 'give'), |
|
1333 | + 'EN' => __('Enna', 'give'), |
|
1334 | + 'FM' => __('Fermo', 'give'), |
|
1335 | + 'FE' => __('Ferrara', 'give'), |
|
1336 | + 'FI' => __('Firenze', 'give'), |
|
1337 | + 'FG' => __('Foggia', 'give'), |
|
1338 | + 'FC' => __('Forlì-Cesena', 'give'), |
|
1339 | + 'FR' => __('Frosinone', 'give'), |
|
1340 | + 'GE' => __('Genova', 'give'), |
|
1341 | + 'GO' => __('Gorizia', 'give'), |
|
1342 | + 'GR' => __('Grosseto', 'give'), |
|
1343 | + 'IM' => __('Imperia', 'give'), |
|
1344 | + 'IS' => __('Isernia', 'give'), |
|
1345 | + 'SP' => __('La Spezia', 'give'), |
|
1346 | + 'AQ' => __("L'Aquila", 'give'), |
|
1347 | + 'LT' => __('Latina', 'give'), |
|
1348 | + 'LE' => __('Lecce', 'give'), |
|
1349 | + 'LC' => __('Lecco', 'give'), |
|
1350 | + 'LI' => __('Livorno', 'give'), |
|
1351 | + 'LO' => __('Lodi', 'give'), |
|
1352 | + 'LU' => __('Lucca', 'give'), |
|
1353 | + 'MC' => __('Macerata', 'give'), |
|
1354 | + 'MN' => __('Mantova', 'give'), |
|
1355 | + 'MS' => __('Massa-Carrara', 'give'), |
|
1356 | + 'MT' => __('Matera', 'give'), |
|
1357 | + 'ME' => __('Messina', 'give'), |
|
1358 | + 'MI' => __('Milano', 'give'), |
|
1359 | + 'MO' => __('Modena', 'give'), |
|
1360 | + 'MB' => __('Monza e della Brianza', 'give'), |
|
1361 | + 'NA' => __('Napoli', 'give'), |
|
1362 | + 'NO' => __('Novara', 'give'), |
|
1363 | + 'NU' => __('Nuoro', 'give'), |
|
1364 | + 'OT' => __('Olbia-Tempio', 'give'), |
|
1365 | + 'OR' => __('Oristano', 'give'), |
|
1366 | + 'PD' => __('Padova', 'give'), |
|
1367 | + 'PA' => __('Palermo', 'give'), |
|
1368 | + 'PR' => __('Parma', 'give'), |
|
1369 | + 'PV' => __('Pavia', 'give'), |
|
1370 | + 'PG' => __('Perugia', 'give'), |
|
1371 | + 'PU' => __('Pesaro e Urbino', 'give'), |
|
1372 | + 'PE' => __('Pescara', 'give'), |
|
1373 | + 'PC' => __('Piacenza', 'give'), |
|
1374 | + 'PI' => __('Pisa', 'give'), |
|
1375 | + 'PT' => __('Pistoia', 'give'), |
|
1376 | + 'PN' => __('Pordenone', 'give'), |
|
1377 | + 'PZ' => __('Potenza', 'give'), |
|
1378 | + 'PO' => __('Prato', 'give'), |
|
1379 | + 'RG' => __('Ragusa', 'give'), |
|
1380 | + 'RA' => __('Ravenna', 'give'), |
|
1381 | + 'RC' => __('Reggio Calabria', 'give'), |
|
1382 | + 'RE' => __('Reggio Emilia', 'give'), |
|
1383 | + 'RI' => __('Rieti', 'give'), |
|
1384 | + 'RN' => __('Rimini', 'give'), |
|
1385 | + 'RM' => __('Roma', 'give'), |
|
1386 | + 'RO' => __('Rovigo', 'give'), |
|
1387 | + 'SA' => __('Salerno', 'give'), |
|
1388 | + 'VS' => __('Medio Campidano', 'give'), |
|
1389 | + 'SS' => __('Sassari', 'give'), |
|
1390 | + 'SV' => __('Savona', 'give'), |
|
1391 | + 'SI' => __('Siena', 'give'), |
|
1392 | + 'SR' => __('Siracusa', 'give'), |
|
1393 | + 'SO' => __('Sondrio', 'give'), |
|
1394 | + 'TA' => __('Taranto', 'give'), |
|
1395 | + 'TE' => __('Teramo', 'give'), |
|
1396 | + 'TR' => __('Terni', 'give'), |
|
1397 | + 'TO' => __('Torino', 'give'), |
|
1398 | + 'OG' => __('Ogliastra', 'give'), |
|
1399 | + 'TP' => __('Trapani', 'give'), |
|
1400 | + 'TN' => __('Trento', 'give'), |
|
1401 | + 'TV' => __('Treviso', 'give'), |
|
1402 | + 'TS' => __('Trieste', 'give'), |
|
1403 | + 'UD' => __('Udine', 'give'), |
|
1404 | + 'VA' => __('Varese', 'give'), |
|
1405 | + 'VE' => __('Venezia', 'give'), |
|
1406 | + 'VB' => __('Verbano-Cusio-Ossola', 'give'), |
|
1407 | + 'VC' => __('Vercelli', 'give'), |
|
1408 | + 'VR' => __('Verona', 'give'), |
|
1409 | + 'VV' => __('Vibo Valentia', 'give'), |
|
1410 | + 'VI' => __('Vicenza', 'give'), |
|
1411 | + 'VT' => __('Viterbo', 'give'), |
|
1412 | 1412 | ); |
1413 | 1413 | |
1414 | - return apply_filters( 'give_italy_states', $states ); |
|
1414 | + return apply_filters('give_italy_states', $states); |
|
1415 | 1415 | } |
1416 | 1416 | |
1417 | 1417 | /** |
@@ -1423,40 +1423,40 @@ discard block |
||
1423 | 1423 | function give_get_iran_states_list() { |
1424 | 1424 | $states = array( |
1425 | 1425 | '' => '', |
1426 | - 'KHZ' => __( 'Khuzestan (خوزستان)', 'give' ), |
|
1427 | - 'THR' => __( 'Tehran (تهران)', 'give' ), |
|
1428 | - 'ILM' => __( 'Ilaam (ایلام)', 'give' ), |
|
1429 | - 'BHR' => __( 'Bushehr (بوشهر)', 'give' ), |
|
1430 | - 'ADL' => __( 'Ardabil (اردبیل)', 'give' ), |
|
1431 | - 'ESF' => __( 'Isfahan (اصفهان)', 'give' ), |
|
1432 | - 'YZD' => __( 'Yazd (یزد)', 'give' ), |
|
1433 | - 'KRH' => __( 'Kermanshah (کرمانشاه)', 'give' ), |
|
1434 | - 'KRN' => __( 'Kerman (کرمان)', 'give' ), |
|
1435 | - 'HDN' => __( 'Hamadan (همدان)', 'give' ), |
|
1436 | - 'GZN' => __( 'Ghazvin (قزوین)', 'give' ), |
|
1437 | - 'ZJN' => __( 'Zanjan (زنجان)', 'give' ), |
|
1438 | - 'LRS' => __( 'Luristan (لرستان)', 'give' ), |
|
1439 | - 'ABZ' => __( 'Alborz (البرز)', 'give' ), |
|
1440 | - 'EAZ' => __( 'East Azarbaijan (آذربایجان شرقی)', 'give' ), |
|
1441 | - 'WAZ' => __( 'West Azarbaijan (آذربایجان غربی)', 'give' ), |
|
1442 | - 'CHB' => __( 'Chaharmahal and Bakhtiari (چهارمحال و بختیاری)', 'give' ), |
|
1443 | - 'SKH' => __( 'South Khorasan (خراسان جنوبی)', 'give' ), |
|
1444 | - 'RKH' => __( 'Razavi Khorasan (خراسان رضوی)', 'give' ), |
|
1445 | - 'NKH' => __( 'North Khorasan (خراسان جنوبی)', 'give' ), |
|
1446 | - 'SMN' => __( 'Semnan (سمنان)', 'give' ), |
|
1447 | - 'FRS' => __( 'Fars (فارس)', 'give' ), |
|
1448 | - 'QHM' => __( 'Qom (قم)', 'give' ), |
|
1449 | - 'KRD' => __( 'Kurdistan / کردستان)', 'give' ), |
|
1450 | - 'KBD' => __( 'Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)', 'give' ), |
|
1451 | - 'GLS' => __( 'Golestan (گلستان)', 'give' ), |
|
1452 | - 'GIL' => __( 'Gilan (گیلان)', 'give' ), |
|
1453 | - 'MZN' => __( 'Mazandaran (مازندران)', 'give' ), |
|
1454 | - 'MKZ' => __( 'Markazi (مرکزی)', 'give' ), |
|
1455 | - 'HRZ' => __( 'Hormozgan (هرمزگان)', 'give' ), |
|
1456 | - 'SBN' => __( 'Sistan and Baluchestan (سیستان و بلوچستان)', 'give' ), |
|
1426 | + 'KHZ' => __('Khuzestan (خوزستان)', 'give'), |
|
1427 | + 'THR' => __('Tehran (تهران)', 'give'), |
|
1428 | + 'ILM' => __('Ilaam (ایلام)', 'give'), |
|
1429 | + 'BHR' => __('Bushehr (بوشهر)', 'give'), |
|
1430 | + 'ADL' => __('Ardabil (اردبیل)', 'give'), |
|
1431 | + 'ESF' => __('Isfahan (اصفهان)', 'give'), |
|
1432 | + 'YZD' => __('Yazd (یزد)', 'give'), |
|
1433 | + 'KRH' => __('Kermanshah (کرمانشاه)', 'give'), |
|
1434 | + 'KRN' => __('Kerman (کرمان)', 'give'), |
|
1435 | + 'HDN' => __('Hamadan (همدان)', 'give'), |
|
1436 | + 'GZN' => __('Ghazvin (قزوین)', 'give'), |
|
1437 | + 'ZJN' => __('Zanjan (زنجان)', 'give'), |
|
1438 | + 'LRS' => __('Luristan (لرستان)', 'give'), |
|
1439 | + 'ABZ' => __('Alborz (البرز)', 'give'), |
|
1440 | + 'EAZ' => __('East Azarbaijan (آذربایجان شرقی)', 'give'), |
|
1441 | + 'WAZ' => __('West Azarbaijan (آذربایجان غربی)', 'give'), |
|
1442 | + 'CHB' => __('Chaharmahal and Bakhtiari (چهارمحال و بختیاری)', 'give'), |
|
1443 | + 'SKH' => __('South Khorasan (خراسان جنوبی)', 'give'), |
|
1444 | + 'RKH' => __('Razavi Khorasan (خراسان رضوی)', 'give'), |
|
1445 | + 'NKH' => __('North Khorasan (خراسان جنوبی)', 'give'), |
|
1446 | + 'SMN' => __('Semnan (سمنان)', 'give'), |
|
1447 | + 'FRS' => __('Fars (فارس)', 'give'), |
|
1448 | + 'QHM' => __('Qom (قم)', 'give'), |
|
1449 | + 'KRD' => __('Kurdistan / کردستان)', 'give'), |
|
1450 | + 'KBD' => __('Kohgiluyeh and BoyerAhmad (کهگیلوییه و بویراحمد)', 'give'), |
|
1451 | + 'GLS' => __('Golestan (گلستان)', 'give'), |
|
1452 | + 'GIL' => __('Gilan (گیلان)', 'give'), |
|
1453 | + 'MZN' => __('Mazandaran (مازندران)', 'give'), |
|
1454 | + 'MKZ' => __('Markazi (مرکزی)', 'give'), |
|
1455 | + 'HRZ' => __('Hormozgan (هرمزگان)', 'give'), |
|
1456 | + 'SBN' => __('Sistan and Baluchestan (سیستان و بلوچستان)', 'give'), |
|
1457 | 1457 | ); |
1458 | 1458 | |
1459 | - return apply_filters( 'give_iran_states', $states ); |
|
1459 | + return apply_filters('give_iran_states', $states); |
|
1460 | 1460 | } |
1461 | 1461 | |
1462 | 1462 | /** |
@@ -1468,35 +1468,35 @@ discard block |
||
1468 | 1468 | function give_get_ireland_states_list() { |
1469 | 1469 | $states = array( |
1470 | 1470 | '' => '', |
1471 | - 'CE' => __( 'Clare', 'give' ), |
|
1472 | - 'CK' => __( 'Cork', 'give' ), |
|
1473 | - 'CN' => __( 'Cavan', 'give' ), |
|
1474 | - 'CW' => __( 'Carlow', 'give' ), |
|
1475 | - 'DL' => __( 'Donegal', 'give' ), |
|
1476 | - 'DN' => __( 'Dublin', 'give' ), |
|
1477 | - 'GY' => __( 'Galway', 'give' ), |
|
1478 | - 'KE' => __( 'Kildare', 'give' ), |
|
1479 | - 'KK' => __( 'Kilkenny', 'give' ), |
|
1480 | - 'KY' => __( 'Kerry', 'give' ), |
|
1481 | - 'LD' => __( 'Longford', 'give' ), |
|
1482 | - 'LH' => __( 'Louth', 'give' ), |
|
1483 | - 'LK' => __( 'Limerick', 'give' ), |
|
1484 | - 'LM' => __( 'Leitrim', 'give' ), |
|
1485 | - 'LS' => __( 'Laois', 'give' ), |
|
1486 | - 'MH' => __( 'Meath', 'give' ), |
|
1487 | - 'MN' => __( 'Monaghan', 'give' ), |
|
1488 | - 'MO' => __( 'Mayo', 'give' ), |
|
1489 | - 'OY' => __( 'Offaly', 'give' ), |
|
1490 | - 'RN' => __( 'Roscommon', 'give' ), |
|
1491 | - 'SO' => __( 'Sligo', 'give' ), |
|
1492 | - 'TY' => __( 'Tipperary', 'give' ), |
|
1493 | - 'WD' => __( 'Waterford', 'give' ), |
|
1494 | - 'WH' => __( 'Westmeath', 'give' ), |
|
1495 | - 'WW' => __( 'Wicklow', 'give' ), |
|
1496 | - 'WX' => __( 'Wexford', 'give' ), |
|
1471 | + 'CE' => __('Clare', 'give'), |
|
1472 | + 'CK' => __('Cork', 'give'), |
|
1473 | + 'CN' => __('Cavan', 'give'), |
|
1474 | + 'CW' => __('Carlow', 'give'), |
|
1475 | + 'DL' => __('Donegal', 'give'), |
|
1476 | + 'DN' => __('Dublin', 'give'), |
|
1477 | + 'GY' => __('Galway', 'give'), |
|
1478 | + 'KE' => __('Kildare', 'give'), |
|
1479 | + 'KK' => __('Kilkenny', 'give'), |
|
1480 | + 'KY' => __('Kerry', 'give'), |
|
1481 | + 'LD' => __('Longford', 'give'), |
|
1482 | + 'LH' => __('Louth', 'give'), |
|
1483 | + 'LK' => __('Limerick', 'give'), |
|
1484 | + 'LM' => __('Leitrim', 'give'), |
|
1485 | + 'LS' => __('Laois', 'give'), |
|
1486 | + 'MH' => __('Meath', 'give'), |
|
1487 | + 'MN' => __('Monaghan', 'give'), |
|
1488 | + 'MO' => __('Mayo', 'give'), |
|
1489 | + 'OY' => __('Offaly', 'give'), |
|
1490 | + 'RN' => __('Roscommon', 'give'), |
|
1491 | + 'SO' => __('Sligo', 'give'), |
|
1492 | + 'TY' => __('Tipperary', 'give'), |
|
1493 | + 'WD' => __('Waterford', 'give'), |
|
1494 | + 'WH' => __('Westmeath', 'give'), |
|
1495 | + 'WW' => __('Wicklow', 'give'), |
|
1496 | + 'WX' => __('Wexford', 'give'), |
|
1497 | 1497 | ); |
1498 | 1498 | |
1499 | - return apply_filters( 'give_ireland_states', $states ); |
|
1499 | + return apply_filters('give_ireland_states', $states); |
|
1500 | 1500 | } |
1501 | 1501 | |
1502 | 1502 | /** |
@@ -1508,22 +1508,22 @@ discard block |
||
1508 | 1508 | function give_get_greek_states_list() { |
1509 | 1509 | $states = array( |
1510 | 1510 | '' => '', |
1511 | - 'I' => __( 'Αττική', 'give' ), |
|
1512 | - 'A' => __( 'Ανατολική Μακεδονία και Θράκη', 'give' ), |
|
1513 | - 'B' => __( 'Κεντρική Μακεδονία', 'give' ), |
|
1514 | - 'C' => __( 'Δυτική Μακεδονία', 'give' ), |
|
1515 | - 'D' => __( 'Ήπειρος', 'give' ), |
|
1516 | - 'E' => __( 'Θεσσαλία', 'give' ), |
|
1517 | - 'F' => __( 'Ιόνιοι Νήσοι', 'give' ), |
|
1518 | - 'G' => __( 'Δυτική Ελλάδα', 'give' ), |
|
1519 | - 'H' => __( 'Στερεά Ελλάδα', 'give' ), |
|
1520 | - 'J' => __( 'Πελοπόννησος', 'give' ), |
|
1521 | - 'K' => __( 'Βόρειο Αιγαίο', 'give' ), |
|
1522 | - 'L' => __( 'Νότιο Αιγαίο', 'give' ), |
|
1523 | - 'M' => __( 'Κρήτη', 'give' ), |
|
1511 | + 'I' => __('Αττική', 'give'), |
|
1512 | + 'A' => __('Ανατολική Μακεδονία και Θράκη', 'give'), |
|
1513 | + 'B' => __('Κεντρική Μακεδονία', 'give'), |
|
1514 | + 'C' => __('Δυτική Μακεδονία', 'give'), |
|
1515 | + 'D' => __('Ήπειρος', 'give'), |
|
1516 | + 'E' => __('Θεσσαλία', 'give'), |
|
1517 | + 'F' => __('Ιόνιοι Νήσοι', 'give'), |
|
1518 | + 'G' => __('Δυτική Ελλάδα', 'give'), |
|
1519 | + 'H' => __('Στερεά Ελλάδα', 'give'), |
|
1520 | + 'J' => __('Πελοπόννησος', 'give'), |
|
1521 | + 'K' => __('Βόρειο Αιγαίο', 'give'), |
|
1522 | + 'L' => __('Νότιο Αιγαίο', 'give'), |
|
1523 | + 'M' => __('Κρήτη', 'give'), |
|
1524 | 1524 | ); |
1525 | 1525 | |
1526 | - return apply_filters( 'give_greek_states', $states ); |
|
1526 | + return apply_filters('give_greek_states', $states); |
|
1527 | 1527 | } |
1528 | 1528 | |
1529 | 1529 | /** |
@@ -1535,18 +1535,18 @@ discard block |
||
1535 | 1535 | function give_get_bolivian_states_list() { |
1536 | 1536 | $states = array( |
1537 | 1537 | '' => '', |
1538 | - 'B' => __( 'Chuquisaca', 'give' ), |
|
1539 | - 'H' => __( 'Beni', 'give' ), |
|
1540 | - 'C' => __( 'Cochabamba', 'give' ), |
|
1541 | - 'L' => __( 'La Paz', 'give' ), |
|
1542 | - 'O' => __( 'Oruro', 'give' ), |
|
1543 | - 'N' => __( 'Pando', 'give' ), |
|
1544 | - 'P' => __( 'Potosí', 'give' ), |
|
1545 | - 'S' => __( 'Santa Cruz', 'give' ), |
|
1546 | - 'T' => __( 'Tarija', 'give' ), |
|
1538 | + 'B' => __('Chuquisaca', 'give'), |
|
1539 | + 'H' => __('Beni', 'give'), |
|
1540 | + 'C' => __('Cochabamba', 'give'), |
|
1541 | + 'L' => __('La Paz', 'give'), |
|
1542 | + 'O' => __('Oruro', 'give'), |
|
1543 | + 'N' => __('Pando', 'give'), |
|
1544 | + 'P' => __('Potosí', 'give'), |
|
1545 | + 'S' => __('Santa Cruz', 'give'), |
|
1546 | + 'T' => __('Tarija', 'give'), |
|
1547 | 1547 | ); |
1548 | 1548 | |
1549 | - return apply_filters( 'give_bolivian_states', $states ); |
|
1549 | + return apply_filters('give_bolivian_states', $states); |
|
1550 | 1550 | } |
1551 | 1551 | |
1552 | 1552 | /** |
@@ -1558,37 +1558,37 @@ discard block |
||
1558 | 1558 | function give_get_bulgarian_states_list() { |
1559 | 1559 | $states = array( |
1560 | 1560 | '' => '', |
1561 | - 'BG-01' => __( 'Blagoevgrad', 'give' ), |
|
1562 | - 'BG-02' => __( 'Burgas', 'give' ), |
|
1563 | - 'BG-08' => __( 'Dobrich', 'give' ), |
|
1564 | - 'BG-07' => __( 'Gabrovo', 'give' ), |
|
1565 | - 'BG-26' => __( 'Haskovo', 'give' ), |
|
1566 | - 'BG-09' => __( 'Kardzhali', 'give' ), |
|
1567 | - 'BG-10' => __( 'Kyustendil', 'give' ), |
|
1568 | - 'BG-11' => __( 'Lovech', 'give' ), |
|
1569 | - 'BG-12' => __( 'Montana', 'give' ), |
|
1570 | - 'BG-13' => __( 'Pazardzhik', 'give' ), |
|
1571 | - 'BG-14' => __( 'Pernik', 'give' ), |
|
1572 | - 'BG-15' => __( 'Pleven', 'give' ), |
|
1573 | - 'BG-16' => __( 'Plovdiv', 'give' ), |
|
1574 | - 'BG-17' => __( 'Razgrad', 'give' ), |
|
1575 | - 'BG-18' => __( 'Ruse', 'give' ), |
|
1576 | - 'BG-27' => __( 'Shumen', 'give' ), |
|
1577 | - 'BG-19' => __( 'Silistra', 'give' ), |
|
1578 | - 'BG-20' => __( 'Sliven', 'give' ), |
|
1579 | - 'BG-21' => __( 'Smolyan', 'give' ), |
|
1580 | - 'BG-23' => __( 'Sofia', 'give' ), |
|
1581 | - 'BG-22' => __( 'Sofia-Grad', 'give' ), |
|
1582 | - 'BG-24' => __( 'Stara Zagora', 'give' ), |
|
1583 | - 'BG-25' => __( 'Targovishte', 'give' ), |
|
1584 | - 'BG-03' => __( 'Varna', 'give' ), |
|
1585 | - 'BG-04' => __( 'Veliko Tarnovo', 'give' ), |
|
1586 | - 'BG-05' => __( 'Vidin', 'give' ), |
|
1587 | - 'BG-06' => __( 'Vratsa', 'give' ), |
|
1588 | - 'BG-28' => __( 'Yambol', 'give' ), |
|
1561 | + 'BG-01' => __('Blagoevgrad', 'give'), |
|
1562 | + 'BG-02' => __('Burgas', 'give'), |
|
1563 | + 'BG-08' => __('Dobrich', 'give'), |
|
1564 | + 'BG-07' => __('Gabrovo', 'give'), |
|
1565 | + 'BG-26' => __('Haskovo', 'give'), |
|
1566 | + 'BG-09' => __('Kardzhali', 'give'), |
|
1567 | + 'BG-10' => __('Kyustendil', 'give'), |
|
1568 | + 'BG-11' => __('Lovech', 'give'), |
|
1569 | + 'BG-12' => __('Montana', 'give'), |
|
1570 | + 'BG-13' => __('Pazardzhik', 'give'), |
|
1571 | + 'BG-14' => __('Pernik', 'give'), |
|
1572 | + 'BG-15' => __('Pleven', 'give'), |
|
1573 | + 'BG-16' => __('Plovdiv', 'give'), |
|
1574 | + 'BG-17' => __('Razgrad', 'give'), |
|
1575 | + 'BG-18' => __('Ruse', 'give'), |
|
1576 | + 'BG-27' => __('Shumen', 'give'), |
|
1577 | + 'BG-19' => __('Silistra', 'give'), |
|
1578 | + 'BG-20' => __('Sliven', 'give'), |
|
1579 | + 'BG-21' => __('Smolyan', 'give'), |
|
1580 | + 'BG-23' => __('Sofia', 'give'), |
|
1581 | + 'BG-22' => __('Sofia-Grad', 'give'), |
|
1582 | + 'BG-24' => __('Stara Zagora', 'give'), |
|
1583 | + 'BG-25' => __('Targovishte', 'give'), |
|
1584 | + 'BG-03' => __('Varna', 'give'), |
|
1585 | + 'BG-04' => __('Veliko Tarnovo', 'give'), |
|
1586 | + 'BG-05' => __('Vidin', 'give'), |
|
1587 | + 'BG-06' => __('Vratsa', 'give'), |
|
1588 | + 'BG-28' => __('Yambol', 'give'), |
|
1589 | 1589 | ); |
1590 | 1590 | |
1591 | - return apply_filters( 'give_bulgarian_states', $states ); |
|
1591 | + return apply_filters('give_bulgarian_states', $states); |
|
1592 | 1592 | } |
1593 | 1593 | |
1594 | 1594 | /** |
@@ -1600,73 +1600,73 @@ discard block |
||
1600 | 1600 | function give_get_bangladeshi_states_list() { |
1601 | 1601 | $states = array( |
1602 | 1602 | '' => '', |
1603 | - 'BAG' => __( 'Bagerhat', 'give' ), |
|
1604 | - 'BAN' => __( 'Bandarban', 'give' ), |
|
1605 | - 'BAR' => __( 'Barguna', 'give' ), |
|
1606 | - 'BARI' => __( 'Barisal', 'give' ), |
|
1607 | - 'BHO' => __( 'Bhola', 'give' ), |
|
1608 | - 'BOG' => __( 'Bogra', 'give' ), |
|
1609 | - 'BRA' => __( 'Brahmanbaria', 'give' ), |
|
1610 | - 'CHA' => __( 'Chandpur', 'give' ), |
|
1611 | - 'CHI' => __( 'Chittagong', 'give' ), |
|
1612 | - 'CHU' => __( 'Chuadanga', 'give' ), |
|
1613 | - 'COM' => __( 'Comilla', 'give' ), |
|
1614 | - 'COX' => __( "Cox's Bazar", 'give' ), |
|
1615 | - 'DHA' => __( 'Dhaka', 'give' ), |
|
1616 | - 'DIN' => __( 'Dinajpur', 'give' ), |
|
1617 | - 'FAR' => __( 'Faridpur ', 'give' ), |
|
1618 | - 'FEN' => __( 'Feni', 'give' ), |
|
1619 | - 'GAI' => __( 'Gaibandha', 'give' ), |
|
1620 | - 'GAZI' => __( 'Gazipur', 'give' ), |
|
1621 | - 'GOP' => __( 'Gopalganj', 'give' ), |
|
1622 | - 'HAB' => __( 'Habiganj', 'give' ), |
|
1623 | - 'JAM' => __( 'Jamalpur', 'give' ), |
|
1624 | - 'JES' => __( 'Jessore', 'give' ), |
|
1625 | - 'JHA' => __( 'Jhalokati', 'give' ), |
|
1626 | - 'JHE' => __( 'Jhenaidah', 'give' ), |
|
1627 | - 'JOY' => __( 'Joypurhat', 'give' ), |
|
1628 | - 'KHA' => __( 'Khagrachhari', 'give' ), |
|
1629 | - 'KHU' => __( 'Khulna', 'give' ), |
|
1630 | - 'KIS' => __( 'Kishoreganj', 'give' ), |
|
1631 | - 'KUR' => __( 'Kurigram', 'give' ), |
|
1632 | - 'KUS' => __( 'Kushtia', 'give' ), |
|
1633 | - 'LAK' => __( 'Lakshmipur', 'give' ), |
|
1634 | - 'LAL' => __( 'Lalmonirhat', 'give' ), |
|
1635 | - 'MAD' => __( 'Madaripur', 'give' ), |
|
1636 | - 'MAG' => __( 'Magura', 'give' ), |
|
1637 | - 'MAN' => __( 'Manikganj ', 'give' ), |
|
1638 | - 'MEH' => __( 'Meherpur', 'give' ), |
|
1639 | - 'MOU' => __( 'Moulvibazar', 'give' ), |
|
1640 | - 'MUN' => __( 'Munshiganj', 'give' ), |
|
1641 | - 'MYM' => __( 'Mymensingh', 'give' ), |
|
1642 | - 'NAO' => __( 'Naogaon', 'give' ), |
|
1643 | - 'NAR' => __( 'Narail', 'give' ), |
|
1644 | - 'NARG' => __( 'Narayanganj', 'give' ), |
|
1645 | - 'NARD' => __( 'Narsingdi', 'give' ), |
|
1646 | - 'NAT' => __( 'Natore', 'give' ), |
|
1647 | - 'NAW' => __( 'Nawabganj', 'give' ), |
|
1648 | - 'NET' => __( 'Netrakona', 'give' ), |
|
1649 | - 'NIL' => __( 'Nilphamari', 'give' ), |
|
1650 | - 'NOA' => __( 'Noakhali', 'give' ), |
|
1651 | - 'PAB' => __( 'Pabna', 'give' ), |
|
1652 | - 'PAN' => __( 'Panchagarh', 'give' ), |
|
1653 | - 'PAT' => __( 'Patuakhali', 'give' ), |
|
1654 | - 'PIR' => __( 'Pirojpur', 'give' ), |
|
1655 | - 'RAJB' => __( 'Rajbari', 'give' ), |
|
1656 | - 'RAJ' => __( 'Rajshahi', 'give' ), |
|
1657 | - 'RAN' => __( 'Rangamati', 'give' ), |
|
1658 | - 'RANP' => __( 'Rangpur', 'give' ), |
|
1659 | - 'SAT' => __( 'Satkhira', 'give' ), |
|
1660 | - 'SHA' => __( 'Shariatpur', 'give' ), |
|
1661 | - 'SHE' => __( 'Sherpur', 'give' ), |
|
1662 | - 'SIR' => __( 'Sirajganj', 'give' ), |
|
1663 | - 'SUN' => __( 'Sunamganj', 'give' ), |
|
1664 | - 'SYL' => __( 'Sylhet', 'give' ), |
|
1665 | - 'TAN' => __( 'Tangail', 'give' ), |
|
1666 | - 'THA' => __( 'Thakurgaon', 'give' ), |
|
1603 | + 'BAG' => __('Bagerhat', 'give'), |
|
1604 | + 'BAN' => __('Bandarban', 'give'), |
|
1605 | + 'BAR' => __('Barguna', 'give'), |
|
1606 | + 'BARI' => __('Barisal', 'give'), |
|
1607 | + 'BHO' => __('Bhola', 'give'), |
|
1608 | + 'BOG' => __('Bogra', 'give'), |
|
1609 | + 'BRA' => __('Brahmanbaria', 'give'), |
|
1610 | + 'CHA' => __('Chandpur', 'give'), |
|
1611 | + 'CHI' => __('Chittagong', 'give'), |
|
1612 | + 'CHU' => __('Chuadanga', 'give'), |
|
1613 | + 'COM' => __('Comilla', 'give'), |
|
1614 | + 'COX' => __("Cox's Bazar", 'give'), |
|
1615 | + 'DHA' => __('Dhaka', 'give'), |
|
1616 | + 'DIN' => __('Dinajpur', 'give'), |
|
1617 | + 'FAR' => __('Faridpur ', 'give'), |
|
1618 | + 'FEN' => __('Feni', 'give'), |
|
1619 | + 'GAI' => __('Gaibandha', 'give'), |
|
1620 | + 'GAZI' => __('Gazipur', 'give'), |
|
1621 | + 'GOP' => __('Gopalganj', 'give'), |
|
1622 | + 'HAB' => __('Habiganj', 'give'), |
|
1623 | + 'JAM' => __('Jamalpur', 'give'), |
|
1624 | + 'JES' => __('Jessore', 'give'), |
|
1625 | + 'JHA' => __('Jhalokati', 'give'), |
|
1626 | + 'JHE' => __('Jhenaidah', 'give'), |
|
1627 | + 'JOY' => __('Joypurhat', 'give'), |
|
1628 | + 'KHA' => __('Khagrachhari', 'give'), |
|
1629 | + 'KHU' => __('Khulna', 'give'), |
|
1630 | + 'KIS' => __('Kishoreganj', 'give'), |
|
1631 | + 'KUR' => __('Kurigram', 'give'), |
|
1632 | + 'KUS' => __('Kushtia', 'give'), |
|
1633 | + 'LAK' => __('Lakshmipur', 'give'), |
|
1634 | + 'LAL' => __('Lalmonirhat', 'give'), |
|
1635 | + 'MAD' => __('Madaripur', 'give'), |
|
1636 | + 'MAG' => __('Magura', 'give'), |
|
1637 | + 'MAN' => __('Manikganj ', 'give'), |
|
1638 | + 'MEH' => __('Meherpur', 'give'), |
|
1639 | + 'MOU' => __('Moulvibazar', 'give'), |
|
1640 | + 'MUN' => __('Munshiganj', 'give'), |
|
1641 | + 'MYM' => __('Mymensingh', 'give'), |
|
1642 | + 'NAO' => __('Naogaon', 'give'), |
|
1643 | + 'NAR' => __('Narail', 'give'), |
|
1644 | + 'NARG' => __('Narayanganj', 'give'), |
|
1645 | + 'NARD' => __('Narsingdi', 'give'), |
|
1646 | + 'NAT' => __('Natore', 'give'), |
|
1647 | + 'NAW' => __('Nawabganj', 'give'), |
|
1648 | + 'NET' => __('Netrakona', 'give'), |
|
1649 | + 'NIL' => __('Nilphamari', 'give'), |
|
1650 | + 'NOA' => __('Noakhali', 'give'), |
|
1651 | + 'PAB' => __('Pabna', 'give'), |
|
1652 | + 'PAN' => __('Panchagarh', 'give'), |
|
1653 | + 'PAT' => __('Patuakhali', 'give'), |
|
1654 | + 'PIR' => __('Pirojpur', 'give'), |
|
1655 | + 'RAJB' => __('Rajbari', 'give'), |
|
1656 | + 'RAJ' => __('Rajshahi', 'give'), |
|
1657 | + 'RAN' => __('Rangamati', 'give'), |
|
1658 | + 'RANP' => __('Rangpur', 'give'), |
|
1659 | + 'SAT' => __('Satkhira', 'give'), |
|
1660 | + 'SHA' => __('Shariatpur', 'give'), |
|
1661 | + 'SHE' => __('Sherpur', 'give'), |
|
1662 | + 'SIR' => __('Sirajganj', 'give'), |
|
1663 | + 'SUN' => __('Sunamganj', 'give'), |
|
1664 | + 'SYL' => __('Sylhet', 'give'), |
|
1665 | + 'TAN' => __('Tangail', 'give'), |
|
1666 | + 'THA' => __('Thakurgaon', 'give'), |
|
1667 | 1667 | ); |
1668 | 1668 | |
1669 | - return apply_filters( 'give_bangladeshi_states', $states ); |
|
1669 | + return apply_filters('give_bangladeshi_states', $states); |
|
1670 | 1670 | } |
1671 | 1671 | |
1672 | 1672 | /** |
@@ -1678,33 +1678,33 @@ discard block |
||
1678 | 1678 | function give_get_argentina_states_list() { |
1679 | 1679 | $states = array( |
1680 | 1680 | '' => '', |
1681 | - 'C' => __( 'Ciudad Autónoma de Buenos Aires', 'give' ), |
|
1682 | - 'B' => __( 'Buenos Aires', 'give' ), |
|
1683 | - 'K' => __( 'Catamarca', 'give' ), |
|
1684 | - 'H' => __( 'Chaco', 'give' ), |
|
1685 | - 'U' => __( 'Chubut', 'give' ), |
|
1686 | - 'X' => __( 'Córdoba', 'give' ), |
|
1687 | - 'W' => __( 'Corrientes', 'give' ), |
|
1688 | - 'E' => __( 'Entre Ríos', 'give' ), |
|
1689 | - 'P' => __( 'Formosa', 'give' ), |
|
1690 | - 'Y' => __( 'Jujuy', 'give' ), |
|
1691 | - 'L' => __( 'La Pampa', 'give' ), |
|
1692 | - 'F' => __( 'La Rioja', 'give' ), |
|
1693 | - 'M' => __( 'Mendoza', 'give' ), |
|
1694 | - 'N' => __( 'Misiones', 'give' ), |
|
1695 | - 'Q' => __( 'Neuquén', 'give' ), |
|
1696 | - 'R' => __( 'Río Negro', 'give' ), |
|
1697 | - 'A' => __( 'Salta', 'give' ), |
|
1698 | - 'J' => __( 'San Juan', 'give' ), |
|
1699 | - 'D' => __( 'San Luis', 'give' ), |
|
1700 | - 'Z' => __( 'Santa Cruz', 'give' ), |
|
1701 | - 'S' => __( 'Santa Fe', 'give' ), |
|
1702 | - 'G' => __( 'Santiago del Estero', 'give' ), |
|
1703 | - 'V' => __( 'Tierra del Fuego', 'give' ), |
|
1704 | - 'T' => __( 'Tucumán', 'give' ), |
|
1681 | + 'C' => __('Ciudad Autónoma de Buenos Aires', 'give'), |
|
1682 | + 'B' => __('Buenos Aires', 'give'), |
|
1683 | + 'K' => __('Catamarca', 'give'), |
|
1684 | + 'H' => __('Chaco', 'give'), |
|
1685 | + 'U' => __('Chubut', 'give'), |
|
1686 | + 'X' => __('Córdoba', 'give'), |
|
1687 | + 'W' => __('Corrientes', 'give'), |
|
1688 | + 'E' => __('Entre Ríos', 'give'), |
|
1689 | + 'P' => __('Formosa', 'give'), |
|
1690 | + 'Y' => __('Jujuy', 'give'), |
|
1691 | + 'L' => __('La Pampa', 'give'), |
|
1692 | + 'F' => __('La Rioja', 'give'), |
|
1693 | + 'M' => __('Mendoza', 'give'), |
|
1694 | + 'N' => __('Misiones', 'give'), |
|
1695 | + 'Q' => __('Neuquén', 'give'), |
|
1696 | + 'R' => __('Río Negro', 'give'), |
|
1697 | + 'A' => __('Salta', 'give'), |
|
1698 | + 'J' => __('San Juan', 'give'), |
|
1699 | + 'D' => __('San Luis', 'give'), |
|
1700 | + 'Z' => __('Santa Cruz', 'give'), |
|
1701 | + 'S' => __('Santa Fe', 'give'), |
|
1702 | + 'G' => __('Santiago del Estero', 'give'), |
|
1703 | + 'V' => __('Tierra del Fuego', 'give'), |
|
1704 | + 'T' => __('Tucumán', 'give'), |
|
1705 | 1705 | ); |
1706 | 1706 | |
1707 | - return apply_filters( 'give_argentina_states', $states ); |
|
1707 | + return apply_filters('give_argentina_states', $states); |
|
1708 | 1708 | } |
1709 | 1709 | |
1710 | 1710 | /** |
@@ -1785,7 +1785,7 @@ discard block |
||
1785 | 1785 | 'AP' => 'Armed Forces - Pacific', |
1786 | 1786 | ); |
1787 | 1787 | |
1788 | - return apply_filters( 'give_us_states', $states ); |
|
1788 | + return apply_filters('give_us_states', $states); |
|
1789 | 1789 | } |
1790 | 1790 | |
1791 | 1791 | /** |
@@ -1798,22 +1798,22 @@ discard block |
||
1798 | 1798 | function give_get_provinces_list() { |
1799 | 1799 | $provinces = array( |
1800 | 1800 | '' => '', |
1801 | - 'AB' => esc_html__( 'Alberta', 'give' ), |
|
1802 | - 'BC' => esc_html__( 'British Columbia', 'give' ), |
|
1803 | - 'MB' => esc_html__( 'Manitoba', 'give' ), |
|
1804 | - 'NB' => esc_html__( 'New Brunswick', 'give' ), |
|
1805 | - 'NL' => esc_html__( 'Newfoundland and Labrador', 'give' ), |
|
1806 | - 'NS' => esc_html__( 'Nova Scotia', 'give' ), |
|
1807 | - 'NT' => esc_html__( 'Northwest Territories', 'give' ), |
|
1808 | - 'NU' => esc_html__( 'Nunavut', 'give' ), |
|
1809 | - 'ON' => esc_html__( 'Ontario', 'give' ), |
|
1810 | - 'PE' => esc_html__( 'Prince Edward Island', 'give' ), |
|
1811 | - 'QC' => esc_html__( 'Quebec', 'give' ), |
|
1812 | - 'SK' => esc_html__( 'Saskatchewan', 'give' ), |
|
1813 | - 'YT' => esc_html__( 'Yukon', 'give' ), |
|
1801 | + 'AB' => esc_html__('Alberta', 'give'), |
|
1802 | + 'BC' => esc_html__('British Columbia', 'give'), |
|
1803 | + 'MB' => esc_html__('Manitoba', 'give'), |
|
1804 | + 'NB' => esc_html__('New Brunswick', 'give'), |
|
1805 | + 'NL' => esc_html__('Newfoundland and Labrador', 'give'), |
|
1806 | + 'NS' => esc_html__('Nova Scotia', 'give'), |
|
1807 | + 'NT' => esc_html__('Northwest Territories', 'give'), |
|
1808 | + 'NU' => esc_html__('Nunavut', 'give'), |
|
1809 | + 'ON' => esc_html__('Ontario', 'give'), |
|
1810 | + 'PE' => esc_html__('Prince Edward Island', 'give'), |
|
1811 | + 'QC' => esc_html__('Quebec', 'give'), |
|
1812 | + 'SK' => esc_html__('Saskatchewan', 'give'), |
|
1813 | + 'YT' => esc_html__('Yukon', 'give'), |
|
1814 | 1814 | ); |
1815 | 1815 | |
1816 | - return apply_filters( 'give_canada_provinces', $provinces ); |
|
1816 | + return apply_filters('give_canada_provinces', $provinces); |
|
1817 | 1817 | } |
1818 | 1818 | |
1819 | 1819 | /** |
@@ -1835,7 +1835,7 @@ discard block |
||
1835 | 1835 | 'WA' => 'Western Australia', |
1836 | 1836 | ); |
1837 | 1837 | |
1838 | - return apply_filters( 'give_australian_states', $states ); |
|
1838 | + return apply_filters('give_australian_states', $states); |
|
1839 | 1839 | } |
1840 | 1840 | |
1841 | 1841 | /** |
@@ -1876,7 +1876,7 @@ discard block |
||
1876 | 1876 | 'TO' => 'Tocantins', |
1877 | 1877 | ); |
1878 | 1878 | |
1879 | - return apply_filters( 'give_brazil_states', $states ); |
|
1879 | + return apply_filters('give_brazil_states', $states); |
|
1880 | 1880 | } |
1881 | 1881 | |
1882 | 1882 | /** |
@@ -1893,7 +1893,7 @@ discard block |
||
1893 | 1893 | 'NEW TERRITORIES' => 'New Territories', |
1894 | 1894 | ); |
1895 | 1895 | |
1896 | - return apply_filters( 'give_hong_kong_states', $states ); |
|
1896 | + return apply_filters('give_hong_kong_states', $states); |
|
1897 | 1897 | } |
1898 | 1898 | |
1899 | 1899 | /** |
@@ -1927,7 +1927,7 @@ discard block |
||
1927 | 1927 | 'ZA' => 'Zala', |
1928 | 1928 | ); |
1929 | 1929 | |
1930 | - return apply_filters( 'give_hungary_states', $states ); |
|
1930 | + return apply_filters('give_hungary_states', $states); |
|
1931 | 1931 | } |
1932 | 1932 | |
1933 | 1933 | /** |
@@ -1973,7 +1973,7 @@ discard block |
||
1973 | 1973 | 'CN32' => 'Xinjiang / 新疆', |
1974 | 1974 | ); |
1975 | 1975 | |
1976 | - return apply_filters( 'give_chinese_states', $states ); |
|
1976 | + return apply_filters('give_chinese_states', $states); |
|
1977 | 1977 | } |
1978 | 1978 | |
1979 | 1979 | /** |
@@ -2002,7 +2002,7 @@ discard block |
||
2002 | 2002 | 'WC' => 'West Coast', |
2003 | 2003 | ); |
2004 | 2004 | |
2005 | - return apply_filters( 'give_new_zealand_states', $states ); |
|
2005 | + return apply_filters('give_new_zealand_states', $states); |
|
2006 | 2006 | } |
2007 | 2007 | |
2008 | 2008 | /** |
@@ -2050,7 +2050,7 @@ discard block |
||
2050 | 2050 | 'PB' => 'Papua Barat', |
2051 | 2051 | ); |
2052 | 2052 | |
2053 | - return apply_filters( 'give_indonesia_states', $states ); |
|
2053 | + return apply_filters('give_indonesia_states', $states); |
|
2054 | 2054 | } |
2055 | 2055 | |
2056 | 2056 | /** |
@@ -2100,7 +2100,7 @@ discard block |
||
2100 | 2100 | 'PY' => 'Pondicherry (Puducherry)', |
2101 | 2101 | ); |
2102 | 2102 | |
2103 | - return apply_filters( 'give_indian_states', $states ); |
|
2103 | + return apply_filters('give_indian_states', $states); |
|
2104 | 2104 | } |
2105 | 2105 | |
2106 | 2106 | /** |
@@ -2130,7 +2130,7 @@ discard block |
||
2130 | 2130 | 'PJY' => 'W.P. Putrajaya', |
2131 | 2131 | ); |
2132 | 2132 | |
2133 | - return apply_filters( 'give_malaysian_states', $states ); |
|
2133 | + return apply_filters('give_malaysian_states', $states); |
|
2134 | 2134 | } |
2135 | 2135 | |
2136 | 2136 | /** |
@@ -2153,7 +2153,7 @@ discard block |
||
2153 | 2153 | 'WC' => 'Western Cape', |
2154 | 2154 | ); |
2155 | 2155 | |
2156 | - return apply_filters( 'give_south_african_states', $states ); |
|
2156 | + return apply_filters('give_south_african_states', $states); |
|
2157 | 2157 | } |
2158 | 2158 | |
2159 | 2159 | /** |
@@ -2244,7 +2244,7 @@ discard block |
||
2244 | 2244 | 'TH-35' => 'Yasothon (ยโสธร)', |
2245 | 2245 | ); |
2246 | 2246 | |
2247 | - return apply_filters( 'give_thailand_states', $states ); |
|
2247 | + return apply_filters('give_thailand_states', $states); |
|
2248 | 2248 | } |
2249 | 2249 | |
2250 | 2250 | /** |
@@ -2256,59 +2256,59 @@ discard block |
||
2256 | 2256 | function give_get_spain_states_list() { |
2257 | 2257 | $states = array( |
2258 | 2258 | '' => '', |
2259 | - 'C' => esc_html__( 'A Coruña', 'give' ), |
|
2260 | - 'VI' => esc_html__( 'Álava', 'give' ), |
|
2261 | - 'AB' => esc_html__( 'Albacete', 'give' ), |
|
2262 | - 'A' => esc_html__( 'Alicante', 'give' ), |
|
2263 | - 'AL' => esc_html__( 'Almería', 'give' ), |
|
2264 | - 'O' => esc_html__( 'Asturias', 'give' ), |
|
2265 | - 'AV' => esc_html__( 'Ávila', 'give' ), |
|
2266 | - 'BA' => esc_html__( 'Badajoz', 'give' ), |
|
2267 | - 'PM' => esc_html__( 'Baleares', 'give' ), |
|
2268 | - 'B' => esc_html__( 'Barcelona', 'give' ), |
|
2269 | - 'BU' => esc_html__( 'Burgos', 'give' ), |
|
2270 | - 'CC' => esc_html__( 'Cáceres', 'give' ), |
|
2271 | - 'CA' => esc_html__( 'Cádiz', 'give' ), |
|
2272 | - 'S' => esc_html__( 'Cantabria', 'give' ), |
|
2273 | - 'CS' => esc_html__( 'Castellón', 'give' ), |
|
2274 | - 'CE' => esc_html__( 'Ceuta', 'give' ), |
|
2275 | - 'CR' => esc_html__( 'Ciudad Real', 'give' ), |
|
2276 | - 'CO' => esc_html__( 'Córdoba', 'give' ), |
|
2277 | - 'CU' => esc_html__( 'Cuenca', 'give' ), |
|
2278 | - 'GI' => esc_html__( 'Girona', 'give' ), |
|
2279 | - 'GR' => esc_html__( 'Granada', 'give' ), |
|
2280 | - 'GU' => esc_html__( 'Guadalajara', 'give' ), |
|
2281 | - 'SS' => esc_html__( 'Gipuzkoa', 'give' ), |
|
2282 | - 'H' => esc_html__( 'Huelva', 'give' ), |
|
2283 | - 'HU' => esc_html__( 'Huesca', 'give' ), |
|
2284 | - 'J' => esc_html__( 'Jaén', 'give' ), |
|
2285 | - 'LO' => esc_html__( 'La Rioja', 'give' ), |
|
2286 | - 'GC' => esc_html__( 'Las Palmas', 'give' ), |
|
2287 | - 'LE' => esc_html__( 'León', 'give' ), |
|
2288 | - 'L' => esc_html__( 'Lleida', 'give' ), |
|
2289 | - 'LU' => esc_html__( 'Lugo', 'give' ), |
|
2290 | - 'M' => esc_html__( 'Madrid', 'give' ), |
|
2291 | - 'MA' => esc_html__( 'Málaga', 'give' ), |
|
2292 | - 'ML' => esc_html__( 'Melilla', 'give' ), |
|
2293 | - 'MU' => esc_html__( 'Murcia', 'give' ), |
|
2294 | - 'NA' => esc_html__( 'Navarra', 'give' ), |
|
2295 | - 'OR' => esc_html__( 'Ourense', 'give' ), |
|
2296 | - 'P' => esc_html__( 'Palencia', 'give' ), |
|
2297 | - 'PO' => esc_html__( 'Pontevedra', 'give' ), |
|
2298 | - 'SA' => esc_html__( 'Salamanca', 'give' ), |
|
2299 | - 'TF' => esc_html__( 'Santa Cruz de Tenerife', 'give' ), |
|
2300 | - 'SG' => esc_html__( 'Segovia', 'give' ), |
|
2301 | - 'SE' => esc_html__( 'Sevilla', 'give' ), |
|
2302 | - 'SO' => esc_html__( 'Soria', 'give' ), |
|
2303 | - 'T' => esc_html__( 'Tarragona', 'give' ), |
|
2304 | - 'TE' => esc_html__( 'Teruel', 'give' ), |
|
2305 | - 'TO' => esc_html__( 'Toledo', 'give' ), |
|
2306 | - 'V' => esc_html__( 'Valencia', 'give' ), |
|
2307 | - 'VA' => esc_html__( 'Valladolid', 'give' ), |
|
2308 | - 'BI' => esc_html__( 'Bizkaia', 'give' ), |
|
2309 | - 'ZA' => esc_html__( 'Zamora', 'give' ), |
|
2310 | - 'Z' => esc_html__( 'Zaragoza', 'give' ), |
|
2259 | + 'C' => esc_html__('A Coruña', 'give'), |
|
2260 | + 'VI' => esc_html__('Álava', 'give'), |
|
2261 | + 'AB' => esc_html__('Albacete', 'give'), |
|
2262 | + 'A' => esc_html__('Alicante', 'give'), |
|
2263 | + 'AL' => esc_html__('Almería', 'give'), |
|
2264 | + 'O' => esc_html__('Asturias', 'give'), |
|
2265 | + 'AV' => esc_html__('Ávila', 'give'), |
|
2266 | + 'BA' => esc_html__('Badajoz', 'give'), |
|
2267 | + 'PM' => esc_html__('Baleares', 'give'), |
|
2268 | + 'B' => esc_html__('Barcelona', 'give'), |
|
2269 | + 'BU' => esc_html__('Burgos', 'give'), |
|
2270 | + 'CC' => esc_html__('Cáceres', 'give'), |
|
2271 | + 'CA' => esc_html__('Cádiz', 'give'), |
|
2272 | + 'S' => esc_html__('Cantabria', 'give'), |
|
2273 | + 'CS' => esc_html__('Castellón', 'give'), |
|
2274 | + 'CE' => esc_html__('Ceuta', 'give'), |
|
2275 | + 'CR' => esc_html__('Ciudad Real', 'give'), |
|
2276 | + 'CO' => esc_html__('Córdoba', 'give'), |
|
2277 | + 'CU' => esc_html__('Cuenca', 'give'), |
|
2278 | + 'GI' => esc_html__('Girona', 'give'), |
|
2279 | + 'GR' => esc_html__('Granada', 'give'), |
|
2280 | + 'GU' => esc_html__('Guadalajara', 'give'), |
|
2281 | + 'SS' => esc_html__('Gipuzkoa', 'give'), |
|
2282 | + 'H' => esc_html__('Huelva', 'give'), |
|
2283 | + 'HU' => esc_html__('Huesca', 'give'), |
|
2284 | + 'J' => esc_html__('Jaén', 'give'), |
|
2285 | + 'LO' => esc_html__('La Rioja', 'give'), |
|
2286 | + 'GC' => esc_html__('Las Palmas', 'give'), |
|
2287 | + 'LE' => esc_html__('León', 'give'), |
|
2288 | + 'L' => esc_html__('Lleida', 'give'), |
|
2289 | + 'LU' => esc_html__('Lugo', 'give'), |
|
2290 | + 'M' => esc_html__('Madrid', 'give'), |
|
2291 | + 'MA' => esc_html__('Málaga', 'give'), |
|
2292 | + 'ML' => esc_html__('Melilla', 'give'), |
|
2293 | + 'MU' => esc_html__('Murcia', 'give'), |
|
2294 | + 'NA' => esc_html__('Navarra', 'give'), |
|
2295 | + 'OR' => esc_html__('Ourense', 'give'), |
|
2296 | + 'P' => esc_html__('Palencia', 'give'), |
|
2297 | + 'PO' => esc_html__('Pontevedra', 'give'), |
|
2298 | + 'SA' => esc_html__('Salamanca', 'give'), |
|
2299 | + 'TF' => esc_html__('Santa Cruz de Tenerife', 'give'), |
|
2300 | + 'SG' => esc_html__('Segovia', 'give'), |
|
2301 | + 'SE' => esc_html__('Sevilla', 'give'), |
|
2302 | + 'SO' => esc_html__('Soria', 'give'), |
|
2303 | + 'T' => esc_html__('Tarragona', 'give'), |
|
2304 | + 'TE' => esc_html__('Teruel', 'give'), |
|
2305 | + 'TO' => esc_html__('Toledo', 'give'), |
|
2306 | + 'V' => esc_html__('Valencia', 'give'), |
|
2307 | + 'VA' => esc_html__('Valladolid', 'give'), |
|
2308 | + 'BI' => esc_html__('Bizkaia', 'give'), |
|
2309 | + 'ZA' => esc_html__('Zamora', 'give'), |
|
2310 | + 'Z' => esc_html__('Zaragoza', 'give'), |
|
2311 | 2311 | ); |
2312 | 2312 | |
2313 | - return apply_filters( 'give_spain_states', $states ); |
|
2313 | + return apply_filters('give_spain_states', $states); |
|
2314 | 2314 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -26,26 +26,26 @@ discard block |
||
26 | 26 | function give_test_ajax_works() { |
27 | 27 | |
28 | 28 | // Check if the Airplane Mode plugin is installed. |
29 | - if ( class_exists( 'Airplane_Mode_Core' ) ) { |
|
29 | + if (class_exists('Airplane_Mode_Core')) { |
|
30 | 30 | |
31 | 31 | $airplane = Airplane_Mode_Core::getInstance(); |
32 | 32 | |
33 | - if ( method_exists( $airplane, 'enabled' ) ) { |
|
33 | + if (method_exists($airplane, 'enabled')) { |
|
34 | 34 | |
35 | - if ( $airplane->enabled() ) { |
|
35 | + if ($airplane->enabled()) { |
|
36 | 36 | return true; |
37 | 37 | } |
38 | 38 | } else { |
39 | 39 | |
40 | - if ( 'on' === $airplane->check_status() ) { |
|
40 | + if ('on' === $airplane->check_status()) { |
|
41 | 41 | return true; |
42 | 42 | } |
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | - add_filter( 'block_local_requests', '__return_false' ); |
|
46 | + add_filter('block_local_requests', '__return_false'); |
|
47 | 47 | |
48 | - if ( Give_Cache::get( '_give_ajax_works', true ) ) { |
|
48 | + if (Give_Cache::get('_give_ajax_works', true)) { |
|
49 | 49 | return true; |
50 | 50 | } |
51 | 51 | |
@@ -57,35 +57,35 @@ discard block |
||
57 | 57 | ), |
58 | 58 | ); |
59 | 59 | |
60 | - $ajax = wp_remote_post( give_get_ajax_url(), $params ); |
|
60 | + $ajax = wp_remote_post(give_get_ajax_url(), $params); |
|
61 | 61 | |
62 | 62 | $works = true; |
63 | 63 | |
64 | - if ( is_wp_error( $ajax ) ) { |
|
64 | + if (is_wp_error($ajax)) { |
|
65 | 65 | |
66 | 66 | $works = false; |
67 | 67 | |
68 | 68 | } else { |
69 | 69 | |
70 | - if ( empty( $ajax['response'] ) ) { |
|
70 | + if (empty($ajax['response'])) { |
|
71 | 71 | $works = false; |
72 | 72 | } |
73 | 73 | |
74 | - if ( empty( $ajax['response']['code'] ) || 200 !== (int) $ajax['response']['code'] ) { |
|
74 | + if (empty($ajax['response']['code']) || 200 !== (int) $ajax['response']['code']) { |
|
75 | 75 | $works = false; |
76 | 76 | } |
77 | 77 | |
78 | - if ( empty( $ajax['response']['message'] ) || 'OK' !== $ajax['response']['message'] ) { |
|
78 | + if (empty($ajax['response']['message']) || 'OK' !== $ajax['response']['message']) { |
|
79 | 79 | $works = false; |
80 | 80 | } |
81 | 81 | |
82 | - if ( ! isset( $ajax['body'] ) || 0 !== (int) $ajax['body'] ) { |
|
82 | + if ( ! isset($ajax['body']) || 0 !== (int) $ajax['body']) { |
|
83 | 83 | $works = false; |
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | - if ( $works ) { |
|
88 | - Give_Cache::set( '_give_ajax_works', '1', DAY_IN_SECONDS, true ); |
|
87 | + if ($works) { |
|
88 | + Give_Cache::set('_give_ajax_works', '1', DAY_IN_SECONDS, true); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | return $works; |
@@ -100,16 +100,16 @@ discard block |
||
100 | 100 | * @return string |
101 | 101 | */ |
102 | 102 | function give_get_ajax_url() { |
103 | - $scheme = defined( 'FORCE_SSL_ADMIN' ) && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
103 | + $scheme = defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
104 | 104 | |
105 | 105 | $current_url = give_get_current_page_url(); |
106 | - $ajax_url = admin_url( 'admin-ajax.php', $scheme ); |
|
106 | + $ajax_url = admin_url('admin-ajax.php', $scheme); |
|
107 | 107 | |
108 | - if ( preg_match( '/^https/', $current_url ) && ! preg_match( '/^https/', $ajax_url ) ) { |
|
109 | - $ajax_url = preg_replace( '/^http/', 'https', $ajax_url ); |
|
108 | + if (preg_match('/^https/', $current_url) && ! preg_match('/^https/', $ajax_url)) { |
|
109 | + $ajax_url = preg_replace('/^http/', 'https', $ajax_url); |
|
110 | 110 | } |
111 | 111 | |
112 | - return apply_filters( 'give_ajax_url', $ajax_url ); |
|
112 | + return apply_filters('give_ajax_url', $ajax_url); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -125,12 +125,12 @@ discard block |
||
125 | 125 | * |
126 | 126 | * @since 1.7 |
127 | 127 | */ |
128 | - do_action( 'give_donation_form_login_fields' ); |
|
128 | + do_action('give_donation_form_login_fields'); |
|
129 | 129 | |
130 | 130 | give_die(); |
131 | 131 | } |
132 | 132 | |
133 | -add_action( 'wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields' ); |
|
133 | +add_action('wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields'); |
|
134 | 134 | |
135 | 135 | /** |
136 | 136 | * Load Checkout Fields |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @return void |
141 | 141 | */ |
142 | 142 | function give_load_checkout_fields() { |
143 | - $form_id = isset( $_POST['form_id'] ) ? $_POST['form_id'] : ''; |
|
143 | + $form_id = isset($_POST['form_id']) ? $_POST['form_id'] : ''; |
|
144 | 144 | |
145 | 145 | ob_start(); |
146 | 146 | |
@@ -149,18 +149,18 @@ discard block |
||
149 | 149 | * |
150 | 150 | * @since 1.7 |
151 | 151 | */ |
152 | - do_action( 'give_donation_form_register_login_fields', $form_id ); |
|
152 | + do_action('give_donation_form_register_login_fields', $form_id); |
|
153 | 153 | |
154 | 154 | $fields = ob_get_clean(); |
155 | 155 | |
156 | - wp_send_json( array( |
|
157 | - 'fields' => wp_json_encode( $fields ), |
|
158 | - 'submit' => wp_json_encode( give_get_donation_form_submit_button( $form_id ) ), |
|
159 | - ) ); |
|
156 | + wp_send_json(array( |
|
157 | + 'fields' => wp_json_encode($fields), |
|
158 | + 'submit' => wp_json_encode(give_get_donation_form_submit_button($form_id)), |
|
159 | + )); |
|
160 | 160 | } |
161 | 161 | |
162 | -add_action( 'wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields' ); |
|
163 | -add_action( 'wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields' ); |
|
162 | +add_action('wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields'); |
|
163 | +add_action('wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields'); |
|
164 | 164 | |
165 | 165 | /** |
166 | 166 | * Get Form Title via AJAX (used only in WordPress Admin) |
@@ -170,9 +170,9 @@ discard block |
||
170 | 170 | * @return void |
171 | 171 | */ |
172 | 172 | function give_ajax_get_form_title() { |
173 | - if ( isset( $_POST['form_id'] ) ) { |
|
174 | - $title = get_the_title( $_POST['form_id'] ); |
|
175 | - if ( $title ) { |
|
173 | + if (isset($_POST['form_id'])) { |
|
174 | + $title = get_the_title($_POST['form_id']); |
|
175 | + if ($title) { |
|
176 | 176 | echo $title; |
177 | 177 | } else { |
178 | 178 | echo 'fail'; |
@@ -181,8 +181,8 @@ discard block |
||
181 | 181 | give_die(); |
182 | 182 | } |
183 | 183 | |
184 | -add_action( 'wp_ajax_give_get_form_title', 'give_ajax_get_form_title' ); |
|
185 | -add_action( 'wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title' ); |
|
184 | +add_action('wp_ajax_give_get_form_title', 'give_ajax_get_form_title'); |
|
185 | +add_action('wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title'); |
|
186 | 186 | |
187 | 187 | /** |
188 | 188 | * Retrieve a states drop down |
@@ -196,41 +196,41 @@ discard block |
||
196 | 196 | $show_field = true; |
197 | 197 | $states_require = true; |
198 | 198 | // Get the Country code from the $_POST. |
199 | - $country = sanitize_text_field( $_POST['country'] ); |
|
199 | + $country = sanitize_text_field($_POST['country']); |
|
200 | 200 | |
201 | 201 | // Get the field name from the $_POST. |
202 | - $field_name = sanitize_text_field( $_POST['field_name'] ); |
|
202 | + $field_name = sanitize_text_field($_POST['field_name']); |
|
203 | 203 | |
204 | - $label = __( 'State', 'give' ); |
|
204 | + $label = __('State', 'give'); |
|
205 | 205 | $states_label = give_get_states_label(); |
206 | 206 | |
207 | 207 | $default_state = ''; |
208 | - if ( $country === give_get_country() ) { |
|
208 | + if ($country === give_get_country()) { |
|
209 | 209 | $default_state = give_get_state(); |
210 | 210 | } |
211 | 211 | |
212 | 212 | // Check if $country code exists in the array key for states label. |
213 | - if ( array_key_exists( $country, $states_label ) ) { |
|
214 | - $label = $states_label[ $country ]; |
|
213 | + if (array_key_exists($country, $states_label)) { |
|
214 | + $label = $states_label[$country]; |
|
215 | 215 | } |
216 | 216 | |
217 | - if ( empty( $country ) ) { |
|
217 | + if (empty($country)) { |
|
218 | 218 | $country = give_get_country(); |
219 | 219 | } |
220 | 220 | |
221 | - $states = give_get_states( $country ); |
|
222 | - if ( ! empty( $states ) ) { |
|
221 | + $states = give_get_states($country); |
|
222 | + if ( ! empty($states)) { |
|
223 | 223 | $args = array( |
224 | 224 | 'name' => $field_name, |
225 | 225 | 'id' => $field_name, |
226 | - 'class' => $field_name . ' give-select', |
|
226 | + 'class' => $field_name.' give-select', |
|
227 | 227 | 'options' => $states, |
228 | 228 | 'show_option_all' => false, |
229 | 229 | 'show_option_none' => false, |
230 | 230 | 'placeholder' => $label, |
231 | 231 | 'selected' => $default_state, |
232 | 232 | ); |
233 | - $data = Give()->html->select( $args ); |
|
233 | + $data = Give()->html->select($args); |
|
234 | 234 | $states_found = true; |
235 | 235 | } else { |
236 | 236 | $data = 'nostates'; |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | $no_states_country = give_no_states_country_list(); |
240 | 240 | |
241 | 241 | // Check if $country code exists in the array key. |
242 | - if ( array_key_exists( $country, $no_states_country ) ) { |
|
242 | + if (array_key_exists($country, $no_states_country)) { |
|
243 | 243 | $show_field = false; |
244 | 244 | } |
245 | 245 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | $states_not_required_country_list = give_states_not_required_country_list(); |
248 | 248 | |
249 | 249 | // Check if $country code exists in the array key. |
250 | - if ( array_key_exists( $country, $states_not_required_country_list ) ) { |
|
250 | + if (array_key_exists($country, $states_not_required_country_list)) { |
|
251 | 251 | $states_require = false; |
252 | 252 | } |
253 | 253 | } |
@@ -260,10 +260,10 @@ discard block |
||
260 | 260 | 'data' => $data, |
261 | 261 | 'default_state' => $default_state, |
262 | 262 | ); |
263 | - wp_send_json( $response ); |
|
263 | + wp_send_json($response); |
|
264 | 264 | } |
265 | -add_action( 'wp_ajax_give_get_states', 'give_ajax_get_states_field' ); |
|
266 | -add_action( 'wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field' ); |
|
265 | +add_action('wp_ajax_give_get_states', 'give_ajax_get_states_field'); |
|
266 | +add_action('wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field'); |
|
267 | 267 | |
268 | 268 | /** |
269 | 269 | * Retrieve donation forms via AJAX for chosen dropdown search field. |
@@ -275,19 +275,19 @@ discard block |
||
275 | 275 | function give_ajax_form_search() { |
276 | 276 | global $wpdb; |
277 | 277 | |
278 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
279 | - $excludes = ( isset( $_GET['current_id'] ) ? (array) $_GET['current_id'] : array() ); |
|
278 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
279 | + $excludes = (isset($_GET['current_id']) ? (array) $_GET['current_id'] : array()); |
|
280 | 280 | |
281 | 281 | $results = array(); |
282 | - if ( current_user_can( 'edit_give_forms' ) ) { |
|
283 | - $items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50" ); |
|
282 | + if (current_user_can('edit_give_forms')) { |
|
283 | + $items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50"); |
|
284 | 284 | } else { |
285 | - $items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50" ); |
|
285 | + $items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50"); |
|
286 | 286 | } |
287 | 287 | |
288 | - if ( $items ) { |
|
288 | + if ($items) { |
|
289 | 289 | |
290 | - foreach ( $items as $item ) { |
|
290 | + foreach ($items as $item) { |
|
291 | 291 | |
292 | 292 | $results[] = array( |
293 | 293 | 'id' => $item->ID, |
@@ -298,18 +298,18 @@ discard block |
||
298 | 298 | |
299 | 299 | $items[] = array( |
300 | 300 | 'id' => 0, |
301 | - 'name' => __( 'No forms found.', 'give' ), |
|
301 | + 'name' => __('No forms found.', 'give'), |
|
302 | 302 | ); |
303 | 303 | |
304 | 304 | } |
305 | 305 | |
306 | - echo json_encode( $results ); |
|
306 | + echo json_encode($results); |
|
307 | 307 | |
308 | 308 | give_die(); |
309 | 309 | } |
310 | 310 | |
311 | -add_action( 'wp_ajax_give_form_search', 'give_ajax_form_search' ); |
|
312 | -add_action( 'wp_ajax_nopriv_give_form_search', 'give_ajax_form_search' ); |
|
311 | +add_action('wp_ajax_give_form_search', 'give_ajax_form_search'); |
|
312 | +add_action('wp_ajax_nopriv_give_form_search', 'give_ajax_form_search'); |
|
313 | 313 | |
314 | 314 | /** |
315 | 315 | * Search the donors database via Ajax |
@@ -321,38 +321,38 @@ discard block |
||
321 | 321 | function give_ajax_donor_search() { |
322 | 322 | global $wpdb; |
323 | 323 | |
324 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
324 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
325 | 325 | $results = array(); |
326 | - if ( ! current_user_can( 'view_give_reports' ) ) { |
|
326 | + if ( ! current_user_can('view_give_reports')) { |
|
327 | 327 | $donors = array(); |
328 | 328 | } else { |
329 | - $donors = $wpdb->get_results( "SELECT id,name,email FROM {$wpdb->prefix}give_customers WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50" ); |
|
329 | + $donors = $wpdb->get_results("SELECT id,name,email FROM {$wpdb->prefix}give_customers WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50"); |
|
330 | 330 | } |
331 | 331 | |
332 | - if ( $donors ) { |
|
332 | + if ($donors) { |
|
333 | 333 | |
334 | - foreach ( $donors as $donor ) { |
|
334 | + foreach ($donors as $donor) { |
|
335 | 335 | |
336 | 336 | $results[] = array( |
337 | 337 | 'id' => $donor->id, |
338 | - 'name' => $donor->name . ' (' . $donor->email . ')', |
|
338 | + 'name' => $donor->name.' ('.$donor->email.')', |
|
339 | 339 | ); |
340 | 340 | } |
341 | 341 | } else { |
342 | 342 | |
343 | 343 | $donors[] = array( |
344 | 344 | 'id' => 0, |
345 | - 'name' => __( 'No donors found.', 'give' ), |
|
345 | + 'name' => __('No donors found.', 'give'), |
|
346 | 346 | ); |
347 | 347 | |
348 | 348 | } |
349 | 349 | |
350 | - echo json_encode( $results ); |
|
350 | + echo json_encode($results); |
|
351 | 351 | |
352 | 352 | give_die(); |
353 | 353 | } |
354 | 354 | |
355 | -add_action( 'wp_ajax_give_donor_search', 'give_ajax_donor_search' ); |
|
355 | +add_action('wp_ajax_give_donor_search', 'give_ajax_donor_search'); |
|
356 | 356 | |
357 | 357 | |
358 | 358 | /** |
@@ -364,39 +364,39 @@ discard block |
||
364 | 364 | */ |
365 | 365 | function give_ajax_search_users() { |
366 | 366 | |
367 | - if ( current_user_can( 'manage_give_settings' ) ) { |
|
367 | + if (current_user_can('manage_give_settings')) { |
|
368 | 368 | |
369 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
369 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
370 | 370 | |
371 | 371 | $get_users_args = array( |
372 | 372 | 'number' => 9999, |
373 | - 'search' => $search . '*', |
|
373 | + 'search' => $search.'*', |
|
374 | 374 | ); |
375 | 375 | |
376 | - $get_users_args = apply_filters( 'give_search_users_args', $get_users_args ); |
|
376 | + $get_users_args = apply_filters('give_search_users_args', $get_users_args); |
|
377 | 377 | |
378 | - $found_users = apply_filters( 'give_ajax_found_users', get_users( $get_users_args ), $search ); |
|
378 | + $found_users = apply_filters('give_ajax_found_users', get_users($get_users_args), $search); |
|
379 | 379 | $results = array(); |
380 | 380 | |
381 | - if ( $found_users ) { |
|
381 | + if ($found_users) { |
|
382 | 382 | |
383 | - foreach ( $found_users as $user ) { |
|
383 | + foreach ($found_users as $user) { |
|
384 | 384 | |
385 | 385 | $results[] = array( |
386 | 386 | 'id' => $user->ID, |
387 | - 'name' => esc_html( $user->user_login . ' (' . $user->user_email . ')' ), |
|
387 | + 'name' => esc_html($user->user_login.' ('.$user->user_email.')'), |
|
388 | 388 | ); |
389 | 389 | } |
390 | 390 | } else { |
391 | 391 | |
392 | 392 | $results[] = array( |
393 | 393 | 'id' => 0, |
394 | - 'name' => __( 'No users found.', 'give' ), |
|
394 | + 'name' => __('No users found.', 'give'), |
|
395 | 395 | ); |
396 | 396 | |
397 | 397 | } |
398 | 398 | |
399 | - echo json_encode( $results ); |
|
399 | + echo json_encode($results); |
|
400 | 400 | |
401 | 401 | }// End if(). |
402 | 402 | |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | |
405 | 405 | } |
406 | 406 | |
407 | -add_action( 'wp_ajax_give_user_search', 'give_ajax_search_users' ); |
|
407 | +add_action('wp_ajax_give_user_search', 'give_ajax_search_users'); |
|
408 | 408 | |
409 | 409 | |
410 | 410 | /** |
@@ -416,32 +416,32 @@ discard block |
||
416 | 416 | */ |
417 | 417 | function give_check_for_form_price_variations() { |
418 | 418 | |
419 | - if ( ! current_user_can( 'edit_give_forms', get_current_user_id() ) ) { |
|
420 | - die( '-1' ); |
|
419 | + if ( ! current_user_can('edit_give_forms', get_current_user_id())) { |
|
420 | + die('-1'); |
|
421 | 421 | } |
422 | 422 | |
423 | - $form_id = intval( $_POST['form_id'] ); |
|
424 | - $form = get_post( $form_id ); |
|
423 | + $form_id = intval($_POST['form_id']); |
|
424 | + $form = get_post($form_id); |
|
425 | 425 | |
426 | - if ( 'give_forms' != $form->post_type ) { |
|
427 | - die( '-2' ); |
|
426 | + if ('give_forms' != $form->post_type) { |
|
427 | + die('-2'); |
|
428 | 428 | } |
429 | 429 | |
430 | - if ( give_has_variable_prices( $form_id ) ) { |
|
431 | - $variable_prices = give_get_variable_prices( $form_id ); |
|
430 | + if (give_has_variable_prices($form_id)) { |
|
431 | + $variable_prices = give_get_variable_prices($form_id); |
|
432 | 432 | |
433 | - if ( $variable_prices ) { |
|
433 | + if ($variable_prices) { |
|
434 | 434 | $ajax_response = '<select class="give_price_options_select give-select give-select" name="give_price_option">'; |
435 | 435 | |
436 | - if ( isset( $_POST['all_prices'] ) ) { |
|
437 | - $ajax_response .= '<option value="all">' . esc_html__( 'All Levels', 'give' ) . '</option>'; |
|
436 | + if (isset($_POST['all_prices'])) { |
|
437 | + $ajax_response .= '<option value="all">'.esc_html__('All Levels', 'give').'</option>'; |
|
438 | 438 | } |
439 | 439 | |
440 | - foreach ( $variable_prices as $key => $price ) { |
|
440 | + foreach ($variable_prices as $key => $price) { |
|
441 | 441 | |
442 | - $level_text = ! empty( $price['_give_text'] ) ? esc_html( $price['_give_text'] ) : give_currency_filter( give_format_amount( $price['_give_amount'], array( 'sanitize' => false ) ) ); |
|
442 | + $level_text = ! empty($price['_give_text']) ? esc_html($price['_give_text']) : give_currency_filter(give_format_amount($price['_give_amount'], array('sanitize' => false))); |
|
443 | 443 | |
444 | - $ajax_response .= '<option value="' . esc_attr( $price['_give_id']['level_id'] ) . '">' . $level_text . '</option>'; |
|
444 | + $ajax_response .= '<option value="'.esc_attr($price['_give_id']['level_id']).'">'.$level_text.'</option>'; |
|
445 | 445 | } |
446 | 446 | $ajax_response .= '</select>'; |
447 | 447 | echo $ajax_response; |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | give_die(); |
452 | 452 | } |
453 | 453 | |
454 | -add_action( 'wp_ajax_give_check_for_form_price_variations', 'give_check_for_form_price_variations' ); |
|
454 | +add_action('wp_ajax_give_check_for_form_price_variations', 'give_check_for_form_price_variations'); |
|
455 | 455 | |
456 | 456 | |
457 | 457 | /** |
@@ -462,25 +462,25 @@ discard block |
||
462 | 462 | * @return void |
463 | 463 | */ |
464 | 464 | function give_check_for_form_price_variations_html() { |
465 | - if ( ! current_user_can( 'edit_give_payments', get_current_user_id() ) ) { |
|
465 | + if ( ! current_user_can('edit_give_payments', get_current_user_id())) { |
|
466 | 466 | wp_die(); |
467 | 467 | } |
468 | 468 | |
469 | - $form_id = ! empty( $_POST['form_id'] ) ? intval( $_POST['form_id'] ) : 0; |
|
470 | - $payment_id = ! empty( $_POST['payment_id'] ) ? intval( $_POST['payment_id'] ) : 0; |
|
471 | - $form = get_post( $form_id ); |
|
469 | + $form_id = ! empty($_POST['form_id']) ? intval($_POST['form_id']) : 0; |
|
470 | + $payment_id = ! empty($_POST['payment_id']) ? intval($_POST['payment_id']) : 0; |
|
471 | + $form = get_post($form_id); |
|
472 | 472 | |
473 | - if ( 'give_forms' != $form->post_type ) { |
|
473 | + if ('give_forms' != $form->post_type) { |
|
474 | 474 | wp_die(); |
475 | 475 | } |
476 | 476 | |
477 | - if ( ! give_has_variable_prices( $form_id ) || ! $form_id ) { |
|
478 | - esc_html_e( 'n/a', 'give' ); |
|
477 | + if ( ! give_has_variable_prices($form_id) || ! $form_id) { |
|
478 | + esc_html_e('n/a', 'give'); |
|
479 | 479 | } else { |
480 | 480 | $prices_atts = ''; |
481 | - if ( $variable_prices = give_get_variable_prices( $form_id ) ) { |
|
482 | - foreach ( $variable_prices as $variable_price ) { |
|
483 | - $prices_atts[ $variable_price['_give_id']['level_id'] ] = give_format_amount( $variable_price['_give_amount'], array( 'sanitize' => false ) ); |
|
481 | + if ($variable_prices = give_get_variable_prices($form_id)) { |
|
482 | + foreach ($variable_prices as $variable_price) { |
|
483 | + $prices_atts[$variable_price['_give_id']['level_id']] = give_format_amount($variable_price['_give_amount'], array('sanitize' => false)); |
|
484 | 484 | } |
485 | 485 | } |
486 | 486 | |
@@ -491,12 +491,12 @@ discard block |
||
491 | 491 | 'chosen' => true, |
492 | 492 | 'show_option_all' => '', |
493 | 493 | 'show_option_none' => '', |
494 | - 'select_atts' => 'data-prices=' . esc_attr( json_encode( $prices_atts ) ), |
|
494 | + 'select_atts' => 'data-prices='.esc_attr(json_encode($prices_atts)), |
|
495 | 495 | ); |
496 | 496 | |
497 | - if ( $payment_id ) { |
|
497 | + if ($payment_id) { |
|
498 | 498 | // Payment object. |
499 | - $payment = new Give_Payment( $payment_id ); |
|
499 | + $payment = new Give_Payment($payment_id); |
|
500 | 500 | |
501 | 501 | // Payment meta. |
502 | 502 | $payment_meta = $payment->get_meta(); |
@@ -504,10 +504,10 @@ discard block |
||
504 | 504 | } |
505 | 505 | |
506 | 506 | // Render variable prices select tag html. |
507 | - give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true ); |
|
507 | + give_get_form_variable_price_dropdown($variable_price_dropdown_option, true); |
|
508 | 508 | } |
509 | 509 | |
510 | 510 | give_die(); |
511 | 511 | } |
512 | 512 | |
513 | -add_action( 'wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html' ); |
|
513 | +add_action('wp_ajax_give_check_for_form_price_variations_html', 'give_check_for_form_price_variations_html'); |
@@ -7,23 +7,23 @@ discard block |
||
7 | 7 | |
8 | 8 | global $give_access_form_outputted; |
9 | 9 | $show_form = true; |
10 | -$email = isset( $_POST['give_email'] ) ? $_POST['give_email'] : ''; |
|
10 | +$email = isset($_POST['give_email']) ? $_POST['give_email'] : ''; |
|
11 | 11 | |
12 | 12 | // reCAPTCHA |
13 | -$recaptcha_key = give_get_option( 'recaptcha_key' ); |
|
14 | -$recaptcha_secret = give_get_option( 'recaptcha_secret' ); |
|
15 | -$enable_recaptcha = ( ! empty( $recaptcha_key ) && ! empty( $recaptcha_secret ) ) ? true : false; |
|
13 | +$recaptcha_key = give_get_option('recaptcha_key'); |
|
14 | +$recaptcha_secret = give_get_option('recaptcha_secret'); |
|
15 | +$enable_recaptcha = ( ! empty($recaptcha_key) && ! empty($recaptcha_secret)) ? true : false; |
|
16 | 16 | |
17 | 17 | // Only output the form once. |
18 | -if ( $give_access_form_outputted ) { |
|
18 | +if ($give_access_form_outputted) { |
|
19 | 19 | return; |
20 | 20 | } |
21 | 21 | |
22 | 22 | // Form submission |
23 | -if ( is_email( $email ) && wp_verify_nonce( $_POST['_wpnonce'], 'give' ) ) { |
|
23 | +if (is_email($email) && wp_verify_nonce($_POST['_wpnonce'], 'give')) { |
|
24 | 24 | |
25 | 25 | // Use reCAPTCHA |
26 | - if ( $enable_recaptcha ) { |
|
26 | + if ($enable_recaptcha) { |
|
27 | 27 | |
28 | 28 | $args = array( |
29 | 29 | 'secret' => $recaptcha_secret, |
@@ -31,68 +31,68 @@ discard block |
||
31 | 31 | 'remoteip' => $_POST['give_ip'], |
32 | 32 | ); |
33 | 33 | |
34 | - if ( ! empty( $args['response'] ) ) { |
|
35 | - $request = wp_remote_post( 'https://www.google.com/recaptcha/api/siteverify', array( |
|
34 | + if ( ! empty($args['response'])) { |
|
35 | + $request = wp_remote_post('https://www.google.com/recaptcha/api/siteverify', array( |
|
36 | 36 | 'body' => $args, |
37 | - ) ); |
|
38 | - if ( ! is_wp_error( $request ) || 200 == wp_remote_retrieve_response_code( $request ) ) { |
|
37 | + )); |
|
38 | + if ( ! is_wp_error($request) || 200 == wp_remote_retrieve_response_code($request)) { |
|
39 | 39 | |
40 | - $response = json_decode( $request['body'], true ); |
|
40 | + $response = json_decode($request['body'], true); |
|
41 | 41 | |
42 | 42 | // reCAPTCHA fail |
43 | - if ( ! $response['success'] ) { |
|
44 | - give_set_error( 'give_recaptcha_test_failed', apply_filters( 'give_recaptcha_test_failed_message', esc_html__( 'reCAPTCHA test failed.', 'give' ) ) ); |
|
43 | + if ( ! $response['success']) { |
|
44 | + give_set_error('give_recaptcha_test_failed', apply_filters('give_recaptcha_test_failed_message', esc_html__('reCAPTCHA test failed.', 'give'))); |
|
45 | 45 | } |
46 | 46 | } else { |
47 | 47 | |
48 | 48 | // Connection issue |
49 | - give_set_error( 'give_recaptcha_connection_issue', apply_filters( 'give_recaptcha_connection_issue_message', esc_html__( 'Unable to connect to reCAPTCHA server.', 'give' ) ) ); |
|
49 | + give_set_error('give_recaptcha_connection_issue', apply_filters('give_recaptcha_connection_issue_message', esc_html__('Unable to connect to reCAPTCHA server.', 'give'))); |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | } // End if(). |
53 | 53 | else { |
54 | 54 | |
55 | - give_set_error( 'give_recaptcha_failed', apply_filters( 'give_recaptcha_failed_message', esc_html__( 'It looks like the reCAPTCHA test has failed.', 'give' ) ) ); |
|
55 | + give_set_error('give_recaptcha_failed', apply_filters('give_recaptcha_failed_message', esc_html__('It looks like the reCAPTCHA test has failed.', 'give'))); |
|
56 | 56 | |
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | 60 | // If no errors or only expired token key error - then send email |
61 | - if ( ! give_get_errors() ) { |
|
61 | + if ( ! give_get_errors()) { |
|
62 | 62 | |
63 | - $donor = Give()->donors->get_donor_by( 'email', $email ); |
|
63 | + $donor = Give()->donors->get_donor_by('email', $email); |
|
64 | 64 | |
65 | - if ( isset( $donor->id ) ) { |
|
66 | - if ( Give()->email_access->can_send_email( $donor->id ) ) { |
|
67 | - Give()->email_access->send_email( $donor->id, $email ); |
|
65 | + if (isset($donor->id)) { |
|
66 | + if (Give()->email_access->can_send_email($donor->id)) { |
|
67 | + Give()->email_access->send_email($donor->id, $email); |
|
68 | 68 | $show_form = false; |
69 | 69 | } |
70 | 70 | } else { |
71 | - give_set_error( 'give_no_donor_email_exists', apply_filters( 'give_no_donor_email_exists_message', __( 'It looks like that donor email address does not exist.', 'give' ) ) ); |
|
71 | + give_set_error('give_no_donor_email_exists', apply_filters('give_no_donor_email_exists_message', __('It looks like that donor email address does not exist.', 'give'))); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | }// End if(). |
75 | 75 | |
76 | 76 | // Print any messages & errors |
77 | -Give()->notices->render_frontend_notices( 0 ); |
|
77 | +Give()->notices->render_frontend_notices(0); |
|
78 | 78 | |
79 | 79 | // Show the email login form? |
80 | -if ( $show_form ) { ?> |
|
80 | +if ($show_form) { ?> |
|
81 | 81 | <div class="give-form"> |
82 | 82 | |
83 | 83 | <?php |
84 | - if ( ! give_get_errors() ) { |
|
85 | - Give()->notices->print_frontend_notice( apply_filters( 'give_email_access_message', __( 'Please enter the email address you used for your donation. A verification email containing an access link will be sent to you.', 'give' ) ), true ); |
|
84 | + if ( ! give_get_errors()) { |
|
85 | + Give()->notices->print_frontend_notice(apply_filters('give_email_access_message', __('Please enter the email address you used for your donation. A verification email containing an access link will be sent to you.', 'give')), true); |
|
86 | 86 | } ?> |
87 | 87 | |
88 | 88 | <form method="post" action="" id="give-email-access-form"> |
89 | - <label for="give-email"><?php esc_html__( 'Donation Email:', 'give' ); ?></label> |
|
90 | - <input id="give-email" type="email" name="give_email" value="" placeholder="<?php esc_attr_e( 'Your donation email', 'give' ); ?>" /> |
|
91 | - <input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce( 'give' ); ?>" /> |
|
89 | + <label for="give-email"><?php esc_html__('Donation Email:', 'give'); ?></label> |
|
90 | + <input id="give-email" type="email" name="give_email" value="" placeholder="<?php esc_attr_e('Your donation email', 'give'); ?>" /> |
|
91 | + <input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('give'); ?>" /> |
|
92 | 92 | |
93 | 93 | <?php |
94 | 94 | // Enable reCAPTCHA? |
95 | - if ( $enable_recaptcha ) { ?> |
|
95 | + if ($enable_recaptcha) { ?> |
|
96 | 96 | |
97 | 97 | <script> |
98 | 98 | //IP verify for reCAPTCHA |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | <input type="hidden" name="give_ip" class="give_ip" value="" /> |
111 | 111 | <?php } ?> |
112 | 112 | |
113 | - <input type="submit" class="give-submit" value="<?php esc_attr_e( 'Email access token', 'give' ); ?>" /> |
|
113 | + <input type="submit" class="give-submit" value="<?php esc_attr_e('Email access token', 'give'); ?>" /> |
|
114 | 114 | </form> |
115 | 115 | </div> |
116 | 116 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | Give()->notices->print_frontend_notice( |
122 | 122 | sprintf( |
123 | 123 | /* translators: %s: user email address */ |
124 | - esc_html__( 'An email with an access link has been sent to %s.', 'give' ), |
|
124 | + esc_html__('An email with an access link has been sent to %s.', 'give'), |
|
125 | 125 | |
126 | 126 | ), |
127 | 127 | true, |
@@ -4,18 +4,18 @@ discard block |
||
4 | 4 | */ |
5 | 5 | |
6 | 6 | // User's Donations. |
7 | -if ( is_user_logged_in() ) { |
|
8 | - $donations = give_get_users_donations( get_current_user_id(), 20, true, 'any' ); |
|
9 | -} elseif ( Give()->email_access->token_exists ) { |
|
7 | +if (is_user_logged_in()) { |
|
8 | + $donations = give_get_users_donations(get_current_user_id(), 20, true, 'any'); |
|
9 | +} elseif (Give()->email_access->token_exists) { |
|
10 | 10 | // Email Access Token? |
11 | - $donations = give_get_users_donations( 0, 20, true, 'any' ); |
|
12 | -} elseif ( Give()->session->get_session_expiration() !== false ) { |
|
11 | + $donations = give_get_users_donations(0, 20, true, 'any'); |
|
12 | +} elseif (Give()->session->get_session_expiration() !== false) { |
|
13 | 13 | // Session active? |
14 | - $email = Give()->session->get( 'give_email' ); |
|
15 | - $donations = give_get_users_donations( $email, 20, true, 'any' ); |
|
14 | + $email = Give()->session->get('give_email'); |
|
15 | + $donations = give_get_users_donations($email, 20, true, 'any'); |
|
16 | 16 | } |
17 | 17 | |
18 | -if ( $donations ) : ?> |
|
18 | +if ($donations) : ?> |
|
19 | 19 | <table id="give_user_history" class="give-table"> |
20 | 20 | <thead> |
21 | 21 | <tr class="give-donation-row"> |
@@ -27,12 +27,12 @@ discard block |
||
27 | 27 | * |
28 | 28 | * @since 1.7 |
29 | 29 | */ |
30 | - do_action( 'give_donation_history_header_before' ); |
|
30 | + do_action('give_donation_history_header_before'); |
|
31 | 31 | ?> |
32 | - <th scope="col" class="give-donation-id"><?php esc_html_e( 'ID', 'give' ); ?></th> |
|
33 | - <th scope="col" class="give-donation-date"><?php esc_html_e( 'Date', 'give' ); ?></th> |
|
34 | - <th scope="col" class="give-donation-amount"><?php esc_html_e( 'Amount', 'give' ); ?></th> |
|
35 | - <th scope="col" class="give-donation-details"><?php esc_html_e( 'Details', 'give' ); ?></th> |
|
32 | + <th scope="col" class="give-donation-id"><?php esc_html_e('ID', 'give'); ?></th> |
|
33 | + <th scope="col" class="give-donation-date"><?php esc_html_e('Date', 'give'); ?></th> |
|
34 | + <th scope="col" class="give-donation-amount"><?php esc_html_e('Amount', 'give'); ?></th> |
|
35 | + <th scope="col" class="give-donation-details"><?php esc_html_e('Details', 'give'); ?></th> |
|
36 | 36 | <?php |
37 | 37 | /** |
38 | 38 | * Fires in current user donation history table, after the header row ends. |
@@ -41,13 +41,13 @@ discard block |
||
41 | 41 | * |
42 | 42 | * @since 1.7 |
43 | 43 | */ |
44 | - do_action( 'give_donation_history_header_after' ); |
|
44 | + do_action('give_donation_history_header_after'); |
|
45 | 45 | ?> |
46 | 46 | </tr> |
47 | 47 | </thead> |
48 | - <?php foreach ( $donations as $post ) : |
|
49 | - setup_postdata( $post ); |
|
50 | - $donation_data = give_get_payment_meta( $post->ID ); ?> |
|
48 | + <?php foreach ($donations as $post) : |
|
49 | + setup_postdata($post); |
|
50 | + $donation_data = give_get_payment_meta($post->ID); ?> |
|
51 | 51 | <tr class="give-donation-row"> |
52 | 52 | <?php |
53 | 53 | /** |
@@ -60,19 +60,19 @@ discard block |
||
60 | 60 | * @param int $post_id The ID of the post. |
61 | 61 | * @param mixed $donation_data Payment meta data. |
62 | 62 | */ |
63 | - do_action( 'give_donation_history_row_start', $post->ID, $donation_data ); |
|
63 | + do_action('give_donation_history_row_start', $post->ID, $donation_data); |
|
64 | 64 | ?> |
65 | - <td class="give-donation-id">#<?php echo give_get_payment_number( $post->ID ); ?></td> |
|
66 | - <td class="give-donation-date"><?php echo date_i18n( give_date_format(), strtotime( get_post_field( 'post_date', $post->ID ) ) ); ?></td> |
|
65 | + <td class="give-donation-id">#<?php echo give_get_payment_number($post->ID); ?></td> |
|
66 | + <td class="give-donation-date"><?php echo date_i18n(give_date_format(), strtotime(get_post_field('post_date', $post->ID))); ?></td> |
|
67 | 67 | <td class="give-donation-amount"> |
68 | 68 | <span class="give-donation-amount"> |
69 | 69 | <?php |
70 | - $currency_code = give_get_payment_currency_code( $post->ID ); |
|
70 | + $currency_code = give_get_payment_currency_code($post->ID); |
|
71 | 71 | $donation_amount = give_currency_filter( |
72 | - give_format_amount( give_get_payment_amount( $post->ID ), array( |
|
72 | + give_format_amount(give_get_payment_amount($post->ID), array( |
|
73 | 73 | 'sanitize' => false, |
74 | 74 | 'currency' => $currency_code |
75 | - ) ), |
|
75 | + )), |
|
76 | 76 | $currency_code |
77 | 77 | ); |
78 | 78 | |
@@ -86,20 +86,20 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @return int |
88 | 88 | */ |
89 | - echo apply_filters( 'give_donation_history_row_amount', $donation_amount, $post->ID ); |
|
89 | + echo apply_filters('give_donation_history_row_amount', $donation_amount, $post->ID); |
|
90 | 90 | ?> |
91 | 91 | </span> |
92 | 92 | </td> |
93 | 93 | <td class="give-donation-details"> |
94 | 94 | <?php |
95 | 95 | // Display View Receipt or. |
96 | - if ( 'publish' !== $post->post_status |
|
96 | + if ('publish' !== $post->post_status |
|
97 | 97 | && 'subscription' !== $post->post_status |
98 | 98 | ) : ?> |
99 | - <a href="<?php echo esc_url( add_query_arg( 'payment_key', give_get_payment_key( $post->ID ), give_get_history_page_uri() ) ); ?>"><span |
|
100 | - class="give-donation-status <?php echo $post->post_status; ?>"><?php echo esc_html__( 'View', 'give' ) . ' ' . give_get_payment_status( $post, true ) . ' »'; ?></span></a> |
|
99 | + <a href="<?php echo esc_url(add_query_arg('payment_key', give_get_payment_key($post->ID), give_get_history_page_uri())); ?>"><span |
|
100 | + class="give-donation-status <?php echo $post->post_status; ?>"><?php echo esc_html__('View', 'give').' '.give_get_payment_status($post, true).' »'; ?></span></a> |
|
101 | 101 | <?php else : ?> |
102 | - <a href="<?php echo esc_url( add_query_arg( 'payment_key', give_get_payment_key( $post->ID ), give_get_history_page_uri() ) ); ?>"><?php esc_html_e( 'View Receipt »', 'give' ); ?></a> |
|
102 | + <a href="<?php echo esc_url(add_query_arg('payment_key', give_get_payment_key($post->ID), give_get_history_page_uri())); ?>"><?php esc_html_e('View Receipt »', 'give'); ?></a> |
|
103 | 103 | <?php endif; ?> |
104 | 104 | </td> |
105 | 105 | <?php |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | * @param int $post_id The ID of the post. |
114 | 114 | * @param mixed $donation_data Payment meta data. |
115 | 115 | */ |
116 | - do_action( 'give_donation_history_row_end', $post->ID, $donation_data ); |
|
116 | + do_action('give_donation_history_row_end', $post->ID, $donation_data); |
|
117 | 117 | ?> |
118 | 118 | </tr> |
119 | 119 | <?php endforeach; ?> |
@@ -121,15 +121,15 @@ discard block |
||
121 | 121 | <div id="give-donation-history-pagination" class="give_pagination navigation"> |
122 | 122 | <?php |
123 | 123 | $big = 999999; |
124 | - echo paginate_links( array( |
|
125 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
124 | + echo paginate_links(array( |
|
125 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
126 | 126 | 'format' => '?paged=%#%', |
127 | - 'current' => max( 1, get_query_var( 'paged' ) ), |
|
128 | - 'total' => ceil( give_count_donations_of_donor() / 20 ) // 20 items per page |
|
129 | - ) ); |
|
127 | + 'current' => max(1, get_query_var('paged')), |
|
128 | + 'total' => ceil(give_count_donations_of_donor() / 20) // 20 items per page |
|
129 | + )); |
|
130 | 130 | ?> |
131 | 131 | </div> |
132 | 132 | <?php wp_reset_postdata(); ?> |
133 | 133 | <?php else : ?> |
134 | - <?php Give()->notices->print_frontend_notice( esc_html__( 'It looks like you haven\'t made any donations.', 'give' ), true, 'success' ); ?> |
|
134 | + <?php Give()->notices->print_frontend_notice(esc_html__('It looks like you haven\'t made any donations.', 'give'), true, 'success'); ?> |
|
135 | 135 | <?php endif; |
@@ -6,25 +6,25 @@ discard block |
||
6 | 6 | global $give_receipt_args, $payment; |
7 | 7 | |
8 | 8 | // Validation: Ensure $payment var is set. |
9 | -if ( empty( $payment ) ) { |
|
10 | - $payment = ! empty( $give_receipt_args['id'] ) ? get_post( $give_receipt_args['id'] ) : 0; |
|
9 | +if (empty($payment)) { |
|
10 | + $payment = ! empty($give_receipt_args['id']) ? get_post($give_receipt_args['id']) : 0; |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | // Double-Validation: Check for $payment global. |
14 | -if ( empty( $payment ) ) { |
|
15 | - Give()->notices->print_frontend_notice( __( 'The specified receipt ID appears to be invalid.', 'give' ) ); |
|
14 | +if (empty($payment)) { |
|
15 | + Give()->notices->print_frontend_notice(__('The specified receipt ID appears to be invalid.', 'give')); |
|
16 | 16 | |
17 | 17 | return; |
18 | 18 | } |
19 | 19 | |
20 | 20 | $donation_id = $payment->ID; |
21 | -$form_id = give_get_payment_meta( $donation_id, '_give_payment_form_id', true ); |
|
22 | -$meta = give_get_payment_meta( $donation_id ); |
|
23 | -$donation = give_get_payment_form_title( $meta ); |
|
24 | -$user = give_get_payment_meta_user_info( $donation_id ); |
|
25 | -$email = give_get_payment_user_email( $donation_id ); |
|
21 | +$form_id = give_get_payment_meta($donation_id, '_give_payment_form_id', true); |
|
22 | +$meta = give_get_payment_meta($donation_id); |
|
23 | +$donation = give_get_payment_form_title($meta); |
|
24 | +$user = give_get_payment_meta_user_info($donation_id); |
|
25 | +$email = give_get_payment_user_email($donation_id); |
|
26 | 26 | $status = $payment->post_status; |
27 | -$status_label = give_get_payment_status( $payment, true ); |
|
27 | +$status_label = give_get_payment_status($payment, true); |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Generate Donation Receipt Arguments. |
@@ -35,50 +35,50 @@ discard block |
||
35 | 35 | * @since 1.8.8 |
36 | 36 | */ |
37 | 37 | $give_receipt_args['donation_receipt']['donor'] = array( |
38 | - 'name' => __( 'Donor', 'give' ), |
|
39 | - 'value' => $user['first_name'] . ' ' . $user['last_name'], |
|
38 | + 'name' => __('Donor', 'give'), |
|
39 | + 'value' => $user['first_name'].' '.$user['last_name'], |
|
40 | 40 | 'display' => $give_receipt_args['donor'], |
41 | 41 | ); |
42 | 42 | |
43 | 43 | $give_receipt_args['donation_receipt']['date'] = array( |
44 | - 'name' => __( 'Date', 'give' ), |
|
45 | - 'value' => date_i18n( give_date_format(), strtotime( $meta['date'] ) ), |
|
44 | + 'name' => __('Date', 'give'), |
|
45 | + 'value' => date_i18n(give_date_format(), strtotime($meta['date'])), |
|
46 | 46 | 'display' => $give_receipt_args['date'], |
47 | 47 | ); |
48 | 48 | |
49 | 49 | $give_receipt_args['donation_receipt']['total_donation'] = array( |
50 | - 'name' => __( 'Total Donation', 'give' ), |
|
51 | - 'value' => give_payment_amount( $donation_id ), |
|
50 | + 'name' => __('Total Donation', 'give'), |
|
51 | + 'value' => give_payment_amount($donation_id), |
|
52 | 52 | 'display' => $give_receipt_args['price'], |
53 | 53 | ); |
54 | 54 | |
55 | 55 | $give_receipt_args['donation_receipt']['donation'] = array( |
56 | - 'name' => __( 'Donation', 'give' ), |
|
56 | + 'name' => __('Donation', 'give'), |
|
57 | 57 | 'value' => $donation, |
58 | 58 | 'display' => true, |
59 | 59 | ); |
60 | 60 | |
61 | 61 | $give_receipt_args['donation_receipt']['donation_status'] = array( |
62 | - 'name' => __( 'Donation Status', 'give' ), |
|
63 | - 'value' => esc_attr( $status_label ), |
|
62 | + 'name' => __('Donation Status', 'give'), |
|
63 | + 'value' => esc_attr($status_label), |
|
64 | 64 | 'display' => $give_receipt_args['payment_status'], |
65 | 65 | ); |
66 | 66 | |
67 | 67 | $give_receipt_args['donation_receipt']['donation_id'] = array( |
68 | - 'name' => __( 'Donation ID', 'give' ), |
|
68 | + 'name' => __('Donation ID', 'give'), |
|
69 | 69 | 'value' => $donation_id, |
70 | 70 | 'display' => $give_receipt_args['payment_id'], |
71 | 71 | ); |
72 | 72 | |
73 | 73 | $give_receipt_args['donation_receipt']['payment_key'] = array( |
74 | - 'name' => __( 'Payment Key', 'give' ), |
|
75 | - 'value' => get_post_meta( $donation_id, '_give_payment_purchase_key', true ), |
|
74 | + 'name' => __('Payment Key', 'give'), |
|
75 | + 'value' => get_post_meta($donation_id, '_give_payment_purchase_key', true), |
|
76 | 76 | 'display' => $give_receipt_args['payment_key'], |
77 | 77 | ); |
78 | 78 | |
79 | 79 | $give_receipt_args['donation_receipt']['payment_method'] = array( |
80 | - 'name' => __( 'Payment Method', 'give' ), |
|
81 | - 'value' => give_get_gateway_checkout_label( give_get_payment_gateway( $donation_id ) ), |
|
80 | + 'name' => __('Payment Method', 'give'), |
|
81 | + 'value' => give_get_gateway_checkout_label(give_get_payment_gateway($donation_id)), |
|
82 | 82 | 'display' => $give_receipt_args['payment_method'], |
83 | 83 | ); |
84 | 84 | |
@@ -93,10 +93,10 @@ discard block |
||
93 | 93 | * |
94 | 94 | * @since 1.8.8 |
95 | 95 | */ |
96 | -$give_receipt_args['donation_receipt'] = apply_filters( 'give_donation_receipt_args', $give_receipt_args['donation_receipt'], $donation_id, $form_id ); |
|
96 | +$give_receipt_args['donation_receipt'] = apply_filters('give_donation_receipt_args', $give_receipt_args['donation_receipt'], $donation_id, $form_id); |
|
97 | 97 | |
98 | 98 | // When the donation were made through offline donation, We won't show receipt and payment status though. |
99 | -if ( 'offline' === give_get_payment_gateway( $payment->ID ) && 'pending' === $status ) { |
|
99 | +if ('offline' === give_get_payment_gateway($payment->ID) && 'pending' === $status) { |
|
100 | 100 | |
101 | 101 | /** |
102 | 102 | * Before the offline donation receipt content starts. |
@@ -106,13 +106,13 @@ discard block |
||
106 | 106 | * @param Give_Payment $payment Donation payment object. |
107 | 107 | * @param array $give_receipt_args Receipt Arguments. |
108 | 108 | */ |
109 | - do_action( 'give_receipt_before_offline_payment', $payment, $give_receipt_args ); |
|
109 | + do_action('give_receipt_before_offline_payment', $payment, $give_receipt_args); |
|
110 | 110 | ?> |
111 | - <h2><?php echo apply_filters( 'give_receipt_offline_payment_heading', __( 'Your Donation is Almost Complete!', 'give' ) ); ?></h2> |
|
112 | - <div id="give_donation_receipt" class="<?php echo esc_attr( apply_filters( 'give_receipt_offline_payment_classes', 'give_receipt_offline_payment' ) ); ?>"> |
|
111 | + <h2><?php echo apply_filters('give_receipt_offline_payment_heading', __('Your Donation is Almost Complete!', 'give')); ?></h2> |
|
112 | + <div id="give_donation_receipt" class="<?php echo esc_attr(apply_filters('give_receipt_offline_payment_classes', 'give_receipt_offline_payment')); ?>"> |
|
113 | 113 | <?php |
114 | 114 | // Instruction for offline donation. |
115 | - $offline_instruction = give_get_offline_payment_instruction( $form_id, true ); |
|
115 | + $offline_instruction = give_get_offline_payment_instruction($form_id, true); |
|
116 | 116 | |
117 | 117 | /** |
118 | 118 | * Instruction for the offline donation. |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @param Give_Payment $payment Payment object. |
124 | 124 | * @param integer $form_id Donation form id. |
125 | 125 | */ |
126 | - echo apply_filters( 'give_receipt_offline_payment_instruction', $offline_instruction, $payment, $form_id ); |
|
126 | + echo apply_filters('give_receipt_offline_payment_instruction', $offline_instruction, $payment, $form_id); |
|
127 | 127 | ?> |
128 | 128 | </div> |
129 | 129 | <?php |
@@ -135,52 +135,52 @@ discard block |
||
135 | 135 | * @param Give_Payment $payment Donation payment object. |
136 | 136 | * @param array $give_receipt_args Receipt Arguments. |
137 | 137 | */ |
138 | - do_action( 'give_receipt_after_offline_payment', $payment, $give_receipt_args ); |
|
138 | + do_action('give_receipt_after_offline_payment', $payment, $give_receipt_args); |
|
139 | 139 | |
140 | 140 | return; |
141 | 141 | } |
142 | 142 | |
143 | 143 | // Show payment status notice based on shortcode attribute. |
144 | -if ( filter_var( $give_receipt_args['status_notice'], FILTER_VALIDATE_BOOLEAN ) ) { |
|
144 | +if (filter_var($give_receipt_args['status_notice'], FILTER_VALIDATE_BOOLEAN)) { |
|
145 | 145 | $notice_message = ''; |
146 | 146 | $notice_type = 'warning'; |
147 | 147 | |
148 | - switch ( $status ) { |
|
148 | + switch ($status) { |
|
149 | 149 | case 'publish': |
150 | - $notice_message = __( 'Payment Complete: Thank you for your donation.', 'give' ); |
|
150 | + $notice_message = __('Payment Complete: Thank you for your donation.', 'give'); |
|
151 | 151 | $notice_type = 'success'; |
152 | 152 | break; |
153 | 153 | case 'pending': |
154 | - $notice_message = __( 'Payment Pending: Your donation is currently processing.', 'give' ); |
|
154 | + $notice_message = __('Payment Pending: Your donation is currently processing.', 'give'); |
|
155 | 155 | $notice_type = 'warning'; |
156 | 156 | break; |
157 | 157 | case 'refunded': |
158 | - $notice_message = __( 'Payment Refunded: Your donation has been refunded.', 'give' ); |
|
158 | + $notice_message = __('Payment Refunded: Your donation has been refunded.', 'give'); |
|
159 | 159 | $notice_type = 'warning'; |
160 | 160 | break; |
161 | 161 | case 'preapproval': |
162 | - $notice_message = __( 'Payment Preapproved: Thank you for your donation.', 'give' ); |
|
162 | + $notice_message = __('Payment Preapproved: Thank you for your donation.', 'give'); |
|
163 | 163 | $notice_type = 'warning'; |
164 | 164 | break; |
165 | 165 | case 'failed': |
166 | - $notice_message = __( 'Payment Failed: Please contact the site owner for assistance.', 'give' ); |
|
166 | + $notice_message = __('Payment Failed: Please contact the site owner for assistance.', 'give'); |
|
167 | 167 | $notice_type = 'error'; |
168 | 168 | break; |
169 | 169 | case 'cancelled': |
170 | - $notice_message = __( 'Payment Cancelled: Your donation has been cancelled.', 'give' ); |
|
170 | + $notice_message = __('Payment Cancelled: Your donation has been cancelled.', 'give'); |
|
171 | 171 | $notice_type = 'error'; |
172 | 172 | break; |
173 | 173 | case 'abandoned': |
174 | - $notice_message = __( 'Payment Abandoned: This donation has not been completed.', 'give' ); |
|
174 | + $notice_message = __('Payment Abandoned: This donation has not been completed.', 'give'); |
|
175 | 175 | $notice_type = 'error'; |
176 | 176 | break; |
177 | 177 | case 'revoked': |
178 | - $notice_message = __( 'Payment Revoked: Please contact the site owner for assistance.', 'give' ); |
|
178 | + $notice_message = __('Payment Revoked: Please contact the site owner for assistance.', 'give'); |
|
179 | 179 | $notice_type = 'error'; |
180 | 180 | break; |
181 | 181 | } |
182 | 182 | |
183 | - if ( ! empty( $notice_message ) ) { |
|
183 | + if ( ! empty($notice_message)) { |
|
184 | 184 | /** |
185 | 185 | * Filters payment status notice for receipts. |
186 | 186 | * |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | * @param string $status Payment status. |
196 | 196 | * @param array $meta Array of meta data related to the payment. |
197 | 197 | */ |
198 | - echo apply_filters( 'give_receipt_status_notice', Give()->notices->print_frontend_notice( $notice_message, false, $notice_type ), $id, $status, $meta ); |
|
198 | + echo apply_filters('give_receipt_status_notice', Give()->notices->print_frontend_notice($notice_message, false, $notice_type), $id, $status, $meta); |
|
199 | 199 | } |
200 | 200 | }// End if(). |
201 | 201 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | * @param object $payment The payment object. |
210 | 210 | * @param array $give_receipt_args Receipt_argument. |
211 | 211 | */ |
212 | -do_action( 'give_payment_receipt_before_table', $payment, $give_receipt_args ); |
|
212 | +do_action('give_payment_receipt_before_table', $payment, $give_receipt_args); |
|
213 | 213 | ?> |
214 | 214 | |
215 | 215 | <table id="give_donation_receipt" class="give-table"> |
@@ -225,11 +225,11 @@ discard block |
||
225 | 225 | * @param object $payment The payment object. |
226 | 226 | * @param array $give_receipt_args Receipt_argument. |
227 | 227 | */ |
228 | - do_action( 'give_payment_receipt_header_before', $payment, $give_receipt_args ); |
|
228 | + do_action('give_payment_receipt_header_before', $payment, $give_receipt_args); |
|
229 | 229 | ?> |
230 | 230 | <tr> |
231 | 231 | <th scope="colgroup" colspan="2"> |
232 | - <span class="give-receipt-thead-text"><?php esc_html_e( 'Donation Receipt', 'give' ) ?></span> |
|
232 | + <span class="give-receipt-thead-text"><?php esc_html_e('Donation Receipt', 'give') ?></span> |
|
233 | 233 | </th> |
234 | 234 | </tr> |
235 | 235 | <?php |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | * @param object $payment The payment object. |
244 | 244 | * @param array $give_receipt_args Receipt_argument. |
245 | 245 | */ |
246 | - do_action( 'give_payment_receipt_header_after', $payment, $give_receipt_args ); |
|
246 | + do_action('give_payment_receipt_header_after', $payment, $give_receipt_args); |
|
247 | 247 | ?> |
248 | 248 | </thead> |
249 | 249 | |
@@ -259,11 +259,11 @@ discard block |
||
259 | 259 | * @param object $payment The payment object. |
260 | 260 | * @param array $give_receipt_args Receipt_argument. |
261 | 261 | */ |
262 | - do_action( 'give_payment_receipt_before', $payment, $give_receipt_args ); |
|
262 | + do_action('give_payment_receipt_before', $payment, $give_receipt_args); |
|
263 | 263 | ?> |
264 | 264 | |
265 | - <?php foreach ( $give_receipt_args['donation_receipt'] as $receipt_item ) { ?> |
|
266 | - <?php if ( filter_var( $receipt_item['display'], FILTER_VALIDATE_BOOLEAN ) ) : ?> |
|
265 | + <?php foreach ($give_receipt_args['donation_receipt'] as $receipt_item) { ?> |
|
266 | + <?php if (filter_var($receipt_item['display'], FILTER_VALIDATE_BOOLEAN)) : ?> |
|
267 | 267 | <tr> |
268 | 268 | <td scope="row"><strong><?php echo $receipt_item['name']; ?></strong></td> |
269 | 269 | <td><?php echo $receipt_item['value']; ?></td> |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | * @param object $payment The payment object. |
283 | 283 | * @param array $give_receipt_args Receipt_argument. |
284 | 284 | */ |
285 | - do_action( 'give_payment_receipt_after', $payment, $give_receipt_args ); |
|
285 | + do_action('give_payment_receipt_after', $payment, $give_receipt_args); |
|
286 | 286 | ?> |
287 | 287 | </tbody> |
288 | 288 | </table> |
@@ -298,5 +298,5 @@ discard block |
||
298 | 298 | * @param object $payment The payment object. |
299 | 299 | * @param array $give_receipt_args Receipt_argument. |
300 | 300 | */ |
301 | -do_action( 'give_payment_receipt_after_table', $payment, $give_receipt_args ); |
|
301 | +do_action('give_payment_receipt_after_table', $payment, $give_receipt_args); |
|
302 | 302 | ?> |