@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * GetPaid_Invoice_Data_Store class file. |
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 7 | +if (!defined('ABSPATH')) { |
|
| 8 | 8 | exit; |
| 9 | 9 | } |
| 10 | 10 | |
@@ -114,61 +114,61 @@ discard block |
||
| 114 | 114 | * |
| 115 | 115 | * @param WPInv_Invoice $invoice Invoice object. |
| 116 | 116 | */ |
| 117 | - public function create( &$invoice ) { |
|
| 118 | - $invoice->set_version( WPINV_VERSION ); |
|
| 119 | - $invoice->set_date_created( current_time( 'mysql' ) ); |
|
| 117 | + public function create(&$invoice) { |
|
| 118 | + $invoice->set_version(WPINV_VERSION); |
|
| 119 | + $invoice->set_date_created(current_time('mysql')); |
|
| 120 | 120 | |
| 121 | 121 | // Create a new post. |
| 122 | 122 | $id = wp_insert_post( |
| 123 | 123 | apply_filters( |
| 124 | 124 | 'getpaid_new_invoice_data', |
| 125 | 125 | array( |
| 126 | - 'post_date' => $invoice->get_date_created( 'edit' ), |
|
| 127 | - 'post_type' => $invoice->get_post_type( 'edit' ), |
|
| 128 | - 'post_status' => $this->get_post_status( $invoice ), |
|
| 126 | + 'post_date' => $invoice->get_date_created('edit'), |
|
| 127 | + 'post_type' => $invoice->get_post_type('edit'), |
|
| 128 | + 'post_status' => $this->get_post_status($invoice), |
|
| 129 | 129 | 'ping_status' => 'closed', |
| 130 | - 'post_author' => $invoice->get_user_id( 'edit' ), |
|
| 131 | - 'post_title' => $invoice->get_title( 'edit' ), |
|
| 132 | - 'post_excerpt' => $invoice->get_description( 'edit' ), |
|
| 133 | - 'post_parent' => $invoice->get_parent_id( 'edit' ), |
|
| 130 | + 'post_author' => $invoice->get_user_id('edit'), |
|
| 131 | + 'post_title' => $invoice->get_title('edit'), |
|
| 132 | + 'post_excerpt' => $invoice->get_description('edit'), |
|
| 133 | + 'post_parent' => $invoice->get_parent_id('edit'), |
|
| 134 | 134 | ) |
| 135 | 135 | ), |
| 136 | 136 | true |
| 137 | 137 | ); |
| 138 | 138 | |
| 139 | - if ( $id && ! is_wp_error( $id ) ) { |
|
| 139 | + if ($id && !is_wp_error($id)) { |
|
| 140 | 140 | |
| 141 | 141 | // Update the new id and regenerate a title. |
| 142 | - $invoice->set_id( $id ); |
|
| 142 | + $invoice->set_id($id); |
|
| 143 | 143 | |
| 144 | 144 | $invoice->maybe_set_number(); |
| 145 | 145 | |
| 146 | 146 | wp_update_post( |
| 147 | 147 | array( |
| 148 | 148 | 'ID' => $invoice->get_id(), |
| 149 | - 'post_title' => $invoice->get_number( 'edit' ), |
|
| 150 | - 'post_name' => $invoice->get_path( 'edit' ), |
|
| 149 | + 'post_title' => $invoice->get_number('edit'), |
|
| 150 | + 'post_name' => $invoice->get_path('edit'), |
|
| 151 | 151 | ) |
| 152 | 152 | ); |
| 153 | 153 | |
| 154 | 154 | // Save special fields and items. |
| 155 | - $this->save_special_fields( $invoice ); |
|
| 156 | - $this->save_items( $invoice ); |
|
| 155 | + $this->save_special_fields($invoice); |
|
| 156 | + $this->save_items($invoice); |
|
| 157 | 157 | |
| 158 | 158 | // Update meta data. |
| 159 | - $this->update_post_meta( $invoice ); |
|
| 159 | + $this->update_post_meta($invoice); |
|
| 160 | 160 | $invoice->save_meta_data(); |
| 161 | 161 | |
| 162 | 162 | // Apply changes. |
| 163 | 163 | $invoice->apply_changes(); |
| 164 | - $this->clear_caches( $invoice ); |
|
| 164 | + $this->clear_caches($invoice); |
|
| 165 | 165 | |
| 166 | 166 | // Fires after a new invoice is created. |
| 167 | - do_action( 'getpaid_new_invoice', $invoice ); |
|
| 167 | + do_action('getpaid_new_invoice', $invoice); |
|
| 168 | 168 | return true; |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - if ( is_wp_error( $id ) ) { |
|
| 171 | + if (is_wp_error($id)) { |
|
| 172 | 172 | $invoice->last_error = $id->get_error_message(); |
| 173 | 173 | } |
| 174 | 174 | |
@@ -181,14 +181,14 @@ discard block |
||
| 181 | 181 | * @param WPInv_Invoice $invoice Invoice object. |
| 182 | 182 | * |
| 183 | 183 | */ |
| 184 | - public function read( &$invoice ) { |
|
| 184 | + public function read(&$invoice) { |
|
| 185 | 185 | |
| 186 | 186 | $invoice->set_defaults(); |
| 187 | - $invoice_object = get_post( $invoice->get_id() ); |
|
| 187 | + $invoice_object = get_post($invoice->get_id()); |
|
| 188 | 188 | |
| 189 | - if ( ! $invoice->get_id() || ! $invoice_object || ! getpaid_is_invoice_post_type( $invoice_object->post_type ) ) { |
|
| 190 | - $invoice->last_error = __( 'Invalid invoice.', 'invoicing' ); |
|
| 191 | - $invoice->set_id( 0 ); |
|
| 189 | + if (!$invoice->get_id() || !$invoice_object || !getpaid_is_invoice_post_type($invoice_object->post_type)) { |
|
| 190 | + $invoice->last_error = __('Invalid invoice.', 'invoicing'); |
|
| 191 | + $invoice->set_id(0); |
|
| 192 | 192 | return false; |
| 193 | 193 | } |
| 194 | 194 | |
@@ -206,14 +206,14 @@ discard block |
||
| 206 | 206 | ) |
| 207 | 207 | ); |
| 208 | 208 | |
| 209 | - $invoice->set_type( $invoice_object->post_type ); |
|
| 209 | + $invoice->set_type($invoice_object->post_type); |
|
| 210 | 210 | |
| 211 | - $this->read_object_data( $invoice, $invoice_object ); |
|
| 212 | - $this->add_special_fields( $invoice ); |
|
| 213 | - $this->add_items( $invoice ); |
|
| 211 | + $this->read_object_data($invoice, $invoice_object); |
|
| 212 | + $this->add_special_fields($invoice); |
|
| 213 | + $this->add_items($invoice); |
|
| 214 | 214 | $invoice->read_meta_data(); |
| 215 | - $invoice->set_object_read( true ); |
|
| 216 | - do_action( 'getpaid_read_invoice', $invoice ); |
|
| 215 | + $invoice->set_object_read(true); |
|
| 216 | + do_action('getpaid_read_invoice', $invoice); |
|
| 217 | 217 | |
| 218 | 218 | } |
| 219 | 219 | |
@@ -222,35 +222,35 @@ discard block |
||
| 222 | 222 | * |
| 223 | 223 | * @param WPInv_Invoice $invoice Invoice object. |
| 224 | 224 | */ |
| 225 | - public function update( &$invoice ) { |
|
| 225 | + public function update(&$invoice) { |
|
| 226 | 226 | $invoice->save_meta_data(); |
| 227 | - $invoice->set_version( WPINV_VERSION ); |
|
| 227 | + $invoice->set_version(WPINV_VERSION); |
|
| 228 | 228 | |
| 229 | - if ( null === $invoice->get_date_created( 'edit' ) ) { |
|
| 230 | - $invoice->set_date_created( current_time( 'mysql' ) ); |
|
| 229 | + if (null === $invoice->get_date_created('edit')) { |
|
| 230 | + $invoice->set_date_created(current_time('mysql')); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | // Ensure both the key and number are set. |
| 234 | 234 | $invoice->get_path(); |
| 235 | 235 | |
| 236 | 236 | // Grab the current status so we can compare. |
| 237 | - $previous_status = get_post_status( $invoice->get_id() ); |
|
| 237 | + $previous_status = get_post_status($invoice->get_id()); |
|
| 238 | 238 | |
| 239 | 239 | $changes = $invoice->get_changes(); |
| 240 | 240 | |
| 241 | 241 | // Only update the post when the post data changes. |
| 242 | - if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'description', 'parent_id', 'post_excerpt', 'path' ), array_keys( $changes ) ) ) { |
|
| 242 | + if (array_intersect(array('date_created', 'date_modified', 'status', 'name', 'author', 'description', 'parent_id', 'post_excerpt', 'path'), array_keys($changes))) { |
|
| 243 | 243 | $post_data = array( |
| 244 | - 'post_date' => $invoice->get_date_created( 'edit' ), |
|
| 245 | - 'post_date_gmt' => $invoice->get_date_created_gmt( 'edit' ), |
|
| 246 | - 'post_status' => $invoice->get_status( 'edit' ), |
|
| 247 | - 'post_title' => $invoice->get_name( 'edit' ), |
|
| 248 | - 'post_author' => $invoice->get_user_id( 'edit' ), |
|
| 249 | - 'post_modified' => $invoice->get_date_modified( 'edit' ), |
|
| 250 | - 'post_excerpt' => $invoice->get_description( 'edit' ), |
|
| 251 | - 'post_parent' => $invoice->get_parent_id( 'edit' ), |
|
| 252 | - 'post_name' => $invoice->get_path( 'edit' ), |
|
| 253 | - 'post_type' => $invoice->get_post_type( 'edit' ), |
|
| 244 | + 'post_date' => $invoice->get_date_created('edit'), |
|
| 245 | + 'post_date_gmt' => $invoice->get_date_created_gmt('edit'), |
|
| 246 | + 'post_status' => $invoice->get_status('edit'), |
|
| 247 | + 'post_title' => $invoice->get_name('edit'), |
|
| 248 | + 'post_author' => $invoice->get_user_id('edit'), |
|
| 249 | + 'post_modified' => $invoice->get_date_modified('edit'), |
|
| 250 | + 'post_excerpt' => $invoice->get_description('edit'), |
|
| 251 | + 'post_parent' => $invoice->get_parent_id('edit'), |
|
| 252 | + 'post_name' => $invoice->get_path('edit'), |
|
| 253 | + 'post_type' => $invoice->get_post_type('edit'), |
|
| 254 | 254 | ); |
| 255 | 255 | |
| 256 | 256 | /** |
@@ -261,35 +261,35 @@ discard block |
||
| 261 | 261 | * This ensures hooks are fired by either WP itself (admin screen save), |
| 262 | 262 | * or an update purely from CRUD. |
| 263 | 263 | */ |
| 264 | - if ( doing_action( 'save_post' ) ) { |
|
| 265 | - $GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $invoice->get_id() ) ); |
|
| 266 | - clean_post_cache( $invoice->get_id() ); |
|
| 264 | + if (doing_action('save_post')) { |
|
| 265 | + $GLOBALS['wpdb']->update($GLOBALS['wpdb']->posts, $post_data, array('ID' => $invoice->get_id())); |
|
| 266 | + clean_post_cache($invoice->get_id()); |
|
| 267 | 267 | } else { |
| 268 | - wp_update_post( array_merge( array( 'ID' => $invoice->get_id() ), $post_data ) ); |
|
| 268 | + wp_update_post(array_merge(array('ID' => $invoice->get_id()), $post_data)); |
|
| 269 | 269 | } |
| 270 | - $invoice->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook. |
|
| 270 | + $invoice->read_meta_data(true); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook. |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | // Update meta data. |
| 274 | - $this->update_post_meta( $invoice ); |
|
| 274 | + $this->update_post_meta($invoice); |
|
| 275 | 275 | |
| 276 | 276 | // Save special fields and items. |
| 277 | - $this->save_special_fields( $invoice ); |
|
| 278 | - $this->save_items( $invoice ); |
|
| 277 | + $this->save_special_fields($invoice); |
|
| 278 | + $this->save_items($invoice); |
|
| 279 | 279 | |
| 280 | 280 | // Apply the changes. |
| 281 | 281 | $invoice->apply_changes(); |
| 282 | 282 | |
| 283 | 283 | // Clear caches. |
| 284 | - $this->clear_caches( $invoice ); |
|
| 284 | + $this->clear_caches($invoice); |
|
| 285 | 285 | |
| 286 | 286 | // Fire a hook depending on the status - this should be considered a creation if it was previously draft status. |
| 287 | - $new_status = $invoice->get_status( 'edit' ); |
|
| 287 | + $new_status = $invoice->get_status('edit'); |
|
| 288 | 288 | |
| 289 | - if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) { |
|
| 290 | - do_action( 'getpaid_new_invoice', $invoice ); |
|
| 289 | + if ($new_status !== $previous_status && in_array($previous_status, array('new', 'auto-draft', 'draft'), true)) { |
|
| 290 | + do_action('getpaid_new_invoice', $invoice); |
|
| 291 | 291 | } else { |
| 292 | - do_action( 'getpaid_update_invoice', $invoice ); |
|
| 292 | + do_action('getpaid_update_invoice', $invoice); |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | } |
@@ -305,45 +305,45 @@ discard block |
||
| 305 | 305 | * |
| 306 | 306 | * @param WPInv_Invoice $invoice Invoice object. |
| 307 | 307 | */ |
| 308 | - public function add_special_fields( &$invoice ) { |
|
| 308 | + public function add_special_fields(&$invoice) { |
|
| 309 | 309 | global $wpdb; |
| 310 | 310 | |
| 311 | 311 | // Maybe retrieve from the cache. |
| 312 | - $data = wp_cache_get( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 312 | + $data = wp_cache_get($invoice->get_id(), 'getpaid_invoice_special_fields'); |
|
| 313 | 313 | |
| 314 | 314 | // If not found, retrieve from the db. |
| 315 | - if ( false === $data ) { |
|
| 315 | + if (false === $data) { |
|
| 316 | 316 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 317 | 317 | |
| 318 | 318 | $data = $wpdb->get_row( |
| 319 | - $wpdb->prepare( "SELECT * FROM $table WHERE `post_id`=%d LIMIT 1", $invoice->get_id() ), |
|
| 319 | + $wpdb->prepare("SELECT * FROM $table WHERE `post_id`=%d LIMIT 1", $invoice->get_id()), |
|
| 320 | 320 | ARRAY_A |
| 321 | 321 | ); |
| 322 | 322 | |
| 323 | 323 | // Update the cache with our data |
| 324 | - wp_cache_set( $invoice->get_id(), $data, 'getpaid_invoice_special_fields' ); |
|
| 324 | + wp_cache_set($invoice->get_id(), $data, 'getpaid_invoice_special_fields'); |
|
| 325 | 325 | |
| 326 | 326 | } |
| 327 | 327 | |
| 328 | 328 | // Abort if the data does not exist. |
| 329 | - if ( empty( $data ) ) { |
|
| 330 | - $invoice->set_object_read( true ); |
|
| 331 | - $invoice->set_props( wpinv_get_user_address( $invoice->get_user_id() ) ); |
|
| 329 | + if (empty($data)) { |
|
| 330 | + $invoice->set_object_read(true); |
|
| 331 | + $invoice->set_props(wpinv_get_user_address($invoice->get_user_id())); |
|
| 332 | 332 | return; |
| 333 | 333 | } |
| 334 | 334 | |
| 335 | 335 | $props = array(); |
| 336 | 336 | |
| 337 | - foreach ( $this->database_fields_to_props as $db_field => $prop ) { |
|
| 337 | + foreach ($this->database_fields_to_props as $db_field => $prop) { |
|
| 338 | 338 | |
| 339 | - if ( $db_field == 'post_id' ) { |
|
| 339 | + if ($db_field == 'post_id') { |
|
| 340 | 340 | continue; |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | - $props[ $prop ] = $data[ $db_field ]; |
|
| 343 | + $props[$prop] = $data[$db_field]; |
|
| 344 | 344 | } |
| 345 | 345 | |
| 346 | - $invoice->set_props( $props ); |
|
| 346 | + $invoice->set_props($props); |
|
| 347 | 347 | |
| 348 | 348 | } |
| 349 | 349 | |
@@ -354,14 +354,14 @@ discard block |
||
| 354 | 354 | * @param WPInv_Invoice $invoice The Invoice object. |
| 355 | 355 | * @return array A mapping of field keys => prop names, filtered by ones that should be updated. |
| 356 | 356 | */ |
| 357 | - protected function get_special_fields_to_update( $invoice ) { |
|
| 357 | + protected function get_special_fields_to_update($invoice) { |
|
| 358 | 358 | $fields_to_update = array(); |
| 359 | - $changed_props = $invoice->get_changes(); |
|
| 359 | + $changed_props = $invoice->get_changes(); |
|
| 360 | 360 | |
| 361 | 361 | // Props should be updated if they are a part of the $changed array or don't exist yet. |
| 362 | - foreach ( $this->database_fields_to_props as $database_field => $prop ) { |
|
| 363 | - if ( array_key_exists( $prop, $changed_props ) ) { |
|
| 364 | - $fields_to_update[ $database_field ] = $prop; |
|
| 362 | + foreach ($this->database_fields_to_props as $database_field => $prop) { |
|
| 363 | + if (array_key_exists($prop, $changed_props)) { |
|
| 364 | + $fields_to_update[$database_field] = $prop; |
|
| 365 | 365 | } |
| 366 | 366 | } |
| 367 | 367 | |
@@ -374,25 +374,25 @@ discard block |
||
| 374 | 374 | * @param WPInv_Invoice $invoice WPInv_Invoice object. |
| 375 | 375 | * @since 1.0.19 |
| 376 | 376 | */ |
| 377 | - protected function update_special_fields( &$invoice ) { |
|
| 377 | + protected function update_special_fields(&$invoice) { |
|
| 378 | 378 | global $wpdb; |
| 379 | 379 | |
| 380 | 380 | $updated_props = array(); |
| 381 | - $fields_to_update = $this->get_special_fields_to_update( $invoice ); |
|
| 381 | + $fields_to_update = $this->get_special_fields_to_update($invoice); |
|
| 382 | 382 | |
| 383 | - foreach ( $fields_to_update as $database_field => $prop ) { |
|
| 384 | - $value = $invoice->{"get_$prop"}( 'edit' ); |
|
| 385 | - $value = is_string( $value ) ? wp_slash( $value ) : $value; |
|
| 386 | - $value = is_bool( $value ) ? (int) $value : $value; |
|
| 387 | - $updated_props[ $database_field ] = maybe_serialize( $value ); |
|
| 383 | + foreach ($fields_to_update as $database_field => $prop) { |
|
| 384 | + $value = $invoice->{"get_$prop"}('edit'); |
|
| 385 | + $value = is_string($value) ? wp_slash($value) : $value; |
|
| 386 | + $value = is_bool($value) ? (int) $value : $value; |
|
| 387 | + $updated_props[$database_field] = maybe_serialize($value); |
|
| 388 | 388 | } |
| 389 | 389 | |
| 390 | - if ( ! empty( $updated_props ) ) { |
|
| 390 | + if (!empty($updated_props)) { |
|
| 391 | 391 | |
| 392 | 392 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 393 | - $wpdb->update( $table, $updated_props, array( 'post_id' => $invoice->get_id() ) ); |
|
| 394 | - wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 395 | - do_action( 'getpaid_invoice_update_database_fields', $invoice, $updated_props ); |
|
| 393 | + $wpdb->update($table, $updated_props, array('post_id' => $invoice->get_id())); |
|
| 394 | + wp_cache_delete($invoice->get_id(), 'getpaid_invoice_special_fields'); |
|
| 395 | + do_action('getpaid_invoice_update_database_fields', $invoice, $updated_props); |
|
| 396 | 396 | |
| 397 | 397 | } |
| 398 | 398 | |
@@ -404,22 +404,22 @@ discard block |
||
| 404 | 404 | * @param WPInv_Invoice $invoice WPInv_Invoice object. |
| 405 | 405 | * @since 1.0.19 |
| 406 | 406 | */ |
| 407 | - protected function insert_special_fields( &$invoice ) { |
|
| 407 | + protected function insert_special_fields(&$invoice) { |
|
| 408 | 408 | global $wpdb; |
| 409 | 409 | |
| 410 | - $updated_props = array(); |
|
| 410 | + $updated_props = array(); |
|
| 411 | 411 | |
| 412 | - foreach ( $this->database_fields_to_props as $database_field => $prop ) { |
|
| 413 | - $value = $invoice->{"get_$prop"}( 'edit' ); |
|
| 414 | - $value = is_string( $value ) ? wp_slash( $value ) : $value; |
|
| 415 | - $value = is_bool( $value ) ? (int) $value : $value; |
|
| 416 | - $updated_props[ $database_field ] = maybe_serialize( $value ); |
|
| 412 | + foreach ($this->database_fields_to_props as $database_field => $prop) { |
|
| 413 | + $value = $invoice->{"get_$prop"}('edit'); |
|
| 414 | + $value = is_string($value) ? wp_slash($value) : $value; |
|
| 415 | + $value = is_bool($value) ? (int) $value : $value; |
|
| 416 | + $updated_props[$database_field] = maybe_serialize($value); |
|
| 417 | 417 | } |
| 418 | 418 | |
| 419 | 419 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 420 | - $wpdb->insert( $table, $updated_props ); |
|
| 421 | - wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_special_fields' ); |
|
| 422 | - do_action( 'getpaid_invoice_insert_database_fields', $invoice, $updated_props ); |
|
| 420 | + $wpdb->insert($table, $updated_props); |
|
| 421 | + wp_cache_delete($invoice->get_id(), 'getpaid_invoice_special_fields'); |
|
| 422 | + do_action('getpaid_invoice_insert_database_fields', $invoice, $updated_props); |
|
| 423 | 423 | |
| 424 | 424 | } |
| 425 | 425 | |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | * |
| 429 | 429 | * @param WPInv_Invoice $invoice Invoice object. |
| 430 | 430 | */ |
| 431 | - public function save_special_fields( &$invoice ) { |
|
| 431 | + public function save_special_fields(&$invoice) { |
|
| 432 | 432 | global $wpdb; |
| 433 | 433 | |
| 434 | 434 | // The invoices table. |
@@ -436,13 +436,13 @@ discard block |
||
| 436 | 436 | $id = (int) $invoice->get_id(); |
| 437 | 437 | $invoice->maybe_set_key(); |
| 438 | 438 | |
| 439 | - if ( $wpdb->get_var( "SELECT `post_id` FROM $table WHERE `post_id`= $id" ) ) { |
|
| 439 | + if ($wpdb->get_var("SELECT `post_id` FROM $table WHERE `post_id`= $id")) { |
|
| 440 | 440 | |
| 441 | - $this->update_special_fields( $invoice ); |
|
| 441 | + $this->update_special_fields($invoice); |
|
| 442 | 442 | |
| 443 | 443 | } else { |
| 444 | 444 | |
| 445 | - $this->insert_special_fields( $invoice ); |
|
| 445 | + $this->insert_special_fields($invoice); |
|
| 446 | 446 | |
| 447 | 447 | } |
| 448 | 448 | |
@@ -453,46 +453,46 @@ discard block |
||
| 453 | 453 | * |
| 454 | 454 | * @param WPInv_Invoice $invoice Invoice object. |
| 455 | 455 | */ |
| 456 | - public function add_items( &$invoice ) { |
|
| 456 | + public function add_items(&$invoice) { |
|
| 457 | 457 | global $wpdb; |
| 458 | 458 | |
| 459 | 459 | // Maybe retrieve from the cache. |
| 460 | - $items = wp_cache_get( $invoice->get_id(), 'getpaid_invoice_cart_details' ); |
|
| 460 | + $items = wp_cache_get($invoice->get_id(), 'getpaid_invoice_cart_details'); |
|
| 461 | 461 | |
| 462 | 462 | // If not found, retrieve from the db. |
| 463 | - if ( false === $items ) { |
|
| 463 | + if (false === $items) { |
|
| 464 | 464 | $table = $wpdb->prefix . 'getpaid_invoice_items'; |
| 465 | 465 | |
| 466 | 466 | $items = $wpdb->get_results( |
| 467 | - $wpdb->prepare( "SELECT * FROM $table WHERE `post_id`=%d", $invoice->get_id() ) |
|
| 467 | + $wpdb->prepare("SELECT * FROM $table WHERE `post_id`=%d", $invoice->get_id()) |
|
| 468 | 468 | ); |
| 469 | 469 | |
| 470 | 470 | // Update the cache with our data |
| 471 | - wp_cache_set( $invoice->get_id(), $items, 'getpaid_invoice_cart_details' ); |
|
| 471 | + wp_cache_set($invoice->get_id(), $items, 'getpaid_invoice_cart_details'); |
|
| 472 | 472 | |
| 473 | 473 | } |
| 474 | 474 | |
| 475 | 475 | // Abort if no items found. |
| 476 | - if ( empty( $items ) ) { |
|
| 476 | + if (empty($items)) { |
|
| 477 | 477 | return; |
| 478 | 478 | } |
| 479 | 479 | |
| 480 | 480 | $_items = array(); |
| 481 | - foreach ( $items as $item_data ) { |
|
| 482 | - $item = new GetPaid_Form_Item( $item_data->item_id ); |
|
| 481 | + foreach ($items as $item_data) { |
|
| 482 | + $item = new GetPaid_Form_Item($item_data->item_id); |
|
| 483 | 483 | |
| 484 | 484 | // Set item data. |
| 485 | - $item->item_tax = wpinv_sanitize_amount( $item_data->tax ); |
|
| 486 | - $item->item_discount = wpinv_sanitize_amount( $item_data->discount ); |
|
| 487 | - $item->set_name( $item_data->item_name ); |
|
| 488 | - $item->set_description( $item_data->item_description ); |
|
| 489 | - $item->set_price( $item_data->item_price ); |
|
| 490 | - $item->set_quantity( $item_data->quantity ); |
|
| 491 | - $item->set_item_meta( $item_data->meta ); |
|
| 485 | + $item->item_tax = wpinv_sanitize_amount($item_data->tax); |
|
| 486 | + $item->item_discount = wpinv_sanitize_amount($item_data->discount); |
|
| 487 | + $item->set_name($item_data->item_name); |
|
| 488 | + $item->set_description($item_data->item_description); |
|
| 489 | + $item->set_price($item_data->item_price); |
|
| 490 | + $item->set_quantity($item_data->quantity); |
|
| 491 | + $item->set_item_meta($item_data->meta); |
|
| 492 | 492 | $_items[] = $item; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | - $invoice->set_items( $_items ); |
|
| 495 | + $invoice->set_items($_items); |
|
| 496 | 496 | } |
| 497 | 497 | |
| 498 | 498 | /** |
@@ -500,20 +500,20 @@ discard block |
||
| 500 | 500 | * |
| 501 | 501 | * @param WPInv_Invoice $invoice Invoice object. |
| 502 | 502 | */ |
| 503 | - public function save_items( $invoice ) { |
|
| 503 | + public function save_items($invoice) { |
|
| 504 | 504 | |
| 505 | 505 | // Delete previously existing items. |
| 506 | - $this->delete_items( $invoice ); |
|
| 506 | + $this->delete_items($invoice); |
|
| 507 | 507 | |
| 508 | - $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
|
| 508 | + $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
|
| 509 | 509 | |
| 510 | - foreach ( $invoice->get_cart_details() as $item_data ) { |
|
| 511 | - $item_data = array_map( 'maybe_serialize', $item_data ); |
|
| 512 | - $GLOBALS['wpdb']->insert( $table, $item_data ); |
|
| 510 | + foreach ($invoice->get_cart_details() as $item_data) { |
|
| 511 | + $item_data = array_map('maybe_serialize', $item_data); |
|
| 512 | + $GLOBALS['wpdb']->insert($table, $item_data); |
|
| 513 | 513 | } |
| 514 | 514 | |
| 515 | - wp_cache_delete( $invoice->get_id(), 'getpaid_invoice_cart_details' ); |
|
| 516 | - do_action( 'getpaid_invoice_save_items', $invoice ); |
|
| 515 | + wp_cache_delete($invoice->get_id(), 'getpaid_invoice_cart_details'); |
|
| 516 | + do_action('getpaid_invoice_save_items', $invoice); |
|
| 517 | 517 | |
| 518 | 518 | } |
| 519 | 519 | |
@@ -522,9 +522,9 @@ discard block |
||
| 522 | 522 | * |
| 523 | 523 | * @param WPInv_Invoice $invoice Invoice object. |
| 524 | 524 | */ |
| 525 | - public function delete_items( $invoice ) { |
|
| 525 | + public function delete_items($invoice) { |
|
| 526 | 526 | $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoice_items'; |
| 527 | - return $GLOBALS['wpdb']->delete( $table, array( 'post_id' => $invoice->get_id() ) ); |
|
| 527 | + return $GLOBALS['wpdb']->delete($table, array('post_id' => $invoice->get_id())); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | 530 | /** |
@@ -532,9 +532,9 @@ discard block |
||
| 532 | 532 | * |
| 533 | 533 | * @param WPInv_Invoice $invoice Invoice object. |
| 534 | 534 | */ |
| 535 | - public function delete_special_fields( $invoice ) { |
|
| 535 | + public function delete_special_fields($invoice) { |
|
| 536 | 536 | $table = $GLOBALS['wpdb']->prefix . 'getpaid_invoices'; |
| 537 | - return $GLOBALS['wpdb']->delete( $table, array( 'post_id' => $invoice->get_id() ) ); |
|
| 537 | + return $GLOBALS['wpdb']->delete($table, array('post_id' => $invoice->get_id())); |
|
| 538 | 538 | } |
| 539 | 539 | |
| 540 | 540 | /** |
@@ -545,10 +545,10 @@ discard block |
||
| 545 | 545 | * @param WPInv_Invoice $object GetPaid_Data object. |
| 546 | 546 | * @return string |
| 547 | 547 | */ |
| 548 | - protected function get_post_status( $object ) { |
|
| 549 | - $object_status = $object->get_status( 'edit' ); |
|
| 548 | + protected function get_post_status($object) { |
|
| 549 | + $object_status = $object->get_status('edit'); |
|
| 550 | 550 | |
| 551 | - if ( ! $object_status ) { |
|
| 551 | + if (!$object_status) { |
|
| 552 | 552 | $object_status = $object->get_default_status(); |
| 553 | 553 | } |
| 554 | 554 | |
@@ -9,259 +9,259 @@ |
||
| 9 | 9 | * @version 1.0.14 |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | return array( |
| 15 | - 'US' => __( 'United States', 'invoicing' ), |
|
| 16 | - 'CA' => __( 'Canada', 'invoicing' ), |
|
| 17 | - 'GB' => __( 'United Kingdom', 'invoicing' ), |
|
| 18 | - 'AF' => __( 'Afghanistan', 'invoicing' ), |
|
| 19 | - 'AX' => __( 'Aland Islands', 'invoicing' ), |
|
| 20 | - 'AL' => __( 'Albania', 'invoicing' ), |
|
| 21 | - 'DZ' => __( 'Algeria', 'invoicing' ), |
|
| 22 | - 'AS' => __( 'American Samoa', 'invoicing' ), |
|
| 23 | - 'AD' => __( 'Andorra', 'invoicing' ), |
|
| 24 | - 'AO' => __( 'Angola', 'invoicing' ), |
|
| 25 | - 'AI' => __( 'Anguilla', 'invoicing' ), |
|
| 26 | - 'AQ' => __( 'Antarctica', 'invoicing' ), |
|
| 27 | - 'AG' => __( 'Antigua and Barbuda', 'invoicing' ), |
|
| 28 | - 'AR' => __( 'Argentina', 'invoicing' ), |
|
| 29 | - 'AM' => __( 'Armenia', 'invoicing' ), |
|
| 30 | - 'AW' => __( 'Aruba', 'invoicing' ), |
|
| 31 | - 'AU' => __( 'Australia', 'invoicing' ), |
|
| 32 | - 'AT' => __( 'Austria', 'invoicing' ), |
|
| 33 | - 'AZ' => __( 'Azerbaijan', 'invoicing' ), |
|
| 34 | - 'BS' => __( 'Bahamas', 'invoicing' ), |
|
| 35 | - 'BH' => __( 'Bahrain', 'invoicing' ), |
|
| 36 | - 'BD' => __( 'Bangladesh', 'invoicing' ), |
|
| 37 | - 'BB' => __( 'Barbados', 'invoicing' ), |
|
| 38 | - 'BY' => __( 'Belarus', 'invoicing' ), |
|
| 39 | - 'BE' => __( 'Belgium', 'invoicing' ), |
|
| 40 | - 'BZ' => __( 'Belize', 'invoicing' ), |
|
| 41 | - 'BJ' => __( 'Benin', 'invoicing' ), |
|
| 42 | - 'BM' => __( 'Bermuda', 'invoicing' ), |
|
| 43 | - 'BT' => __( 'Bhutan', 'invoicing' ), |
|
| 44 | - 'BO' => __( 'Bolivia', 'invoicing' ), |
|
| 45 | - 'BQ' => __( 'Bonaire, Saint Eustatius and Saba', 'invoicing' ), |
|
| 46 | - 'BA' => __( 'Bosnia and Herzegovina', 'invoicing' ), |
|
| 47 | - 'BW' => __( 'Botswana', 'invoicing' ), |
|
| 48 | - 'BV' => __( 'Bouvet Island', 'invoicing' ), |
|
| 49 | - 'BR' => __( 'Brazil', 'invoicing' ), |
|
| 50 | - 'IO' => __( 'British Indian Ocean Territory', 'invoicing' ), |
|
| 51 | - 'BN' => __( 'Brunei Darrussalam', 'invoicing' ), |
|
| 52 | - 'BG' => __( 'Bulgaria', 'invoicing' ), |
|
| 53 | - 'BF' => __( 'Burkina Faso', 'invoicing' ), |
|
| 54 | - 'BI' => __( 'Burundi', 'invoicing' ), |
|
| 55 | - 'KH' => __( 'Cambodia', 'invoicing' ), |
|
| 56 | - 'CM' => __( 'Cameroon', 'invoicing' ), |
|
| 57 | - 'CV' => __( 'Cape Verde', 'invoicing' ), |
|
| 58 | - 'KY' => __( 'Cayman Islands', 'invoicing' ), |
|
| 59 | - 'CF' => __( 'Central African Republic', 'invoicing' ), |
|
| 60 | - 'TD' => __( 'Chad', 'invoicing' ), |
|
| 61 | - 'CL' => __( 'Chile', 'invoicing' ), |
|
| 62 | - 'CN' => __( 'China', 'invoicing' ), |
|
| 63 | - 'CX' => __( 'Christmas Island', 'invoicing' ), |
|
| 64 | - 'CC' => __( 'Cocos Islands', 'invoicing' ), |
|
| 65 | - 'CO' => __( 'Colombia', 'invoicing' ), |
|
| 66 | - 'KM' => __( 'Comoros', 'invoicing' ), |
|
| 67 | - 'CD' => __( 'Congo, Democratic People\'s Republic', 'invoicing' ), |
|
| 68 | - 'CG' => __( 'Congo, Republic of', 'invoicing' ), |
|
| 69 | - 'CK' => __( 'Cook Islands', 'invoicing' ), |
|
| 70 | - 'CR' => __( 'Costa Rica', 'invoicing' ), |
|
| 71 | - 'CI' => __( 'Cote d\'Ivoire', 'invoicing' ), |
|
| 72 | - 'HR' => __( 'Croatia/Hrvatska', 'invoicing' ), |
|
| 73 | - 'CU' => __( 'Cuba', 'invoicing' ), |
|
| 74 | - 'CW' => __( 'CuraÇao', 'invoicing' ), |
|
| 75 | - 'CY' => __( 'Cyprus', 'invoicing' ), |
|
| 76 | - 'CZ' => __( 'Czech Republic', 'invoicing' ), |
|
| 77 | - 'DK' => __( 'Denmark', 'invoicing' ), |
|
| 78 | - 'DJ' => __( 'Djibouti', 'invoicing' ), |
|
| 79 | - 'DM' => __( 'Dominica', 'invoicing' ), |
|
| 80 | - 'DO' => __( 'Dominican Republic', 'invoicing' ), |
|
| 81 | - 'TP' => __( 'East Timor', 'invoicing' ), |
|
| 82 | - 'EC' => __( 'Ecuador', 'invoicing' ), |
|
| 83 | - 'EG' => __( 'Egypt', 'invoicing' ), |
|
| 84 | - 'GQ' => __( 'Equatorial Guinea', 'invoicing' ), |
|
| 85 | - 'SV' => __( 'El Salvador', 'invoicing' ), |
|
| 86 | - 'ER' => __( 'Eritrea', 'invoicing' ), |
|
| 87 | - 'EE' => __( 'Estonia', 'invoicing' ), |
|
| 88 | - 'ET' => __( 'Ethiopia', 'invoicing' ), |
|
| 89 | - 'FK' => __( 'Falkland Islands', 'invoicing' ), |
|
| 90 | - 'FO' => __( 'Faroe Islands', 'invoicing' ), |
|
| 91 | - 'FJ' => __( 'Fiji', 'invoicing' ), |
|
| 92 | - 'FI' => __( 'Finland', 'invoicing' ), |
|
| 93 | - 'FR' => __( 'France', 'invoicing' ), |
|
| 94 | - 'GF' => __( 'French Guiana', 'invoicing' ), |
|
| 95 | - 'PF' => __( 'French Polynesia', 'invoicing' ), |
|
| 96 | - 'TF' => __( 'French Southern Territories', 'invoicing' ), |
|
| 97 | - 'GA' => __( 'Gabon', 'invoicing' ), |
|
| 98 | - 'GM' => __( 'Gambia', 'invoicing' ), |
|
| 99 | - 'GE' => __( 'Georgia', 'invoicing' ), |
|
| 100 | - 'DE' => __( 'Germany', 'invoicing' ), |
|
| 101 | - 'GR' => __( 'Greece', 'invoicing' ), |
|
| 102 | - 'GH' => __( 'Ghana', 'invoicing' ), |
|
| 103 | - 'GI' => __( 'Gibraltar', 'invoicing' ), |
|
| 104 | - 'GL' => __( 'Greenland', 'invoicing' ), |
|
| 105 | - 'GD' => __( 'Grenada', 'invoicing' ), |
|
| 106 | - 'GP' => __( 'Guadeloupe', 'invoicing' ), |
|
| 107 | - 'GU' => __( 'Guam', 'invoicing' ), |
|
| 108 | - 'GT' => __( 'Guatemala', 'invoicing' ), |
|
| 109 | - 'GG' => __( 'Guernsey', 'invoicing' ), |
|
| 110 | - 'GN' => __( 'Guinea', 'invoicing' ), |
|
| 111 | - 'GW' => __( 'Guinea-Bissau', 'invoicing' ), |
|
| 112 | - 'GY' => __( 'Guyana', 'invoicing' ), |
|
| 113 | - 'HT' => __( 'Haiti', 'invoicing' ), |
|
| 114 | - 'HM' => __( 'Heard and McDonald Islands', 'invoicing' ), |
|
| 115 | - 'VA' => __( 'Holy See (City Vatican State)', 'invoicing' ), |
|
| 116 | - 'HN' => __( 'Honduras', 'invoicing' ), |
|
| 117 | - 'HK' => __( 'Hong Kong', 'invoicing' ), |
|
| 118 | - 'HU' => __( 'Hungary', 'invoicing' ), |
|
| 119 | - 'IS' => __( 'Iceland', 'invoicing' ), |
|
| 120 | - 'IN' => __( 'India', 'invoicing' ), |
|
| 121 | - 'ID' => __( 'Indonesia', 'invoicing' ), |
|
| 122 | - 'IR' => __( 'Iran', 'invoicing' ), |
|
| 123 | - 'IQ' => __( 'Iraq', 'invoicing' ), |
|
| 124 | - 'IE' => __( 'Ireland', 'invoicing' ), |
|
| 125 | - 'IM' => __( 'Isle of Man', 'invoicing' ), |
|
| 126 | - 'IL' => __( 'Israel', 'invoicing' ), |
|
| 127 | - 'IT' => __( 'Italy', 'invoicing' ), |
|
| 128 | - 'JM' => __( 'Jamaica', 'invoicing' ), |
|
| 129 | - 'JP' => __( 'Japan', 'invoicing' ), |
|
| 130 | - 'JE' => __( 'Jersey', 'invoicing' ), |
|
| 131 | - 'JO' => __( 'Jordan', 'invoicing' ), |
|
| 132 | - 'KZ' => __( 'Kazakhstan', 'invoicing' ), |
|
| 133 | - 'KE' => __( 'Kenya', 'invoicing' ), |
|
| 134 | - 'KI' => __( 'Kiribati', 'invoicing' ), |
|
| 135 | - 'KW' => __( 'Kuwait', 'invoicing' ), |
|
| 136 | - 'KG' => __( 'Kyrgyzstan', 'invoicing' ), |
|
| 137 | - 'LA' => __( 'Lao People\'s Democratic Republic', 'invoicing' ), |
|
| 138 | - 'LV' => __( 'Latvia', 'invoicing' ), |
|
| 139 | - 'LB' => __( 'Lebanon', 'invoicing' ), |
|
| 140 | - 'LS' => __( 'Lesotho', 'invoicing' ), |
|
| 141 | - 'LR' => __( 'Liberia', 'invoicing' ), |
|
| 142 | - 'LY' => __( 'Libyan Arab Jamahiriya', 'invoicing' ), |
|
| 143 | - 'LI' => __( 'Liechtenstein', 'invoicing' ), |
|
| 144 | - 'LT' => __( 'Lithuania', 'invoicing' ), |
|
| 145 | - 'LU' => __( 'Luxembourg', 'invoicing' ), |
|
| 146 | - 'MO' => __( 'Macau', 'invoicing' ), |
|
| 147 | - 'MK' => __( 'Macedonia', 'invoicing' ), |
|
| 148 | - 'MG' => __( 'Madagascar', 'invoicing' ), |
|
| 149 | - 'MW' => __( 'Malawi', 'invoicing' ), |
|
| 150 | - 'MY' => __( 'Malaysia', 'invoicing' ), |
|
| 151 | - 'MV' => __( 'Maldives', 'invoicing' ), |
|
| 152 | - 'ML' => __( 'Mali', 'invoicing' ), |
|
| 153 | - 'MT' => __( 'Malta', 'invoicing' ), |
|
| 154 | - 'MH' => __( 'Marshall Islands', 'invoicing' ), |
|
| 155 | - 'MQ' => __( 'Martinique', 'invoicing' ), |
|
| 156 | - 'MR' => __( 'Mauritania', 'invoicing' ), |
|
| 157 | - 'MU' => __( 'Mauritius', 'invoicing' ), |
|
| 158 | - 'YT' => __( 'Mayotte', 'invoicing' ), |
|
| 159 | - 'MX' => __( 'Mexico', 'invoicing' ), |
|
| 160 | - 'FM' => __( 'Micronesia', 'invoicing' ), |
|
| 161 | - 'MD' => __( 'Moldova, Republic of', 'invoicing' ), |
|
| 162 | - 'MC' => __( 'Monaco', 'invoicing' ), |
|
| 163 | - 'MN' => __( 'Mongolia', 'invoicing' ), |
|
| 164 | - 'ME' => __( 'Montenegro', 'invoicing' ), |
|
| 165 | - 'MS' => __( 'Montserrat', 'invoicing' ), |
|
| 166 | - 'MA' => __( 'Morocco', 'invoicing' ), |
|
| 167 | - 'MZ' => __( 'Mozambique', 'invoicing' ), |
|
| 168 | - 'MM' => __( 'Myanmar', 'invoicing' ), |
|
| 169 | - 'NA' => __( 'Namibia', 'invoicing' ), |
|
| 170 | - 'NR' => __( 'Nauru', 'invoicing' ), |
|
| 171 | - 'NP' => __( 'Nepal', 'invoicing' ), |
|
| 172 | - 'NL' => __( 'Netherlands', 'invoicing' ), |
|
| 173 | - 'AN' => __( 'Netherlands Antilles', 'invoicing' ), |
|
| 174 | - 'NC' => __( 'New Caledonia', 'invoicing' ), |
|
| 175 | - 'NZ' => __( 'New Zealand', 'invoicing' ), |
|
| 176 | - 'NI' => __( 'Nicaragua', 'invoicing' ), |
|
| 177 | - 'NE' => __( 'Niger', 'invoicing' ), |
|
| 178 | - 'NG' => __( 'Nigeria', 'invoicing' ), |
|
| 179 | - 'NU' => __( 'Niue', 'invoicing' ), |
|
| 180 | - 'NF' => __( 'Norfolk Island', 'invoicing' ), |
|
| 181 | - 'KP' => __( 'North Korea', 'invoicing' ), |
|
| 182 | - 'MP' => __( 'Northern Mariana Islands', 'invoicing' ), |
|
| 183 | - 'NO' => __( 'Norway', 'invoicing' ), |
|
| 184 | - 'OM' => __( 'Oman', 'invoicing' ), |
|
| 185 | - 'PK' => __( 'Pakistan', 'invoicing' ), |
|
| 186 | - 'PW' => __( 'Palau', 'invoicing' ), |
|
| 187 | - 'PS' => __( 'Palestinian Territories', 'invoicing' ), |
|
| 188 | - 'PA' => __( 'Panama', 'invoicing' ), |
|
| 189 | - 'PG' => __( 'Papua New Guinea', 'invoicing' ), |
|
| 190 | - 'PY' => __( 'Paraguay', 'invoicing' ), |
|
| 191 | - 'PE' => __( 'Peru', 'invoicing' ), |
|
| 192 | - 'PH' => __( 'Philippines', 'invoicing' ), |
|
| 193 | - 'PN' => __( 'Pitcairn Island', 'invoicing' ), |
|
| 194 | - 'PL' => __( 'Poland', 'invoicing' ), |
|
| 195 | - 'PT' => __( 'Portugal', 'invoicing' ), |
|
| 196 | - 'PR' => __( 'Puerto Rico', 'invoicing' ), |
|
| 197 | - 'QA' => __( 'Qatar', 'invoicing' ), |
|
| 198 | - 'XK' => __( 'Republic of Kosovo', 'invoicing' ), |
|
| 199 | - 'RE' => __( 'Reunion Island', 'invoicing' ), |
|
| 200 | - 'RO' => __( 'Romania', 'invoicing' ), |
|
| 201 | - 'RU' => __( 'Russian Federation', 'invoicing' ), |
|
| 202 | - 'RW' => __( 'Rwanda', 'invoicing' ), |
|
| 203 | - 'BL' => __( 'Saint Barthélemy', 'invoicing' ), |
|
| 204 | - 'SH' => __( 'Saint Helena', 'invoicing' ), |
|
| 205 | - 'KN' => __( 'Saint Kitts and Nevis', 'invoicing' ), |
|
| 206 | - 'LC' => __( 'Saint Lucia', 'invoicing' ), |
|
| 207 | - 'MF' => __( 'Saint Martin (French)', 'invoicing' ), |
|
| 208 | - 'SX' => __( 'Saint Martin (Dutch)', 'invoicing' ), |
|
| 209 | - 'PM' => __( 'Saint Pierre and Miquelon', 'invoicing' ), |
|
| 210 | - 'VC' => __( 'Saint Vincent and the Grenadines', 'invoicing' ), |
|
| 211 | - 'SM' => __( 'San Marino', 'invoicing' ), |
|
| 212 | - 'ST' => __( 'São Tomé and Príncipe', 'invoicing' ), |
|
| 213 | - 'SA' => __( 'Saudi Arabia', 'invoicing' ), |
|
| 214 | - 'SN' => __( 'Senegal', 'invoicing' ), |
|
| 215 | - 'RS' => __( 'Serbia', 'invoicing' ), |
|
| 216 | - 'SC' => __( 'Seychelles', 'invoicing' ), |
|
| 217 | - 'SL' => __( 'Sierra Leone', 'invoicing' ), |
|
| 218 | - 'SG' => __( 'Singapore', 'invoicing' ), |
|
| 219 | - 'SK' => __( 'Slovak Republic', 'invoicing' ), |
|
| 220 | - 'SI' => __( 'Slovenia', 'invoicing' ), |
|
| 221 | - 'SB' => __( 'Solomon Islands', 'invoicing' ), |
|
| 222 | - 'SO' => __( 'Somalia', 'invoicing' ), |
|
| 223 | - 'ZA' => __( 'South Africa', 'invoicing' ), |
|
| 224 | - 'GS' => __( 'South Georgia', 'invoicing' ), |
|
| 225 | - 'KR' => __( 'South Korea', 'invoicing' ), |
|
| 226 | - 'SS' => __( 'South Sudan', 'invoicing' ), |
|
| 227 | - 'ES' => __( 'Spain', 'invoicing' ), |
|
| 228 | - 'LK' => __( 'Sri Lanka', 'invoicing' ), |
|
| 229 | - 'SD' => __( 'Sudan', 'invoicing' ), |
|
| 230 | - 'SR' => __( 'Suriname', 'invoicing' ), |
|
| 231 | - 'SJ' => __( 'Svalbard and Jan Mayen Islands', 'invoicing' ), |
|
| 232 | - 'SZ' => __( 'Swaziland', 'invoicing' ), |
|
| 233 | - 'SE' => __( 'Sweden', 'invoicing' ), |
|
| 234 | - 'CH' => __( 'Switzerland', 'invoicing' ), |
|
| 235 | - 'SY' => __( 'Syrian Arab Republic', 'invoicing' ), |
|
| 236 | - 'TW' => __( 'Taiwan', 'invoicing' ), |
|
| 237 | - 'TJ' => __( 'Tajikistan', 'invoicing' ), |
|
| 238 | - 'TZ' => __( 'Tanzania', 'invoicing' ), |
|
| 239 | - 'TH' => __( 'Thailand', 'invoicing' ), |
|
| 240 | - 'TL' => __( 'Timor-Leste', 'invoicing' ), |
|
| 241 | - 'TG' => __( 'Togo', 'invoicing' ), |
|
| 242 | - 'TK' => __( 'Tokelau', 'invoicing' ), |
|
| 243 | - 'TO' => __( 'Tonga', 'invoicing' ), |
|
| 244 | - 'TT' => __( 'Trinidad and Tobago', 'invoicing' ), |
|
| 245 | - 'TN' => __( 'Tunisia', 'invoicing' ), |
|
| 246 | - 'TR' => __( 'Turkey', 'invoicing' ), |
|
| 247 | - 'TM' => __( 'Turkmenistan', 'invoicing' ), |
|
| 248 | - 'TC' => __( 'Turks and Caicos Islands', 'invoicing' ), |
|
| 249 | - 'TV' => __( 'Tuvalu', 'invoicing' ), |
|
| 250 | - 'UG' => __( 'Uganda', 'invoicing' ), |
|
| 251 | - 'UA' => __( 'Ukraine', 'invoicing' ), |
|
| 252 | - 'AE' => __( 'United Arab Emirates', 'invoicing' ), |
|
| 253 | - 'UY' => __( 'Uruguay', 'invoicing' ), |
|
| 254 | - 'UM' => __( 'US Minor Outlying Islands', 'invoicing' ), |
|
| 255 | - 'UZ' => __( 'Uzbekistan', 'invoicing' ), |
|
| 256 | - 'VU' => __( 'Vanuatu', 'invoicing' ), |
|
| 257 | - 'VE' => __( 'Venezuela', 'invoicing' ), |
|
| 258 | - 'VN' => __( 'Vietnam', 'invoicing' ), |
|
| 259 | - 'VG' => __( 'Virgin Islands (British)', 'invoicing' ), |
|
| 260 | - 'VI' => __( 'Virgin Islands (USA)', 'invoicing' ), |
|
| 261 | - 'WF' => __( 'Wallis and Futuna Islands', 'invoicing' ), |
|
| 262 | - 'EH' => __( 'Western Sahara', 'invoicing' ), |
|
| 263 | - 'WS' => __( 'Western Samoa', 'invoicing' ), |
|
| 264 | - 'YE' => __( 'Yemen', 'invoicing' ), |
|
| 265 | - 'ZM' => __( 'Zambia', 'invoicing' ), |
|
| 266 | - 'ZW' => __( 'Zimbabwe', 'invoicing' ), |
|
| 15 | + 'US' => __('United States', 'invoicing'), |
|
| 16 | + 'CA' => __('Canada', 'invoicing'), |
|
| 17 | + 'GB' => __('United Kingdom', 'invoicing'), |
|
| 18 | + 'AF' => __('Afghanistan', 'invoicing'), |
|
| 19 | + 'AX' => __('Aland Islands', 'invoicing'), |
|
| 20 | + 'AL' => __('Albania', 'invoicing'), |
|
| 21 | + 'DZ' => __('Algeria', 'invoicing'), |
|
| 22 | + 'AS' => __('American Samoa', 'invoicing'), |
|
| 23 | + 'AD' => __('Andorra', 'invoicing'), |
|
| 24 | + 'AO' => __('Angola', 'invoicing'), |
|
| 25 | + 'AI' => __('Anguilla', 'invoicing'), |
|
| 26 | + 'AQ' => __('Antarctica', 'invoicing'), |
|
| 27 | + 'AG' => __('Antigua and Barbuda', 'invoicing'), |
|
| 28 | + 'AR' => __('Argentina', 'invoicing'), |
|
| 29 | + 'AM' => __('Armenia', 'invoicing'), |
|
| 30 | + 'AW' => __('Aruba', 'invoicing'), |
|
| 31 | + 'AU' => __('Australia', 'invoicing'), |
|
| 32 | + 'AT' => __('Austria', 'invoicing'), |
|
| 33 | + 'AZ' => __('Azerbaijan', 'invoicing'), |
|
| 34 | + 'BS' => __('Bahamas', 'invoicing'), |
|
| 35 | + 'BH' => __('Bahrain', 'invoicing'), |
|
| 36 | + 'BD' => __('Bangladesh', 'invoicing'), |
|
| 37 | + 'BB' => __('Barbados', 'invoicing'), |
|
| 38 | + 'BY' => __('Belarus', 'invoicing'), |
|
| 39 | + 'BE' => __('Belgium', 'invoicing'), |
|
| 40 | + 'BZ' => __('Belize', 'invoicing'), |
|
| 41 | + 'BJ' => __('Benin', 'invoicing'), |
|
| 42 | + 'BM' => __('Bermuda', 'invoicing'), |
|
| 43 | + 'BT' => __('Bhutan', 'invoicing'), |
|
| 44 | + 'BO' => __('Bolivia', 'invoicing'), |
|
| 45 | + 'BQ' => __('Bonaire, Saint Eustatius and Saba', 'invoicing'), |
|
| 46 | + 'BA' => __('Bosnia and Herzegovina', 'invoicing'), |
|
| 47 | + 'BW' => __('Botswana', 'invoicing'), |
|
| 48 | + 'BV' => __('Bouvet Island', 'invoicing'), |
|
| 49 | + 'BR' => __('Brazil', 'invoicing'), |
|
| 50 | + 'IO' => __('British Indian Ocean Territory', 'invoicing'), |
|
| 51 | + 'BN' => __('Brunei Darrussalam', 'invoicing'), |
|
| 52 | + 'BG' => __('Bulgaria', 'invoicing'), |
|
| 53 | + 'BF' => __('Burkina Faso', 'invoicing'), |
|
| 54 | + 'BI' => __('Burundi', 'invoicing'), |
|
| 55 | + 'KH' => __('Cambodia', 'invoicing'), |
|
| 56 | + 'CM' => __('Cameroon', 'invoicing'), |
|
| 57 | + 'CV' => __('Cape Verde', 'invoicing'), |
|
| 58 | + 'KY' => __('Cayman Islands', 'invoicing'), |
|
| 59 | + 'CF' => __('Central African Republic', 'invoicing'), |
|
| 60 | + 'TD' => __('Chad', 'invoicing'), |
|
| 61 | + 'CL' => __('Chile', 'invoicing'), |
|
| 62 | + 'CN' => __('China', 'invoicing'), |
|
| 63 | + 'CX' => __('Christmas Island', 'invoicing'), |
|
| 64 | + 'CC' => __('Cocos Islands', 'invoicing'), |
|
| 65 | + 'CO' => __('Colombia', 'invoicing'), |
|
| 66 | + 'KM' => __('Comoros', 'invoicing'), |
|
| 67 | + 'CD' => __('Congo, Democratic People\'s Republic', 'invoicing'), |
|
| 68 | + 'CG' => __('Congo, Republic of', 'invoicing'), |
|
| 69 | + 'CK' => __('Cook Islands', 'invoicing'), |
|
| 70 | + 'CR' => __('Costa Rica', 'invoicing'), |
|
| 71 | + 'CI' => __('Cote d\'Ivoire', 'invoicing'), |
|
| 72 | + 'HR' => __('Croatia/Hrvatska', 'invoicing'), |
|
| 73 | + 'CU' => __('Cuba', 'invoicing'), |
|
| 74 | + 'CW' => __('CuraÇao', 'invoicing'), |
|
| 75 | + 'CY' => __('Cyprus', 'invoicing'), |
|
| 76 | + 'CZ' => __('Czech Republic', 'invoicing'), |
|
| 77 | + 'DK' => __('Denmark', 'invoicing'), |
|
| 78 | + 'DJ' => __('Djibouti', 'invoicing'), |
|
| 79 | + 'DM' => __('Dominica', 'invoicing'), |
|
| 80 | + 'DO' => __('Dominican Republic', 'invoicing'), |
|
| 81 | + 'TP' => __('East Timor', 'invoicing'), |
|
| 82 | + 'EC' => __('Ecuador', 'invoicing'), |
|
| 83 | + 'EG' => __('Egypt', 'invoicing'), |
|
| 84 | + 'GQ' => __('Equatorial Guinea', 'invoicing'), |
|
| 85 | + 'SV' => __('El Salvador', 'invoicing'), |
|
| 86 | + 'ER' => __('Eritrea', 'invoicing'), |
|
| 87 | + 'EE' => __('Estonia', 'invoicing'), |
|
| 88 | + 'ET' => __('Ethiopia', 'invoicing'), |
|
| 89 | + 'FK' => __('Falkland Islands', 'invoicing'), |
|
| 90 | + 'FO' => __('Faroe Islands', 'invoicing'), |
|
| 91 | + 'FJ' => __('Fiji', 'invoicing'), |
|
| 92 | + 'FI' => __('Finland', 'invoicing'), |
|
| 93 | + 'FR' => __('France', 'invoicing'), |
|
| 94 | + 'GF' => __('French Guiana', 'invoicing'), |
|
| 95 | + 'PF' => __('French Polynesia', 'invoicing'), |
|
| 96 | + 'TF' => __('French Southern Territories', 'invoicing'), |
|
| 97 | + 'GA' => __('Gabon', 'invoicing'), |
|
| 98 | + 'GM' => __('Gambia', 'invoicing'), |
|
| 99 | + 'GE' => __('Georgia', 'invoicing'), |
|
| 100 | + 'DE' => __('Germany', 'invoicing'), |
|
| 101 | + 'GR' => __('Greece', 'invoicing'), |
|
| 102 | + 'GH' => __('Ghana', 'invoicing'), |
|
| 103 | + 'GI' => __('Gibraltar', 'invoicing'), |
|
| 104 | + 'GL' => __('Greenland', 'invoicing'), |
|
| 105 | + 'GD' => __('Grenada', 'invoicing'), |
|
| 106 | + 'GP' => __('Guadeloupe', 'invoicing'), |
|
| 107 | + 'GU' => __('Guam', 'invoicing'), |
|
| 108 | + 'GT' => __('Guatemala', 'invoicing'), |
|
| 109 | + 'GG' => __('Guernsey', 'invoicing'), |
|
| 110 | + 'GN' => __('Guinea', 'invoicing'), |
|
| 111 | + 'GW' => __('Guinea-Bissau', 'invoicing'), |
|
| 112 | + 'GY' => __('Guyana', 'invoicing'), |
|
| 113 | + 'HT' => __('Haiti', 'invoicing'), |
|
| 114 | + 'HM' => __('Heard and McDonald Islands', 'invoicing'), |
|
| 115 | + 'VA' => __('Holy See (City Vatican State)', 'invoicing'), |
|
| 116 | + 'HN' => __('Honduras', 'invoicing'), |
|
| 117 | + 'HK' => __('Hong Kong', 'invoicing'), |
|
| 118 | + 'HU' => __('Hungary', 'invoicing'), |
|
| 119 | + 'IS' => __('Iceland', 'invoicing'), |
|
| 120 | + 'IN' => __('India', 'invoicing'), |
|
| 121 | + 'ID' => __('Indonesia', 'invoicing'), |
|
| 122 | + 'IR' => __('Iran', 'invoicing'), |
|
| 123 | + 'IQ' => __('Iraq', 'invoicing'), |
|
| 124 | + 'IE' => __('Ireland', 'invoicing'), |
|
| 125 | + 'IM' => __('Isle of Man', 'invoicing'), |
|
| 126 | + 'IL' => __('Israel', 'invoicing'), |
|
| 127 | + 'IT' => __('Italy', 'invoicing'), |
|
| 128 | + 'JM' => __('Jamaica', 'invoicing'), |
|
| 129 | + 'JP' => __('Japan', 'invoicing'), |
|
| 130 | + 'JE' => __('Jersey', 'invoicing'), |
|
| 131 | + 'JO' => __('Jordan', 'invoicing'), |
|
| 132 | + 'KZ' => __('Kazakhstan', 'invoicing'), |
|
| 133 | + 'KE' => __('Kenya', 'invoicing'), |
|
| 134 | + 'KI' => __('Kiribati', 'invoicing'), |
|
| 135 | + 'KW' => __('Kuwait', 'invoicing'), |
|
| 136 | + 'KG' => __('Kyrgyzstan', 'invoicing'), |
|
| 137 | + 'LA' => __('Lao People\'s Democratic Republic', 'invoicing'), |
|
| 138 | + 'LV' => __('Latvia', 'invoicing'), |
|
| 139 | + 'LB' => __('Lebanon', 'invoicing'), |
|
| 140 | + 'LS' => __('Lesotho', 'invoicing'), |
|
| 141 | + 'LR' => __('Liberia', 'invoicing'), |
|
| 142 | + 'LY' => __('Libyan Arab Jamahiriya', 'invoicing'), |
|
| 143 | + 'LI' => __('Liechtenstein', 'invoicing'), |
|
| 144 | + 'LT' => __('Lithuania', 'invoicing'), |
|
| 145 | + 'LU' => __('Luxembourg', 'invoicing'), |
|
| 146 | + 'MO' => __('Macau', 'invoicing'), |
|
| 147 | + 'MK' => __('Macedonia', 'invoicing'), |
|
| 148 | + 'MG' => __('Madagascar', 'invoicing'), |
|
| 149 | + 'MW' => __('Malawi', 'invoicing'), |
|
| 150 | + 'MY' => __('Malaysia', 'invoicing'), |
|
| 151 | + 'MV' => __('Maldives', 'invoicing'), |
|
| 152 | + 'ML' => __('Mali', 'invoicing'), |
|
| 153 | + 'MT' => __('Malta', 'invoicing'), |
|
| 154 | + 'MH' => __('Marshall Islands', 'invoicing'), |
|
| 155 | + 'MQ' => __('Martinique', 'invoicing'), |
|
| 156 | + 'MR' => __('Mauritania', 'invoicing'), |
|
| 157 | + 'MU' => __('Mauritius', 'invoicing'), |
|
| 158 | + 'YT' => __('Mayotte', 'invoicing'), |
|
| 159 | + 'MX' => __('Mexico', 'invoicing'), |
|
| 160 | + 'FM' => __('Micronesia', 'invoicing'), |
|
| 161 | + 'MD' => __('Moldova, Republic of', 'invoicing'), |
|
| 162 | + 'MC' => __('Monaco', 'invoicing'), |
|
| 163 | + 'MN' => __('Mongolia', 'invoicing'), |
|
| 164 | + 'ME' => __('Montenegro', 'invoicing'), |
|
| 165 | + 'MS' => __('Montserrat', 'invoicing'), |
|
| 166 | + 'MA' => __('Morocco', 'invoicing'), |
|
| 167 | + 'MZ' => __('Mozambique', 'invoicing'), |
|
| 168 | + 'MM' => __('Myanmar', 'invoicing'), |
|
| 169 | + 'NA' => __('Namibia', 'invoicing'), |
|
| 170 | + 'NR' => __('Nauru', 'invoicing'), |
|
| 171 | + 'NP' => __('Nepal', 'invoicing'), |
|
| 172 | + 'NL' => __('Netherlands', 'invoicing'), |
|
| 173 | + 'AN' => __('Netherlands Antilles', 'invoicing'), |
|
| 174 | + 'NC' => __('New Caledonia', 'invoicing'), |
|
| 175 | + 'NZ' => __('New Zealand', 'invoicing'), |
|
| 176 | + 'NI' => __('Nicaragua', 'invoicing'), |
|
| 177 | + 'NE' => __('Niger', 'invoicing'), |
|
| 178 | + 'NG' => __('Nigeria', 'invoicing'), |
|
| 179 | + 'NU' => __('Niue', 'invoicing'), |
|
| 180 | + 'NF' => __('Norfolk Island', 'invoicing'), |
|
| 181 | + 'KP' => __('North Korea', 'invoicing'), |
|
| 182 | + 'MP' => __('Northern Mariana Islands', 'invoicing'), |
|
| 183 | + 'NO' => __('Norway', 'invoicing'), |
|
| 184 | + 'OM' => __('Oman', 'invoicing'), |
|
| 185 | + 'PK' => __('Pakistan', 'invoicing'), |
|
| 186 | + 'PW' => __('Palau', 'invoicing'), |
|
| 187 | + 'PS' => __('Palestinian Territories', 'invoicing'), |
|
| 188 | + 'PA' => __('Panama', 'invoicing'), |
|
| 189 | + 'PG' => __('Papua New Guinea', 'invoicing'), |
|
| 190 | + 'PY' => __('Paraguay', 'invoicing'), |
|
| 191 | + 'PE' => __('Peru', 'invoicing'), |
|
| 192 | + 'PH' => __('Philippines', 'invoicing'), |
|
| 193 | + 'PN' => __('Pitcairn Island', 'invoicing'), |
|
| 194 | + 'PL' => __('Poland', 'invoicing'), |
|
| 195 | + 'PT' => __('Portugal', 'invoicing'), |
|
| 196 | + 'PR' => __('Puerto Rico', 'invoicing'), |
|
| 197 | + 'QA' => __('Qatar', 'invoicing'), |
|
| 198 | + 'XK' => __('Republic of Kosovo', 'invoicing'), |
|
| 199 | + 'RE' => __('Reunion Island', 'invoicing'), |
|
| 200 | + 'RO' => __('Romania', 'invoicing'), |
|
| 201 | + 'RU' => __('Russian Federation', 'invoicing'), |
|
| 202 | + 'RW' => __('Rwanda', 'invoicing'), |
|
| 203 | + 'BL' => __('Saint Barthélemy', 'invoicing'), |
|
| 204 | + 'SH' => __('Saint Helena', 'invoicing'), |
|
| 205 | + 'KN' => __('Saint Kitts and Nevis', 'invoicing'), |
|
| 206 | + 'LC' => __('Saint Lucia', 'invoicing'), |
|
| 207 | + 'MF' => __('Saint Martin (French)', 'invoicing'), |
|
| 208 | + 'SX' => __('Saint Martin (Dutch)', 'invoicing'), |
|
| 209 | + 'PM' => __('Saint Pierre and Miquelon', 'invoicing'), |
|
| 210 | + 'VC' => __('Saint Vincent and the Grenadines', 'invoicing'), |
|
| 211 | + 'SM' => __('San Marino', 'invoicing'), |
|
| 212 | + 'ST' => __('São Tomé and Príncipe', 'invoicing'), |
|
| 213 | + 'SA' => __('Saudi Arabia', 'invoicing'), |
|
| 214 | + 'SN' => __('Senegal', 'invoicing'), |
|
| 215 | + 'RS' => __('Serbia', 'invoicing'), |
|
| 216 | + 'SC' => __('Seychelles', 'invoicing'), |
|
| 217 | + 'SL' => __('Sierra Leone', 'invoicing'), |
|
| 218 | + 'SG' => __('Singapore', 'invoicing'), |
|
| 219 | + 'SK' => __('Slovak Republic', 'invoicing'), |
|
| 220 | + 'SI' => __('Slovenia', 'invoicing'), |
|
| 221 | + 'SB' => __('Solomon Islands', 'invoicing'), |
|
| 222 | + 'SO' => __('Somalia', 'invoicing'), |
|
| 223 | + 'ZA' => __('South Africa', 'invoicing'), |
|
| 224 | + 'GS' => __('South Georgia', 'invoicing'), |
|
| 225 | + 'KR' => __('South Korea', 'invoicing'), |
|
| 226 | + 'SS' => __('South Sudan', 'invoicing'), |
|
| 227 | + 'ES' => __('Spain', 'invoicing'), |
|
| 228 | + 'LK' => __('Sri Lanka', 'invoicing'), |
|
| 229 | + 'SD' => __('Sudan', 'invoicing'), |
|
| 230 | + 'SR' => __('Suriname', 'invoicing'), |
|
| 231 | + 'SJ' => __('Svalbard and Jan Mayen Islands', 'invoicing'), |
|
| 232 | + 'SZ' => __('Swaziland', 'invoicing'), |
|
| 233 | + 'SE' => __('Sweden', 'invoicing'), |
|
| 234 | + 'CH' => __('Switzerland', 'invoicing'), |
|
| 235 | + 'SY' => __('Syrian Arab Republic', 'invoicing'), |
|
| 236 | + 'TW' => __('Taiwan', 'invoicing'), |
|
| 237 | + 'TJ' => __('Tajikistan', 'invoicing'), |
|
| 238 | + 'TZ' => __('Tanzania', 'invoicing'), |
|
| 239 | + 'TH' => __('Thailand', 'invoicing'), |
|
| 240 | + 'TL' => __('Timor-Leste', 'invoicing'), |
|
| 241 | + 'TG' => __('Togo', 'invoicing'), |
|
| 242 | + 'TK' => __('Tokelau', 'invoicing'), |
|
| 243 | + 'TO' => __('Tonga', 'invoicing'), |
|
| 244 | + 'TT' => __('Trinidad and Tobago', 'invoicing'), |
|
| 245 | + 'TN' => __('Tunisia', 'invoicing'), |
|
| 246 | + 'TR' => __('Turkey', 'invoicing'), |
|
| 247 | + 'TM' => __('Turkmenistan', 'invoicing'), |
|
| 248 | + 'TC' => __('Turks and Caicos Islands', 'invoicing'), |
|
| 249 | + 'TV' => __('Tuvalu', 'invoicing'), |
|
| 250 | + 'UG' => __('Uganda', 'invoicing'), |
|
| 251 | + 'UA' => __('Ukraine', 'invoicing'), |
|
| 252 | + 'AE' => __('United Arab Emirates', 'invoicing'), |
|
| 253 | + 'UY' => __('Uruguay', 'invoicing'), |
|
| 254 | + 'UM' => __('US Minor Outlying Islands', 'invoicing'), |
|
| 255 | + 'UZ' => __('Uzbekistan', 'invoicing'), |
|
| 256 | + 'VU' => __('Vanuatu', 'invoicing'), |
|
| 257 | + 'VE' => __('Venezuela', 'invoicing'), |
|
| 258 | + 'VN' => __('Vietnam', 'invoicing'), |
|
| 259 | + 'VG' => __('Virgin Islands (British)', 'invoicing'), |
|
| 260 | + 'VI' => __('Virgin Islands (USA)', 'invoicing'), |
|
| 261 | + 'WF' => __('Wallis and Futuna Islands', 'invoicing'), |
|
| 262 | + 'EH' => __('Western Sahara', 'invoicing'), |
|
| 263 | + 'WS' => __('Western Samoa', 'invoicing'), |
|
| 264 | + 'YE' => __('Yemen', 'invoicing'), |
|
| 265 | + 'ZM' => __('Zambia', 'invoicing'), |
|
| 266 | + 'ZW' => __('Zimbabwe', 'invoicing'), |
|
| 267 | 267 | ); |
@@ -9,41 +9,41 @@ discard block |
||
| 9 | 9 | * @version 1.0.19 |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | return array( |
| 15 | 15 | |
| 16 | 16 | array( |
| 17 | 17 | 'type' => 'heading', |
| 18 | - 'name' => __( 'Heading', 'invoicing' ), |
|
| 18 | + 'name' => __('Heading', 'invoicing'), |
|
| 19 | 19 | 'defaults' => array( |
| 20 | 20 | 'level' => 'h2', |
| 21 | - 'text' => __( 'Heading', 'invoicing' ), |
|
| 21 | + 'text' => __('Heading', 'invoicing'), |
|
| 22 | 22 | ), |
| 23 | 23 | ), |
| 24 | 24 | |
| 25 | 25 | array( |
| 26 | 26 | 'type' => 'paragraph', |
| 27 | - 'name' => __( 'Paragraph', 'invoicing' ), |
|
| 27 | + 'name' => __('Paragraph', 'invoicing'), |
|
| 28 | 28 | 'defaults' => array( |
| 29 | - 'text' => __( 'Paragraph text', 'invoicing' ), |
|
| 29 | + 'text' => __('Paragraph text', 'invoicing'), |
|
| 30 | 30 | ), |
| 31 | 31 | ), |
| 32 | 32 | |
| 33 | 33 | array( |
| 34 | 34 | 'type' => 'alert', |
| 35 | - 'name' => __( 'Alert', 'invoicing' ), |
|
| 35 | + 'name' => __('Alert', 'invoicing'), |
|
| 36 | 36 | 'defaults' => array( |
| 37 | 37 | 'value' => '', |
| 38 | 38 | 'class' => 'alert-warning', |
| 39 | - 'text' => __( 'Alert', 'invoicing' ), |
|
| 39 | + 'text' => __('Alert', 'invoicing'), |
|
| 40 | 40 | 'dismissible' => false, |
| 41 | 41 | ), |
| 42 | 42 | ), |
| 43 | 43 | |
| 44 | 44 | array( |
| 45 | 45 | 'type' => 'separator', |
| 46 | - 'name' => __( 'Separator', 'invoicing' ), |
|
| 46 | + 'name' => __('Separator', 'invoicing'), |
|
| 47 | 47 | 'defaults' => array( |
| 48 | 48 | 'value' => '', |
| 49 | 49 | ), |
@@ -51,11 +51,11 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | array( |
| 53 | 53 | 'type' => 'text', |
| 54 | - 'name' => __( 'Text Input', 'invoicing' ), |
|
| 54 | + 'name' => __('Text Input', 'invoicing'), |
|
| 55 | 55 | 'defaults' => array( |
| 56 | - 'placeholder' => __( 'Enter some text', 'invoicing' ), |
|
| 56 | + 'placeholder' => __('Enter some text', 'invoicing'), |
|
| 57 | 57 | 'value' => '', |
| 58 | - 'label' => __( 'Field Label', 'invoicing' ), |
|
| 58 | + 'label' => __('Field Label', 'invoicing'), |
|
| 59 | 59 | 'description' => '', |
| 60 | 60 | 'required' => false, |
| 61 | 61 | ), |
@@ -63,11 +63,11 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | array( |
| 65 | 65 | 'type' => 'textarea', |
| 66 | - 'name' => __( 'Textarea', 'invoicing' ), |
|
| 66 | + 'name' => __('Textarea', 'invoicing'), |
|
| 67 | 67 | 'defaults' => array( |
| 68 | - 'placeholder' => __( 'Enter your text here', 'invoicing' ), |
|
| 68 | + 'placeholder' => __('Enter your text here', 'invoicing'), |
|
| 69 | 69 | 'value' => '', |
| 70 | - 'label' => __( 'Textarea Label', 'invoicing' ), |
|
| 70 | + 'label' => __('Textarea Label', 'invoicing'), |
|
| 71 | 71 | 'description' => '', |
| 72 | 72 | 'required' => false, |
| 73 | 73 | ), |
@@ -75,27 +75,27 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | array( |
| 77 | 77 | 'type' => 'select', |
| 78 | - 'name' => __( 'Dropdown', 'invoicing' ), |
|
| 78 | + 'name' => __('Dropdown', 'invoicing'), |
|
| 79 | 79 | 'defaults' => array( |
| 80 | - 'placeholder' => __( 'Select a value', 'invoicing' ), |
|
| 80 | + 'placeholder' => __('Select a value', 'invoicing'), |
|
| 81 | 81 | 'value' => '', |
| 82 | - 'label' => __( 'Dropdown Label', 'invoicing' ), |
|
| 82 | + 'label' => __('Dropdown Label', 'invoicing'), |
|
| 83 | 83 | 'description' => '', |
| 84 | 84 | 'required' => false, |
| 85 | 85 | 'options' => array( |
| 86 | - esc_attr__( 'Option One', 'invoicing' ), |
|
| 87 | - esc_attr__( 'Option Two', 'invoicing' ), |
|
| 88 | - esc_attr__( 'Option Three', 'invoicing' ), |
|
| 86 | + esc_attr__('Option One', 'invoicing'), |
|
| 87 | + esc_attr__('Option Two', 'invoicing'), |
|
| 88 | + esc_attr__('Option Three', 'invoicing'), |
|
| 89 | 89 | ), |
| 90 | 90 | ), |
| 91 | 91 | ), |
| 92 | 92 | |
| 93 | 93 | array( |
| 94 | 94 | 'type' => 'checkbox', |
| 95 | - 'name' => __( 'Checkbox', 'invoicing' ), |
|
| 95 | + 'name' => __('Checkbox', 'invoicing'), |
|
| 96 | 96 | 'defaults' => array( |
| 97 | 97 | 'value' => '', |
| 98 | - 'label' => __( 'Checkbox Label', 'invoicing' ), |
|
| 98 | + 'label' => __('Checkbox Label', 'invoicing'), |
|
| 99 | 99 | 'description' => '', |
| 100 | 100 | 'required' => false, |
| 101 | 101 | ), |
@@ -103,23 +103,23 @@ discard block |
||
| 103 | 103 | |
| 104 | 104 | array( |
| 105 | 105 | 'type' => 'radio', |
| 106 | - 'name' => __( 'Radio', 'invoicing' ), |
|
| 106 | + 'name' => __('Radio', 'invoicing'), |
|
| 107 | 107 | 'defaults' => array( |
| 108 | - 'label' => __( 'Select one choice', 'invoicing' ), |
|
| 108 | + 'label' => __('Select one choice', 'invoicing'), |
|
| 109 | 109 | 'options' => array( |
| 110 | - esc_attr__( 'Choice One', 'invoicing' ), |
|
| 111 | - esc_attr__( 'Choice Two', 'invoicing' ), |
|
| 112 | - esc_attr__( 'Choice Three', 'invoicing' ), |
|
| 110 | + esc_attr__('Choice One', 'invoicing'), |
|
| 111 | + esc_attr__('Choice Two', 'invoicing'), |
|
| 112 | + esc_attr__('Choice Three', 'invoicing'), |
|
| 113 | 113 | ), |
| 114 | 114 | ), |
| 115 | 115 | ), |
| 116 | 116 | |
| 117 | 117 | array( |
| 118 | 118 | 'type' => 'date', |
| 119 | - 'name' => __( 'Date', 'invoicing' ), |
|
| 119 | + 'name' => __('Date', 'invoicing'), |
|
| 120 | 120 | 'defaults' => array( |
| 121 | 121 | 'value' => '', |
| 122 | - 'label' => __( 'Date', 'invoicing' ), |
|
| 122 | + 'label' => __('Date', 'invoicing'), |
|
| 123 | 123 | 'description' => '', |
| 124 | 124 | 'single' => 'single', |
| 125 | 125 | 'required' => false, |
@@ -128,10 +128,10 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | array( |
| 130 | 130 | 'type' => 'time', |
| 131 | - 'name' => __( 'Time', 'invoicing' ), |
|
| 131 | + 'name' => __('Time', 'invoicing'), |
|
| 132 | 132 | 'defaults' => array( |
| 133 | 133 | 'value' => '', |
| 134 | - 'label' => __( 'Time', 'invoicing' ), |
|
| 134 | + 'label' => __('Time', 'invoicing'), |
|
| 135 | 135 | 'description' => '', |
| 136 | 136 | 'required' => false, |
| 137 | 137 | ), |
@@ -139,11 +139,11 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | array( |
| 141 | 141 | 'type' => 'number', |
| 142 | - 'name' => __( 'Number', 'invoicing' ), |
|
| 142 | + 'name' => __('Number', 'invoicing'), |
|
| 143 | 143 | 'defaults' => array( |
| 144 | 144 | 'placeholder' => '', |
| 145 | 145 | 'value' => '', |
| 146 | - 'label' => __( 'Number', 'invoicing' ), |
|
| 146 | + 'label' => __('Number', 'invoicing'), |
|
| 147 | 147 | 'description' => '', |
| 148 | 148 | 'required' => false, |
| 149 | 149 | ), |
@@ -151,11 +151,11 @@ discard block |
||
| 151 | 151 | |
| 152 | 152 | array( |
| 153 | 153 | 'type' => 'website', |
| 154 | - 'name' => __( 'Website', 'invoicing' ), |
|
| 154 | + 'name' => __('Website', 'invoicing'), |
|
| 155 | 155 | 'defaults' => array( |
| 156 | 156 | 'placeholder' => 'http://example.com', |
| 157 | 157 | 'value' => '', |
| 158 | - 'label' => __( 'Website', 'invoicing' ), |
|
| 158 | + 'label' => __('Website', 'invoicing'), |
|
| 159 | 159 | 'description' => '', |
| 160 | 160 | 'required' => false, |
| 161 | 161 | ), |
@@ -163,11 +163,11 @@ discard block |
||
| 163 | 163 | |
| 164 | 164 | array( |
| 165 | 165 | 'type' => 'email', |
| 166 | - 'name' => __( 'Email', 'invoicing' ), |
|
| 166 | + 'name' => __('Email', 'invoicing'), |
|
| 167 | 167 | 'defaults' => array( |
| 168 | 168 | 'placeholder' => '[email protected]', |
| 169 | 169 | 'value' => '', |
| 170 | - 'label' => __( 'Email Address', 'invoicing' ), |
|
| 170 | + 'label' => __('Email Address', 'invoicing'), |
|
| 171 | 171 | 'description' => '', |
| 172 | 172 | 'required' => false, |
| 173 | 173 | ), |
@@ -175,31 +175,31 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | array( |
| 177 | 177 | 'type' => 'file_upload', |
| 178 | - 'name' => __( 'File Upload', 'invoicing' ), |
|
| 178 | + 'name' => __('File Upload', 'invoicing'), |
|
| 179 | 179 | 'defaults' => array( |
| 180 | 180 | 'value' => '', |
| 181 | - 'label' => __( 'Upload File', 'invoicing' ), |
|
| 181 | + 'label' => __('Upload File', 'invoicing'), |
|
| 182 | 182 | 'description' => '', |
| 183 | 183 | 'required' => false, |
| 184 | 184 | 'max_file_num' => 1, |
| 185 | - 'file_types' => array( 'jpg|jpeg|jpe', 'gif', 'png' ), |
|
| 185 | + 'file_types' => array('jpg|jpeg|jpe', 'gif', 'png'), |
|
| 186 | 186 | ), |
| 187 | 187 | ), |
| 188 | 188 | |
| 189 | 189 | array( |
| 190 | 190 | 'type' => 'address', |
| 191 | - 'name' => __( 'Address', 'invoicing' ), |
|
| 191 | + 'name' => __('Address', 'invoicing'), |
|
| 192 | 192 | 'defaults' => array( |
| 193 | 193 | |
| 194 | 194 | 'address_type' => 'billing', |
| 195 | - 'billing_address_title' => __( 'Billing Address', 'invoicing' ), |
|
| 196 | - 'shipping_address_title' => __( 'Shipping Address', 'invoicing' ), |
|
| 197 | - 'shipping_address_toggle' => __( 'Same billing & shipping address.', 'invoicing' ), |
|
| 195 | + 'billing_address_title' => __('Billing Address', 'invoicing'), |
|
| 196 | + 'shipping_address_title' => __('Shipping Address', 'invoicing'), |
|
| 197 | + 'shipping_address_toggle' => __('Same billing & shipping address.', 'invoicing'), |
|
| 198 | 198 | 'fields' => array( |
| 199 | 199 | array( |
| 200 | 200 | 'placeholder' => 'Jon', |
| 201 | 201 | 'value' => '', |
| 202 | - 'label' => __( 'First Name', 'invoicing' ), |
|
| 202 | + 'label' => __('First Name', 'invoicing'), |
|
| 203 | 203 | 'description' => '', |
| 204 | 204 | 'required' => false, |
| 205 | 205 | 'visible' => true, |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | array( |
| 211 | 211 | 'placeholder' => 'Snow', |
| 212 | 212 | 'value' => '', |
| 213 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
| 213 | + 'label' => __('Last Name', 'invoicing'), |
|
| 214 | 214 | 'description' => '', |
| 215 | 215 | 'required' => false, |
| 216 | 216 | 'visible' => true, |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | array( |
| 222 | 222 | 'placeholder' => '', |
| 223 | 223 | 'value' => '', |
| 224 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 224 | + 'label' => __('Address', 'invoicing'), |
|
| 225 | 225 | 'description' => '', |
| 226 | 226 | 'required' => false, |
| 227 | 227 | 'visible' => true, |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | array( |
| 233 | 233 | 'placeholder' => '', |
| 234 | 234 | 'value' => '', |
| 235 | - 'label' => __( 'City', 'invoicing' ), |
|
| 235 | + 'label' => __('City', 'invoicing'), |
|
| 236 | 236 | 'description' => '', |
| 237 | 237 | 'required' => false, |
| 238 | 238 | 'visible' => true, |
@@ -241,9 +241,9 @@ discard block |
||
| 241 | 241 | ), |
| 242 | 242 | |
| 243 | 243 | array( |
| 244 | - 'placeholder' => __( 'Select your country' ), |
|
| 244 | + 'placeholder' => __('Select your country'), |
|
| 245 | 245 | 'value' => '', |
| 246 | - 'label' => __( 'Country', 'invoicing' ), |
|
| 246 | + 'label' => __('Country', 'invoicing'), |
|
| 247 | 247 | 'description' => '', |
| 248 | 248 | 'required' => false, |
| 249 | 249 | 'visible' => true, |
@@ -252,9 +252,9 @@ discard block |
||
| 252 | 252 | ), |
| 253 | 253 | |
| 254 | 254 | array( |
| 255 | - 'placeholder' => __( 'Choose a state', 'invoicing' ), |
|
| 255 | + 'placeholder' => __('Choose a state', 'invoicing'), |
|
| 256 | 256 | 'value' => '', |
| 257 | - 'label' => __( 'State / Province', 'invoicing' ), |
|
| 257 | + 'label' => __('State / Province', 'invoicing'), |
|
| 258 | 258 | 'description' => '', |
| 259 | 259 | 'required' => false, |
| 260 | 260 | 'visible' => true, |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | array( |
| 266 | 266 | 'placeholder' => '', |
| 267 | 267 | 'value' => '', |
| 268 | - 'label' => __( 'ZIP / Postcode', 'invoicing' ), |
|
| 268 | + 'label' => __('ZIP / Postcode', 'invoicing'), |
|
| 269 | 269 | 'description' => '', |
| 270 | 270 | 'required' => false, |
| 271 | 271 | 'visible' => true, |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | array( |
| 277 | 277 | 'placeholder' => '', |
| 278 | 278 | 'value' => '', |
| 279 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 279 | + 'label' => __('Phone', 'invoicing'), |
|
| 280 | 280 | 'description' => '', |
| 281 | 281 | 'required' => false, |
| 282 | 282 | 'visible' => true, |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | array( |
| 288 | 288 | 'placeholder' => '', |
| 289 | 289 | 'value' => '', |
| 290 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 290 | + 'label' => __('Company', 'invoicing'), |
|
| 291 | 291 | 'description' => '', |
| 292 | 292 | 'required' => false, |
| 293 | 293 | 'visible' => false, |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | array( |
| 299 | 299 | 'placeholder' => '', |
| 300 | 300 | 'value' => '', |
| 301 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
| 301 | + 'label' => __('Company ID', 'invoicing'), |
|
| 302 | 302 | 'description' => '', |
| 303 | 303 | 'required' => false, |
| 304 | 304 | 'visible' => false, |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | array( |
| 310 | 310 | 'placeholder' => '', |
| 311 | 311 | 'value' => '', |
| 312 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 312 | + 'label' => __('VAT Number', 'invoicing'), |
|
| 313 | 313 | 'description' => '', |
| 314 | 314 | 'required' => false, |
| 315 | 315 | 'visible' => false, |
@@ -322,11 +322,11 @@ discard block |
||
| 322 | 322 | |
| 323 | 323 | array( |
| 324 | 324 | 'type' => 'billing_email', |
| 325 | - 'name' => __( 'Billing Email', 'invoicing' ), |
|
| 325 | + 'name' => __('Billing Email', 'invoicing'), |
|
| 326 | 326 | 'defaults' => array( |
| 327 | 327 | 'placeholder' => '[email protected]', |
| 328 | 328 | 'value' => '', |
| 329 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
| 329 | + 'label' => __('Billing Email', 'invoicing'), |
|
| 330 | 330 | 'description' => '', |
| 331 | 331 | 'premade' => true, |
| 332 | 332 | ), |
@@ -334,18 +334,18 @@ discard block |
||
| 334 | 334 | |
| 335 | 335 | array( |
| 336 | 336 | 'type' => 'discount', |
| 337 | - 'name' => __( 'Discount Input', 'invoicing' ), |
|
| 337 | + 'name' => __('Discount Input', 'invoicing'), |
|
| 338 | 338 | 'defaults' => array( |
| 339 | 339 | 'value' => '', |
| 340 | - 'input_label' => __( 'Coupon Code', 'invoicing' ), |
|
| 341 | - 'button_label' => __( 'Apply Coupon', 'invoicing' ), |
|
| 342 | - 'description' => __( 'Have a discount code? Enter it above.', 'invoicing' ), |
|
| 340 | + 'input_label' => __('Coupon Code', 'invoicing'), |
|
| 341 | + 'button_label' => __('Apply Coupon', 'invoicing'), |
|
| 342 | + 'description' => __('Have a discount code? Enter it above.', 'invoicing'), |
|
| 343 | 343 | ), |
| 344 | 344 | ), |
| 345 | 345 | |
| 346 | 346 | array( |
| 347 | 347 | 'type' => 'items', |
| 348 | - 'name' => __( 'Items', 'invoicing' ), |
|
| 348 | + 'name' => __('Items', 'invoicing'), |
|
| 349 | 349 | 'defaults' => array( |
| 350 | 350 | 'value' => '', |
| 351 | 351 | 'items_type' => 'total', |
@@ -357,22 +357,22 @@ discard block |
||
| 357 | 357 | |
| 358 | 358 | array( |
| 359 | 359 | 'type' => 'price_input', |
| 360 | - 'name' => __( 'Price Input', 'invoicing' ), |
|
| 360 | + 'name' => __('Price Input', 'invoicing'), |
|
| 361 | 361 | 'defaults' => array( |
| 362 | - 'placeholder' => wpinv_format_amount( 0 ), |
|
| 363 | - 'value' => wpinv_format_amount( 0 ), |
|
| 364 | - 'minimum' => wpinv_format_amount( 0 ), |
|
| 365 | - 'label' => __( 'Enter Amount', 'invoicing' ), |
|
| 362 | + 'placeholder' => wpinv_format_amount(0), |
|
| 363 | + 'value' => wpinv_format_amount(0), |
|
| 364 | + 'minimum' => wpinv_format_amount(0), |
|
| 365 | + 'label' => __('Enter Amount', 'invoicing'), |
|
| 366 | 366 | 'description' => '', |
| 367 | 367 | ), |
| 368 | 368 | ), |
| 369 | 369 | |
| 370 | 370 | array( |
| 371 | 371 | 'type' => 'price_select', |
| 372 | - 'name' => __( 'Price Select', 'invoicing' ), |
|
| 372 | + 'name' => __('Price Select', 'invoicing'), |
|
| 373 | 373 | 'defaults' => array( |
| 374 | 374 | 'description' => '', |
| 375 | - 'label' => __( 'Select Amount', 'invoicing' ), |
|
| 375 | + 'label' => __('Select Amount', 'invoicing'), |
|
| 376 | 376 | 'options' => 'Option 1|10, Option 2|20', |
| 377 | 377 | 'placeholder' => '', |
| 378 | 378 | 'select_type' => 'select', |
@@ -381,39 +381,39 @@ discard block |
||
| 381 | 381 | |
| 382 | 382 | array( |
| 383 | 383 | 'type' => 'pay_button', |
| 384 | - 'name' => __( 'Payment Button', 'invoicing' ), |
|
| 384 | + 'name' => __('Payment Button', 'invoicing'), |
|
| 385 | 385 | 'defaults' => array( |
| 386 | 386 | 'value' => '', |
| 387 | 387 | 'class' => 'btn-primary', |
| 388 | - 'label' => __( 'Pay %price% »', 'invoicing' ), |
|
| 389 | - 'free' => __( 'Continue »', 'invoicing' ), |
|
| 390 | - 'description' => __( 'By continuing with our payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
| 388 | + 'label' => __('Pay %price% »', 'invoicing'), |
|
| 389 | + 'free' => __('Continue »', 'invoicing'), |
|
| 390 | + 'description' => __('By continuing with our payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
| 391 | 391 | 'premade' => true, |
| 392 | 392 | ), |
| 393 | 393 | ), |
| 394 | 394 | |
| 395 | 395 | array( |
| 396 | 396 | 'type' => 'gateway_select', |
| 397 | - 'name' => __( 'Gateway Select', 'invoicing' ), |
|
| 397 | + 'name' => __('Gateway Select', 'invoicing'), |
|
| 398 | 398 | 'defaults' => array( |
| 399 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 399 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 400 | 400 | 'premade' => true, |
| 401 | 401 | ), |
| 402 | 402 | ), |
| 403 | 403 | |
| 404 | 404 | array( |
| 405 | 405 | 'type' => 'total_payable', |
| 406 | - 'name' => __( 'Total Payable', 'invoicing' ), |
|
| 406 | + 'name' => __('Total Payable', 'invoicing'), |
|
| 407 | 407 | 'defaults' => array( |
| 408 | - 'text' => __( 'Total to pay:', 'invoicing' ), |
|
| 408 | + 'text' => __('Total to pay:', 'invoicing'), |
|
| 409 | 409 | ), |
| 410 | 410 | ), |
| 411 | 411 | |
| 412 | 412 | array( |
| 413 | 413 | 'type' => 'ip_address', |
| 414 | - 'name' => __( 'IP Address', 'invoicing' ), |
|
| 414 | + 'name' => __('IP Address', 'invoicing'), |
|
| 415 | 415 | 'defaults' => array( |
| 416 | - 'text' => __( 'Your IP address is:', 'invoicing' ), |
|
| 416 | + 'text' => __('Your IP address is:', 'invoicing'), |
|
| 417 | 417 | ), |
| 418 | 418 | ), |
| 419 | 419 | ); |
@@ -9,181 +9,181 @@ |
||
| 9 | 9 | * @version 1.0.19 |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | return array( |
| 15 | 15 | |
| 16 | 16 | 'id' => array( |
| 17 | - 'description' => __( 'Unique identifier for the discount.', 'invoicing' ), |
|
| 17 | + 'description' => __('Unique identifier for the discount.', 'invoicing'), |
|
| 18 | 18 | 'type' => 'integer', |
| 19 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 19 | + 'context' => array('view', 'edit', 'embed'), |
|
| 20 | 20 | 'readonly' => true, |
| 21 | 21 | ), |
| 22 | 22 | |
| 23 | 23 | 'status' => array( |
| 24 | - 'description' => __( 'A named status for the discount.', 'invoicing' ), |
|
| 24 | + 'description' => __('A named status for the discount.', 'invoicing'), |
|
| 25 | 25 | 'type' => 'string', |
| 26 | - 'enum' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
| 26 | + 'enum' => array('publish', 'pending', 'draft', 'expired'), |
|
| 27 | 27 | 'default' => 'draft', |
| 28 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 28 | + 'context' => array('view', 'edit', 'embed'), |
|
| 29 | 29 | ), |
| 30 | 30 | |
| 31 | 31 | 'version' => array( |
| 32 | - 'description' => __( 'Plugin version when the discount was created.', 'invoicing' ), |
|
| 32 | + 'description' => __('Plugin version when the discount was created.', 'invoicing'), |
|
| 33 | 33 | 'type' => 'string', |
| 34 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 34 | + 'context' => array('view', 'edit', 'embed'), |
|
| 35 | 35 | 'readonly' => true, |
| 36 | 36 | ), |
| 37 | 37 | |
| 38 | 38 | 'date_created' => array( |
| 39 | - 'description' => __( "The date the discount was created, in the site's timezone.", 'invoicing' ), |
|
| 39 | + 'description' => __("The date the discount was created, in the site's timezone.", 'invoicing'), |
|
| 40 | 40 | 'type' => 'string', |
| 41 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 41 | + 'context' => array('view', 'edit', 'embed'), |
|
| 42 | 42 | ), |
| 43 | 43 | |
| 44 | 44 | 'date_created_gmt' => array( |
| 45 | - 'description' => __( 'The GMT date the discount was created.', 'invoicing' ), |
|
| 45 | + 'description' => __('The GMT date the discount was created.', 'invoicing'), |
|
| 46 | 46 | 'type' => 'string', |
| 47 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 47 | + 'context' => array('view', 'edit', 'embed'), |
|
| 48 | 48 | 'readonly' => true, |
| 49 | 49 | ), |
| 50 | 50 | |
| 51 | 51 | 'date_modified' => array( |
| 52 | - 'description' => __( "The date the discount was last modified, in the site's timezone.", 'invoicing' ), |
|
| 52 | + 'description' => __("The date the discount was last modified, in the site's timezone.", 'invoicing'), |
|
| 53 | 53 | 'type' => 'string', |
| 54 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 54 | + 'context' => array('view', 'edit', 'embed'), |
|
| 55 | 55 | 'readonly' => true, |
| 56 | 56 | ), |
| 57 | 57 | |
| 58 | 58 | 'date_modified_gmt' => array( |
| 59 | - 'description' => __( 'The GMT date the discount was last modified.', 'invoicing' ), |
|
| 59 | + 'description' => __('The GMT date the discount was last modified.', 'invoicing'), |
|
| 60 | 60 | 'type' => 'string', |
| 61 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 61 | + 'context' => array('view', 'edit', 'embed'), |
|
| 62 | 62 | 'readonly' => true, |
| 63 | 63 | ), |
| 64 | 64 | |
| 65 | 65 | 'name' => array( |
| 66 | - 'description' => __( 'The discount name.', 'invoicing' ), |
|
| 66 | + 'description' => __('The discount name.', 'invoicing'), |
|
| 67 | 67 | 'type' => 'string', |
| 68 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 68 | + 'context' => array('view', 'edit', 'embed'), |
|
| 69 | 69 | ), |
| 70 | 70 | |
| 71 | 71 | 'description' => array( |
| 72 | - 'description' => __( 'A description of what the discount is all about.', 'invoicing' ), |
|
| 72 | + 'description' => __('A description of what the discount is all about.', 'invoicing'), |
|
| 73 | 73 | 'type' => 'string', |
| 74 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 74 | + 'context' => array('view', 'edit', 'embed'), |
|
| 75 | 75 | ), |
| 76 | 76 | |
| 77 | 77 | 'code' => array( |
| 78 | - 'description' => __( 'The discount code.', 'invoicing' ), |
|
| 78 | + 'description' => __('The discount code.', 'invoicing'), |
|
| 79 | 79 | 'type' => 'string', |
| 80 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 80 | + 'context' => array('view', 'edit', 'embed'), |
|
| 81 | 81 | 'required' => true, |
| 82 | 82 | ), |
| 83 | 83 | |
| 84 | 84 | 'type' => array( |
| 85 | - 'description' => __( 'The type of discount.', 'invoicing' ), |
|
| 85 | + 'description' => __('The type of discount.', 'invoicing'), |
|
| 86 | 86 | 'type' => 'string', |
| 87 | - 'enum' => array_keys( wpinv_get_discount_types() ), |
|
| 88 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 87 | + 'enum' => array_keys(wpinv_get_discount_types()), |
|
| 88 | + 'context' => array('view', 'edit', 'embed'), |
|
| 89 | 89 | 'default' => 'percent', |
| 90 | 90 | ), |
| 91 | 91 | |
| 92 | 92 | 'amount' => array( |
| 93 | - 'description' => __( 'The discount value.', 'invoicing' ), |
|
| 93 | + 'description' => __('The discount value.', 'invoicing'), |
|
| 94 | 94 | 'type' => 'number', |
| 95 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 95 | + 'context' => array('view', 'edit', 'embed'), |
|
| 96 | 96 | 'required' => true, |
| 97 | 97 | ), |
| 98 | 98 | |
| 99 | 99 | 'formatted_amount' => array( |
| 100 | - 'description' => __( 'The formatted discount value.', 'invoicing' ), |
|
| 100 | + 'description' => __('The formatted discount value.', 'invoicing'), |
|
| 101 | 101 | 'type' => 'string', |
| 102 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 102 | + 'context' => array('view', 'edit', 'embed'), |
|
| 103 | 103 | 'readonly' => true, |
| 104 | 104 | ), |
| 105 | 105 | |
| 106 | 106 | 'uses' => array( |
| 107 | - 'description' => __( 'The number of times the discount has been used.', 'invoicing' ), |
|
| 107 | + 'description' => __('The number of times the discount has been used.', 'invoicing'), |
|
| 108 | 108 | 'type' => 'integer', |
| 109 | - 'context' => array( 'view', 'embed' ), |
|
| 109 | + 'context' => array('view', 'embed'), |
|
| 110 | 110 | 'readonly' => true, |
| 111 | 111 | ), |
| 112 | 112 | |
| 113 | 113 | 'max_uses' => array( |
| 114 | - 'description' => __( 'The maximum number of times the discount can be used.', 'invoicing' ), |
|
| 114 | + 'description' => __('The maximum number of times the discount can be used.', 'invoicing'), |
|
| 115 | 115 | 'type' => 'integer', |
| 116 | - 'context' => array( 'view', 'edit' ), |
|
| 116 | + 'context' => array('view', 'edit'), |
|
| 117 | 117 | ), |
| 118 | 118 | |
| 119 | 119 | 'usage' => array( |
| 120 | - 'description' => __( "The discount's usage, i.e uses / max uses.", 'invoicing' ), |
|
| 120 | + 'description' => __("The discount's usage, i.e uses / max uses.", 'invoicing'), |
|
| 121 | 121 | 'type' => 'string', |
| 122 | - 'context' => array( 'view', 'embed' ), |
|
| 122 | + 'context' => array('view', 'embed'), |
|
| 123 | 123 | 'readonly' => true, |
| 124 | 124 | ), |
| 125 | 125 | |
| 126 | 126 | 'is_single_use' => array( |
| 127 | - 'description' => __( 'Whether or not the discount can only be used once per user.', 'invoicing' ), |
|
| 127 | + 'description' => __('Whether or not the discount can only be used once per user.', 'invoicing'), |
|
| 128 | 128 | 'type' => 'boolean', |
| 129 | - 'context' => array( 'view', 'edit' ), |
|
| 129 | + 'context' => array('view', 'edit'), |
|
| 130 | 130 | ), |
| 131 | 131 | |
| 132 | 132 | 'is_recurring' => array( |
| 133 | - 'description' => __( 'Whether or not the discount applies to the initial payment only or all recurring payments.', 'invoicing' ), |
|
| 133 | + 'description' => __('Whether or not the discount applies to the initial payment only or all recurring payments.', 'invoicing'), |
|
| 134 | 134 | 'type' => 'boolean', |
| 135 | - 'context' => array( 'view', 'edit' ), |
|
| 135 | + 'context' => array('view', 'edit'), |
|
| 136 | 136 | ), |
| 137 | 137 | |
| 138 | 138 | 'start_date' => array( |
| 139 | - 'description' => __( 'The start date for the discount in the format of yyyy-mm-dd hh:mm:ss. If provided, the discount can only be used after or on this date.', 'invoicing' ), |
|
| 139 | + 'description' => __('The start date for the discount in the format of yyyy-mm-dd hh:mm:ss. If provided, the discount can only be used after or on this date.', 'invoicing'), |
|
| 140 | 140 | 'type' => 'string', |
| 141 | - 'context' => array( 'view', 'edit' ), |
|
| 141 | + 'context' => array('view', 'edit'), |
|
| 142 | 142 | ), |
| 143 | 143 | |
| 144 | 144 | 'end_date' => array( |
| 145 | - 'description' => __( 'The expiration date for the discount.', 'invoicing' ), |
|
| 145 | + 'description' => __('The expiration date for the discount.', 'invoicing'), |
|
| 146 | 146 | 'type' => 'string', |
| 147 | - 'context' => array( 'view', 'edit' ), |
|
| 147 | + 'context' => array('view', 'edit'), |
|
| 148 | 148 | ), |
| 149 | 149 | |
| 150 | 150 | 'allowed_items' => array( |
| 151 | - 'description' => __( 'Items which are allowed to use this discount. Leave blank to enable for all items.', 'invoicing' ), |
|
| 151 | + 'description' => __('Items which are allowed to use this discount. Leave blank to enable for all items.', 'invoicing'), |
|
| 152 | 152 | 'type' => 'array', |
| 153 | - 'context' => array( 'view', 'edit' ), |
|
| 153 | + 'context' => array('view', 'edit'), |
|
| 154 | 154 | 'items' => array( |
| 155 | 155 | 'type' => 'integer', |
| 156 | 156 | ), |
| 157 | 157 | ), |
| 158 | 158 | |
| 159 | 159 | 'excluded_items' => array( |
| 160 | - 'description' => __( 'Items which are NOT allowed to use this discount.', 'invoicing' ), |
|
| 160 | + 'description' => __('Items which are NOT allowed to use this discount.', 'invoicing'), |
|
| 161 | 161 | 'type' => 'array', |
| 162 | - 'context' => array( 'view', 'edit' ), |
|
| 162 | + 'context' => array('view', 'edit'), |
|
| 163 | 163 | 'items' => array( |
| 164 | 164 | 'type' => 'integer', |
| 165 | 165 | ), |
| 166 | 166 | ), |
| 167 | 167 | |
| 168 | 168 | 'required_items' => array( |
| 169 | - 'description' => __( 'Items which are required to be in the cart before using this discount.', 'invoicing' ), |
|
| 169 | + 'description' => __('Items which are required to be in the cart before using this discount.', 'invoicing'), |
|
| 170 | 170 | 'type' => 'array', |
| 171 | - 'context' => array( 'view', 'edit' ), |
|
| 171 | + 'context' => array('view', 'edit'), |
|
| 172 | 172 | 'items' => array( |
| 173 | 173 | 'type' => 'integer', |
| 174 | 174 | ), |
| 175 | 175 | ), |
| 176 | 176 | |
| 177 | 177 | 'minimum_total' => array( |
| 178 | - 'description' => __( 'The minimum total needed to use this invoice.', 'invoicing' ), |
|
| 178 | + 'description' => __('The minimum total needed to use this invoice.', 'invoicing'), |
|
| 179 | 179 | 'type' => 'number', |
| 180 | - 'context' => array( 'view', 'edit' ), |
|
| 180 | + 'context' => array('view', 'edit'), |
|
| 181 | 181 | ), |
| 182 | 182 | |
| 183 | 183 | 'maximum_total' => array( |
| 184 | - 'description' => __( 'The maximum total needed to use this invoice.', 'invoicing' ), |
|
| 184 | + 'description' => __('The maximum total needed to use this invoice.', 'invoicing'), |
|
| 185 | 185 | 'type' => 'number', |
| 186 | - 'context' => array( 'view', 'edit' ), |
|
| 186 | + 'context' => array('view', 'edit'), |
|
| 187 | 187 | ), |
| 188 | 188 | |
| 189 | 189 | ); |
@@ -9,237 +9,237 @@ |
||
| 9 | 9 | * @version 1.0.19 |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | return array( |
| 15 | 15 | |
| 16 | 16 | 'id' => array( |
| 17 | - 'description' => __( 'Unique identifier for the item.', 'invoicing' ), |
|
| 17 | + 'description' => __('Unique identifier for the item.', 'invoicing'), |
|
| 18 | 18 | 'type' => 'integer', |
| 19 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 19 | + 'context' => array('view', 'edit', 'embed'), |
|
| 20 | 20 | 'readonly' => true, |
| 21 | 21 | ), |
| 22 | 22 | |
| 23 | 23 | 'parent_id' => array( |
| 24 | - 'description' => __( 'Parent item ID.', 'invoicing' ), |
|
| 24 | + 'description' => __('Parent item ID.', 'invoicing'), |
|
| 25 | 25 | 'type' => 'integer', |
| 26 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 26 | + 'context' => array('view', 'edit', 'embed'), |
|
| 27 | 27 | 'default' => 0, |
| 28 | 28 | ), |
| 29 | 29 | |
| 30 | 30 | 'status' => array( |
| 31 | - 'description' => __( 'A named status for the item.', 'invoicing' ), |
|
| 31 | + 'description' => __('A named status for the item.', 'invoicing'), |
|
| 32 | 32 | 'type' => 'string', |
| 33 | - 'enum' => array( 'draft', 'pending', 'publish' ), |
|
| 34 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 33 | + 'enum' => array('draft', 'pending', 'publish'), |
|
| 34 | + 'context' => array('view', 'edit', 'embed'), |
|
| 35 | 35 | 'default' => 'draft', |
| 36 | 36 | ), |
| 37 | 37 | |
| 38 | 38 | 'version' => array( |
| 39 | - 'description' => __( 'Plugin version when the item was created.', 'invoicing' ), |
|
| 39 | + 'description' => __('Plugin version when the item was created.', 'invoicing'), |
|
| 40 | 40 | 'type' => 'string', |
| 41 | - 'context' => array( 'view', 'edit' ), |
|
| 41 | + 'context' => array('view', 'edit'), |
|
| 42 | 42 | 'readonly' => true, |
| 43 | 43 | ), |
| 44 | 44 | |
| 45 | 45 | 'date_created' => array( |
| 46 | - 'description' => __( "The date the item was created, in the site's timezone.", 'invoicing' ), |
|
| 46 | + 'description' => __("The date the item was created, in the site's timezone.", 'invoicing'), |
|
| 47 | 47 | 'type' => 'string', |
| 48 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 48 | + 'context' => array('view', 'edit', 'embed'), |
|
| 49 | 49 | ), |
| 50 | 50 | |
| 51 | 51 | 'date_created_gmt' => array( |
| 52 | - 'description' => __( 'The GMT date the item was created.', 'invoicing' ), |
|
| 52 | + 'description' => __('The GMT date the item was created.', 'invoicing'), |
|
| 53 | 53 | 'type' => 'string', |
| 54 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 54 | + 'context' => array('view', 'edit', 'embed'), |
|
| 55 | 55 | 'readonly' => true, |
| 56 | 56 | ), |
| 57 | 57 | |
| 58 | 58 | 'date_modified' => array( |
| 59 | - 'description' => __( "The date the item was last modified, in the site's timezone.", 'invoicing' ), |
|
| 59 | + 'description' => __("The date the item was last modified, in the site's timezone.", 'invoicing'), |
|
| 60 | 60 | 'type' => 'string', |
| 61 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 61 | + 'context' => array('view', 'edit', 'embed'), |
|
| 62 | 62 | 'readonly' => true, |
| 63 | 63 | ), |
| 64 | 64 | |
| 65 | 65 | 'date_modified_gmt' => array( |
| 66 | - 'description' => __( 'The GMT date the item was last modified.', 'invoicing' ), |
|
| 66 | + 'description' => __('The GMT date the item was last modified.', 'invoicing'), |
|
| 67 | 67 | 'type' => 'string', |
| 68 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 68 | + 'context' => array('view', 'edit', 'embed'), |
|
| 69 | 69 | 'readonly' => true, |
| 70 | 70 | ), |
| 71 | 71 | |
| 72 | 72 | 'name' => array( |
| 73 | - 'description' => __( "The item's name.", 'invoicing' ), |
|
| 73 | + 'description' => __("The item's name.", 'invoicing'), |
|
| 74 | 74 | 'type' => 'string', |
| 75 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 75 | + 'context' => array('view', 'edit', 'embed'), |
|
| 76 | 76 | 'required' => true, |
| 77 | 77 | ), |
| 78 | 78 | |
| 79 | 79 | 'description' => array( |
| 80 | - 'description' => __( "The item's description.", 'invoicing' ), |
|
| 80 | + 'description' => __("The item's description.", 'invoicing'), |
|
| 81 | 81 | 'type' => 'string', |
| 82 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 82 | + 'context' => array('view', 'edit', 'embed'), |
|
| 83 | 83 | ), |
| 84 | 84 | |
| 85 | 85 | 'owner' => array( |
| 86 | - 'description' => __( 'The owner of the item (user id).', 'invoicing' ), |
|
| 86 | + 'description' => __('The owner of the item (user id).', 'invoicing'), |
|
| 87 | 87 | 'type' => 'integer', |
| 88 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 88 | + 'context' => array('view', 'edit', 'embed'), |
|
| 89 | 89 | ), |
| 90 | 90 | |
| 91 | 91 | 'price' => array( |
| 92 | - 'description' => __( 'The price of the item.', 'invoicing' ), |
|
| 92 | + 'description' => __('The price of the item.', 'invoicing'), |
|
| 93 | 93 | 'type' => 'number', |
| 94 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 94 | + 'context' => array('view', 'edit', 'embed'), |
|
| 95 | 95 | 'required' => true, |
| 96 | 96 | ), |
| 97 | 97 | |
| 98 | 98 | 'the_price' => array( |
| 99 | - 'description' => __( 'The formatted price of the item.', 'invoicing' ), |
|
| 99 | + 'description' => __('The formatted price of the item.', 'invoicing'), |
|
| 100 | 100 | 'type' => 'string', |
| 101 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 101 | + 'context' => array('view', 'edit', 'embed'), |
|
| 102 | 102 | 'readonly' => true, |
| 103 | 103 | ), |
| 104 | 104 | |
| 105 | 105 | 'type' => array( |
| 106 | - 'description' => __( 'The item type.', 'invoicing' ), |
|
| 106 | + 'description' => __('The item type.', 'invoicing'), |
|
| 107 | 107 | 'type' => 'string', |
| 108 | 108 | 'enum' => wpinv_item_types(), |
| 109 | 109 | 'default' => 'custom', |
| 110 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 110 | + 'context' => array('view', 'edit', 'embed'), |
|
| 111 | 111 | ), |
| 112 | 112 | |
| 113 | 113 | 'vat_rule' => array( |
| 114 | - 'description' => __( 'VAT rule applied to the item.', 'invoicing' ), |
|
| 114 | + 'description' => __('VAT rule applied to the item.', 'invoicing'), |
|
| 115 | 115 | 'type' => 'string', |
| 116 | - 'enum' => array_keys( getpaid_get_tax_rules() ), |
|
| 117 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 116 | + 'enum' => array_keys(getpaid_get_tax_rules()), |
|
| 117 | + 'context' => array('view', 'edit', 'embed'), |
|
| 118 | 118 | ), |
| 119 | 119 | |
| 120 | 120 | 'vat_class' => array( |
| 121 | - 'description' => __( 'VAT class for the item.', 'invoicing' ), |
|
| 121 | + 'description' => __('VAT class for the item.', 'invoicing'), |
|
| 122 | 122 | 'type' => 'string', |
| 123 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 124 | - 'enum' => array_keys( getpaid_get_tax_classes() ), |
|
| 123 | + 'context' => array('view', 'edit', 'embed'), |
|
| 124 | + 'enum' => array_keys(getpaid_get_tax_classes()), |
|
| 125 | 125 | ), |
| 126 | 126 | |
| 127 | 127 | 'custom_id' => array( |
| 128 | - 'description' => __( 'Custom id for the item.', 'invoicing' ), |
|
| 128 | + 'description' => __('Custom id for the item.', 'invoicing'), |
|
| 129 | 129 | 'type' => 'string', |
| 130 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 130 | + 'context' => array('view', 'edit', 'embed'), |
|
| 131 | 131 | ), |
| 132 | 132 | |
| 133 | 133 | 'custom_name' => array( |
| 134 | - 'description' => __( 'Custom name for the item.', 'invoicing' ), |
|
| 134 | + 'description' => __('Custom name for the item.', 'invoicing'), |
|
| 135 | 135 | 'type' => 'string', |
| 136 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 136 | + 'context' => array('view', 'edit', 'embed'), |
|
| 137 | 137 | ), |
| 138 | 138 | |
| 139 | 139 | 'custom_singular_name' => array( |
| 140 | - 'description' => __( 'Custom singular name for the item.', 'invoicing' ), |
|
| 140 | + 'description' => __('Custom singular name for the item.', 'invoicing'), |
|
| 141 | 141 | 'type' => 'string', |
| 142 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 142 | + 'context' => array('view', 'edit', 'embed'), |
|
| 143 | 143 | ), |
| 144 | 144 | |
| 145 | 145 | 'is_dynamic_pricing' => array( |
| 146 | - 'description' => __( 'Whether or not customers can enter their own prices when checking out.', 'invoicing' ), |
|
| 146 | + 'description' => __('Whether or not customers can enter their own prices when checking out.', 'invoicing'), |
|
| 147 | 147 | 'type' => 'integer', |
| 148 | - 'enum' => array( 0, 1 ), |
|
| 149 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 148 | + 'enum' => array(0, 1), |
|
| 149 | + 'context' => array('view', 'edit', 'embed'), |
|
| 150 | 150 | ), |
| 151 | 151 | |
| 152 | 152 | 'minimum_price' => array( |
| 153 | - 'description' => __( 'For dynamic prices, this is the minimum price that a user can set.', 'invoicing' ), |
|
| 153 | + 'description' => __('For dynamic prices, this is the minimum price that a user can set.', 'invoicing'), |
|
| 154 | 154 | 'type' => 'number', |
| 155 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 155 | + 'context' => array('view', 'edit', 'embed'), |
|
| 156 | 156 | ), |
| 157 | 157 | |
| 158 | 158 | 'is_recurring' => array( |
| 159 | - 'description' => __( 'Whether or not this is a subscription item.', 'invoicing' ), |
|
| 159 | + 'description' => __('Whether or not this is a subscription item.', 'invoicing'), |
|
| 160 | 160 | 'type' => 'integer', |
| 161 | - 'enum' => array( 0, 1 ), |
|
| 162 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 161 | + 'enum' => array(0, 1), |
|
| 162 | + 'context' => array('view', 'edit', 'embed'), |
|
| 163 | 163 | ), |
| 164 | 164 | |
| 165 | 165 | 'initial_price' => array( |
| 166 | - 'description' => __( 'The initial price of the item.', 'invoicing' ), |
|
| 166 | + 'description' => __('The initial price of the item.', 'invoicing'), |
|
| 167 | 167 | 'type' => 'number', |
| 168 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 168 | + 'context' => array('view', 'edit', 'embed'), |
|
| 169 | 169 | 'readonly' => true, |
| 170 | 170 | ), |
| 171 | 171 | |
| 172 | 172 | 'the_initial_price' => array( |
| 173 | - 'description' => __( 'The formatted initial price of the item.', 'invoicing' ), |
|
| 173 | + 'description' => __('The formatted initial price of the item.', 'invoicing'), |
|
| 174 | 174 | 'type' => 'string', |
| 175 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 175 | + 'context' => array('view', 'edit', 'embed'), |
|
| 176 | 176 | 'readonly' => true, |
| 177 | 177 | ), |
| 178 | 178 | |
| 179 | 179 | 'recurring_price' => array( |
| 180 | - 'description' => __( 'The recurring price of the item.', 'invoicing' ), |
|
| 180 | + 'description' => __('The recurring price of the item.', 'invoicing'), |
|
| 181 | 181 | 'type' => 'number', |
| 182 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 182 | + 'context' => array('view', 'edit', 'embed'), |
|
| 183 | 183 | 'readonly' => true, |
| 184 | 184 | ), |
| 185 | 185 | |
| 186 | 186 | 'the_recurring_price' => array( |
| 187 | - 'description' => __( 'The formatted recurring price of the item.', 'invoicing' ), |
|
| 187 | + 'description' => __('The formatted recurring price of the item.', 'invoicing'), |
|
| 188 | 188 | 'type' => 'string', |
| 189 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 189 | + 'context' => array('view', 'edit', 'embed'), |
|
| 190 | 190 | 'readonly' => true, |
| 191 | 191 | ), |
| 192 | 192 | |
| 193 | 193 | 'recurring_period' => array( |
| 194 | - 'description' => __( 'The recurring period for a recurring item.', 'invoicing' ), |
|
| 194 | + 'description' => __('The recurring period for a recurring item.', 'invoicing'), |
|
| 195 | 195 | 'type' => 'string', |
| 196 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 197 | - 'enum' => array( 'D', 'W', 'M', 'Y' ), |
|
| 196 | + 'context' => array('view', 'edit', 'embed'), |
|
| 197 | + 'enum' => array('D', 'W', 'M', 'Y'), |
|
| 198 | 198 | ), |
| 199 | 199 | |
| 200 | 200 | 'recurring_interval' => array( |
| 201 | - 'description' => __( 'The recurring interval for a subscription item.', 'invoicing' ), |
|
| 201 | + 'description' => __('The recurring interval for a subscription item.', 'invoicing'), |
|
| 202 | 202 | 'type' => 'integer', |
| 203 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 203 | + 'context' => array('view', 'edit', 'embed'), |
|
| 204 | 204 | ), |
| 205 | 205 | |
| 206 | 206 | 'recurring_limit' => array( |
| 207 | - 'description' => __( 'The maximum number of renewals for a subscription item.', 'invoicing' ), |
|
| 207 | + 'description' => __('The maximum number of renewals for a subscription item.', 'invoicing'), |
|
| 208 | 208 | 'type' => 'integer', |
| 209 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 209 | + 'context' => array('view', 'edit', 'embed'), |
|
| 210 | 210 | ), |
| 211 | 211 | |
| 212 | 212 | 'is_free_trial' => array( |
| 213 | - 'description' => __( 'Whether the item has a free trial period.', 'invoicing' ), |
|
| 213 | + 'description' => __('Whether the item has a free trial period.', 'invoicing'), |
|
| 214 | 214 | 'type' => 'integer', |
| 215 | - 'enum' => array( 0, 1 ), |
|
| 216 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 215 | + 'enum' => array(0, 1), |
|
| 216 | + 'context' => array('view', 'edit', 'embed'), |
|
| 217 | 217 | ), |
| 218 | 218 | |
| 219 | 219 | 'trial_period' => array( |
| 220 | - 'description' => __( 'The trial period.', 'invoicing' ), |
|
| 220 | + 'description' => __('The trial period.', 'invoicing'), |
|
| 221 | 221 | 'type' => 'string', |
| 222 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 223 | - 'enum' => array( 'D', 'W', 'M', 'Y' ), |
|
| 222 | + 'context' => array('view', 'edit', 'embed'), |
|
| 223 | + 'enum' => array('D', 'W', 'M', 'Y'), |
|
| 224 | 224 | ), |
| 225 | 225 | |
| 226 | 226 | 'trial_interval' => array( |
| 227 | - 'description' => __( 'The trial interval.', 'invoicing' ), |
|
| 227 | + 'description' => __('The trial interval.', 'invoicing'), |
|
| 228 | 228 | 'type' => 'integer', |
| 229 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 229 | + 'context' => array('view', 'edit', 'embed'), |
|
| 230 | 230 | ), |
| 231 | 231 | |
| 232 | 232 | 'first_renewal_date' => array( |
| 233 | - 'description' => __( 'The first renewal date in case the item was to be bought today.', 'invoicing' ), |
|
| 233 | + 'description' => __('The first renewal date in case the item was to be bought today.', 'invoicing'), |
|
| 234 | 234 | 'type' => 'string', |
| 235 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 235 | + 'context' => array('view', 'edit', 'embed'), |
|
| 236 | 236 | 'readonly' => true, |
| 237 | 237 | ), |
| 238 | 238 | |
| 239 | 239 | 'edit_url' => array( |
| 240 | - 'description' => __( 'The URL to edit an item.', 'invoicing' ), |
|
| 240 | + 'description' => __('The URL to edit an item.', 'invoicing'), |
|
| 241 | 241 | 'type' => 'string', |
| 242 | - 'context' => array( 'view', 'edit', 'embed' ), |
|
| 242 | + 'context' => array('view', 'edit', 'embed'), |
|
| 243 | 243 | 'readonly' => true, |
| 244 | 244 | ), |
| 245 | 245 | ); |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * @package Invoicing/data |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | return array( |
| 12 | 12 | 'AD' => 'AD\d{3}', |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | 14 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | 'placeholder' => '[email protected]', |
| 18 | 18 | 'value' => '', |
| 19 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
| 19 | + 'label' => __('Billing Email', 'invoicing'), |
|
| 20 | 20 | 'description' => '', |
| 21 | 21 | 'required' => true, |
| 22 | 22 | 'id' => 'mmdwqzpox', |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | array( |
| 35 | 35 | 'placeholder' => 'Jon', |
| 36 | 36 | 'value' => '', |
| 37 | - 'label' => __( 'First Name', 'invoicing' ), |
|
| 37 | + 'label' => __('First Name', 'invoicing'), |
|
| 38 | 38 | 'description' => '', |
| 39 | 39 | 'required' => false, |
| 40 | 40 | 'visible' => true, |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | array( |
| 45 | 45 | 'placeholder' => 'Snow', |
| 46 | 46 | 'value' => '', |
| 47 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
| 47 | + 'label' => __('Last Name', 'invoicing'), |
|
| 48 | 48 | 'description' => '', |
| 49 | 49 | 'required' => false, |
| 50 | 50 | 'visible' => true, |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | array( |
| 55 | 55 | 'placeholder' => '', |
| 56 | 56 | 'value' => '', |
| 57 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 57 | + 'label' => __('Address', 'invoicing'), |
|
| 58 | 58 | 'description' => '', |
| 59 | 59 | 'required' => false, |
| 60 | 60 | 'visible' => true, |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | array( |
| 65 | 65 | 'placeholder' => '', |
| 66 | 66 | 'value' => '', |
| 67 | - 'label' => __( 'City', 'invoicing' ), |
|
| 67 | + 'label' => __('City', 'invoicing'), |
|
| 68 | 68 | 'description' => '', |
| 69 | 69 | 'required' => false, |
| 70 | 70 | 'visible' => true, |
@@ -72,9 +72,9 @@ discard block |
||
| 72 | 72 | ), |
| 73 | 73 | |
| 74 | 74 | array( |
| 75 | - 'placeholder' => __( 'Select your country' ), |
|
| 75 | + 'placeholder' => __('Select your country'), |
|
| 76 | 76 | 'value' => '', |
| 77 | - 'label' => __( 'Country', 'invoicing' ), |
|
| 77 | + 'label' => __('Country', 'invoicing'), |
|
| 78 | 78 | 'description' => '', |
| 79 | 79 | 'required' => false, |
| 80 | 80 | 'visible' => true, |
@@ -82,9 +82,9 @@ discard block |
||
| 82 | 82 | ), |
| 83 | 83 | |
| 84 | 84 | array( |
| 85 | - 'placeholder' => __( 'Choose a state', 'invoicing' ), |
|
| 85 | + 'placeholder' => __('Choose a state', 'invoicing'), |
|
| 86 | 86 | 'value' => '', |
| 87 | - 'label' => __( 'State / Province', 'invoicing' ), |
|
| 87 | + 'label' => __('State / Province', 'invoicing'), |
|
| 88 | 88 | 'description' => '', |
| 89 | 89 | 'required' => false, |
| 90 | 90 | 'visible' => true, |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | array( |
| 95 | 95 | 'placeholder' => '', |
| 96 | 96 | 'value' => '', |
| 97 | - 'label' => __( 'ZIP / Postcode', 'invoicing' ), |
|
| 97 | + 'label' => __('ZIP / Postcode', 'invoicing'), |
|
| 98 | 98 | 'description' => '', |
| 99 | 99 | 'required' => false, |
| 100 | 100 | 'visible' => true, |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | array( |
| 105 | 105 | 'placeholder' => '', |
| 106 | 106 | 'value' => '', |
| 107 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 107 | + 'label' => __('Phone', 'invoicing'), |
|
| 108 | 108 | 'description' => '', |
| 109 | 109 | 'required' => false, |
| 110 | 110 | 'visible' => true, |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | array( |
| 115 | 115 | 'placeholder' => '', |
| 116 | 116 | 'value' => '', |
| 117 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 117 | + 'label' => __('Company', 'invoicing'), |
|
| 118 | 118 | 'description' => '', |
| 119 | 119 | 'required' => false, |
| 120 | 120 | 'visible' => true, |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | array( |
| 125 | 125 | 'placeholder' => '', |
| 126 | 126 | 'value' => '', |
| 127 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 127 | + 'label' => __('VAT Number', 'invoicing'), |
|
| 128 | 128 | 'description' => '', |
| 129 | 129 | 'required' => false, |
| 130 | 130 | 'visible' => true, |
@@ -136,9 +136,9 @@ discard block |
||
| 136 | 136 | array( |
| 137 | 137 | |
| 138 | 138 | 'value' => '', |
| 139 | - 'input_label' => __( 'Coupon Code', 'invoicing' ), |
|
| 140 | - 'button_label' => __( 'Apply Coupon', 'invoicing' ), |
|
| 141 | - 'description' => __( 'Have a discount code? Enter it above.', 'invoicing' ), |
|
| 139 | + 'input_label' => __('Coupon Code', 'invoicing'), |
|
| 140 | + 'button_label' => __('Apply Coupon', 'invoicing'), |
|
| 141 | + 'description' => __('Have a discount code? Enter it above.', 'invoicing'), |
|
| 142 | 142 | 'id' => 'kcicdiscount', |
| 143 | 143 | 'name' => 'kcicdiscount', |
| 144 | 144 | 'type' => 'discount', |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | ), |
| 159 | 159 | |
| 160 | 160 | array( |
| 161 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 161 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 162 | 162 | 'id' => 'gtscicd', |
| 163 | 163 | 'name' => 'gtscicd', |
| 164 | 164 | 'type' => 'gateway_select', |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | |
| 171 | 171 | 'value' => '', |
| 172 | 172 | 'class' => 'btn-primary', |
| 173 | - 'label' => __( 'Pay Now »', 'invoicing' ), |
|
| 174 | - 'description' => __( 'By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
| 173 | + 'label' => __('Pay Now »', 'invoicing'), |
|
| 174 | + 'description' => __('By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
| 175 | 175 | 'id' => 'rtqljyy', |
| 176 | 176 | 'name' => 'rtqljyy', |
| 177 | 177 | 'type' => 'pay_button', |
@@ -8,6 +8,6 @@ |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array(); |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * @version 1.0.19 |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | return array( |
| 14 | 14 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | 'placeholder' => '[email protected]', |
| 18 | 18 | 'value' => '', |
| 19 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
| 19 | + 'label' => __('Billing Email', 'invoicing'), |
|
| 20 | 20 | 'description' => '', |
| 21 | 21 | 'required' => true, |
| 22 | 22 | 'id' => 'mmdwqzpox', |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | array( |
| 29 | 29 | |
| 30 | 30 | 'value' => '', |
| 31 | - 'input_label' => __( 'Coupon Code', 'invoicing' ), |
|
| 32 | - 'button_label' => __( 'Apply Coupon', 'invoicing' ), |
|
| 33 | - 'description' => __( 'Have a discount code? Enter it above.', 'invoicing' ), |
|
| 31 | + 'input_label' => __('Coupon Code', 'invoicing'), |
|
| 32 | + 'button_label' => __('Apply Coupon', 'invoicing'), |
|
| 33 | + 'description' => __('Have a discount code? Enter it above.', 'invoicing'), |
|
| 34 | 34 | 'id' => 'kcicdiscount', |
| 35 | 35 | 'name' => 'kcicdiscount', |
| 36 | 36 | 'type' => 'discount', |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | ), |
| 51 | 51 | |
| 52 | 52 | array( |
| 53 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 53 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 54 | 54 | 'id' => 'gtscicd', |
| 55 | 55 | 'name' => 'gtscicd', |
| 56 | 56 | 'type' => 'gateway_select', |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | 'value' => '', |
| 64 | 64 | 'class' => 'btn-primary', |
| 65 | - 'label' => __( 'Pay Now »', 'invoicing' ), |
|
| 66 | - 'description' => __( 'By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
| 65 | + 'label' => __('Pay Now »', 'invoicing'), |
|
| 66 | + 'description' => __('By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
| 67 | 67 | 'id' => 'rtqljyy', |
| 68 | 68 | 'name' => 'rtqljyy', |
| 69 | 69 | 'type' => 'pay_button', |