@@ -136,13 +136,13 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | function wpinv_get_invoice_statuses( $draft = false, $trashed = false, $invoice = false ) { |
| 138 | 138 | |
| 139 | - $invoice_statuses = array( |
|
| 140 | - 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
| 139 | + $invoice_statuses = array( |
|
| 140 | + 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
| 141 | 141 | 'publish' => _x( 'Paid', 'Invoice status', 'invoicing' ), |
| 142 | 142 | 'wpi-processing' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
| 143 | - 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
| 144 | - 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
| 145 | - 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
| 143 | + 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
| 144 | + 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
| 145 | + 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
| 146 | 146 | 'wpi-failed' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
| 147 | 147 | 'wpi-renewal' => _x( 'Renewal Payment', 'Invoice status', 'invoicing' ), |
| 148 | 148 | ); |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $invoice = $invoice->get_post_type(); |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
| 162 | + return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -277,25 +277,25 @@ discard block |
||
| 277 | 277 | * @return string |
| 278 | 278 | */ |
| 279 | 279 | function getpaid_get_price_format() { |
| 280 | - $currency_pos = wpinv_currency_position(); |
|
| 281 | - $format = '%1$s%2$s'; |
|
| 282 | - |
|
| 283 | - switch ( $currency_pos ) { |
|
| 284 | - case 'left': |
|
| 285 | - $format = '%1$s%2$s'; |
|
| 286 | - break; |
|
| 287 | - case 'right': |
|
| 288 | - $format = '%2$s%1$s'; |
|
| 289 | - break; |
|
| 290 | - case 'left_space': |
|
| 291 | - $format = '%1$s %2$s'; |
|
| 292 | - break; |
|
| 293 | - case 'right_space': |
|
| 294 | - $format = '%2$s %1$s'; |
|
| 295 | - break; |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
| 280 | + $currency_pos = wpinv_currency_position(); |
|
| 281 | + $format = '%1$s%2$s'; |
|
| 282 | + |
|
| 283 | + switch ( $currency_pos ) { |
|
| 284 | + case 'left': |
|
| 285 | + $format = '%1$s%2$s'; |
|
| 286 | + break; |
|
| 287 | + case 'right': |
|
| 288 | + $format = '%2$s%1$s'; |
|
| 289 | + break; |
|
| 290 | + case 'left_space': |
|
| 291 | + $format = '%1$s %2$s'; |
|
| 292 | + break; |
|
| 293 | + case 'right_space': |
|
| 294 | + $format = '%2$s %1$s'; |
|
| 295 | + break; |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
| 299 | 299 | } |
| 300 | 300 | |
| 301 | 301 | /** |
@@ -390,13 +390,13 @@ discard block |
||
| 390 | 390 | * @param mixed $value Value. |
| 391 | 391 | */ |
| 392 | 392 | function getpaid_maybe_define_constant( $name, $value ) { |
| 393 | - if ( ! defined( $name ) ) { |
|
| 394 | - define( $name, $value ); |
|
| 395 | - } |
|
| 393 | + if ( ! defined( $name ) ) { |
|
| 394 | + define( $name, $value ); |
|
| 395 | + } |
|
| 396 | 396 | } |
| 397 | 397 | |
| 398 | 398 | function wpinv_get_php_arg_separator_output() { |
| 399 | - return ini_get( 'arg_separator.output' ); |
|
| 399 | + return ini_get( 'arg_separator.output' ); |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | 402 | function wpinv_rgb_from_hex( $color ) { |
@@ -751,11 +751,11 @@ discard block |
||
| 751 | 751 | $list = array(); |
| 752 | 752 | } |
| 753 | 753 | |
| 754 | - if ( ! is_array( $list ) ) { |
|
| 755 | - return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
| 756 | - } |
|
| 754 | + if ( ! is_array( $list ) ) { |
|
| 755 | + return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
| 756 | + } |
|
| 757 | 757 | |
| 758 | - return $list; |
|
| 758 | + return $list; |
|
| 759 | 759 | } |
| 760 | 760 | |
| 761 | 761 | /** |
@@ -775,9 +775,9 @@ discard block |
||
| 775 | 775 | } |
| 776 | 776 | |
| 777 | 777 | $data = apply_filters( "wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php" ); |
| 778 | - wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
| 778 | + wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
| 779 | 779 | |
| 780 | - return $data; |
|
| 780 | + return $data; |
|
| 781 | 781 | } |
| 782 | 782 | |
| 783 | 783 | /** |
@@ -806,17 +806,17 @@ discard block |
||
| 806 | 806 | */ |
| 807 | 807 | function wpinv_clean( $var ) { |
| 808 | 808 | |
| 809 | - if ( is_array( $var ) ) { |
|
| 810 | - return array_map( 'wpinv_clean', $var ); |
|
| 809 | + if ( is_array( $var ) ) { |
|
| 810 | + return array_map( 'wpinv_clean', $var ); |
|
| 811 | 811 | } |
| 812 | 812 | |
| 813 | 813 | if ( is_object( $var ) ) { |
| 814 | - $object_vars = get_object_vars( $var ); |
|
| 815 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
| 816 | - $var->$property_name = wpinv_clean( $property_value ); |
|
| 814 | + $object_vars = get_object_vars( $var ); |
|
| 815 | + foreach ( $object_vars as $property_name => $property_value ) { |
|
| 816 | + $var->$property_name = wpinv_clean( $property_value ); |
|
| 817 | 817 | } |
| 818 | 818 | return $var; |
| 819 | - } |
|
| 819 | + } |
|
| 820 | 820 | |
| 821 | 821 | return is_string( $var ) ? sanitize_text_field( stripslashes( $var ) ) : $var; |
| 822 | 822 | } |
@@ -829,7 +829,7 @@ discard block |
||
| 829 | 829 | */ |
| 830 | 830 | function getpaid_convert_price_string_to_options( $str ) { |
| 831 | 831 | |
| 832 | - $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
| 832 | + $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
| 833 | 833 | $options = array(); |
| 834 | 834 | |
| 835 | 835 | foreach ( $raw_options as $option ) { |
@@ -912,7 +912,7 @@ discard block |
||
| 912 | 912 | * @return string |
| 913 | 913 | */ |
| 914 | 914 | function getpaid_date_format() { |
| 915 | - return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
| 915 | + return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
| 916 | 916 | } |
| 917 | 917 | |
| 918 | 918 | /** |
@@ -921,7 +921,7 @@ discard block |
||
| 921 | 921 | * @return string |
| 922 | 922 | */ |
| 923 | 923 | function getpaid_time_format() { |
| 924 | - return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
| 924 | + return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | /** |
@@ -934,15 +934,15 @@ discard block |
||
| 934 | 934 | function getpaid_limit_length( $string, $limit ) { |
| 935 | 935 | $str_limit = $limit - 3; |
| 936 | 936 | |
| 937 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
| 938 | - if ( mb_strlen( $string ) > $limit ) { |
|
| 939 | - $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
| 940 | - } |
|
| 941 | - } else { |
|
| 942 | - if ( strlen( $string ) > $limit ) { |
|
| 943 | - $string = substr( $string, 0, $str_limit ) . '...'; |
|
| 944 | - } |
|
| 945 | - } |
|
| 937 | + if ( function_exists( 'mb_strimwidth' ) ) { |
|
| 938 | + if ( mb_strlen( $string ) > $limit ) { |
|
| 939 | + $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
| 940 | + } |
|
| 941 | + } else { |
|
| 942 | + if ( strlen( $string ) > $limit ) { |
|
| 943 | + $string = substr( $string, 0, $str_limit ) . '...'; |
|
| 944 | + } |
|
| 945 | + } |
|
| 946 | 946 | return $string; |
| 947 | 947 | |
| 948 | 948 | } |
@@ -1073,12 +1073,12 @@ discard block |
||
| 1073 | 1073 | $types = get_allowed_mime_types(); |
| 1074 | 1074 | |
| 1075 | 1075 | if ( isset( $types['htm|html'] ) ) { |
| 1076 | - unset( $types['htm|html'] ); |
|
| 1077 | - } |
|
| 1076 | + unset( $types['htm|html'] ); |
|
| 1077 | + } |
|
| 1078 | 1078 | |
| 1079 | 1079 | if ( isset( $types['js'] ) ) { |
| 1080 | - unset( $types['js'] ); |
|
| 1081 | - } |
|
| 1080 | + unset( $types['js'] ); |
|
| 1081 | + } |
|
| 1082 | 1082 | |
| 1083 | 1083 | return $types; |
| 1084 | 1084 | |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @package Invoicing |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * Are we supporting item quantities? |
@@ -20,35 +20,35 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | function wpinv_get_ip() { |
| 22 | 22 | |
| 23 | - if ( isset( $_SERVER['HTTP_X_REAL_IP'] ) ) { |
|
| 24 | - return sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_REAL_IP'] ) ); |
|
| 23 | + if (isset($_SERVER['HTTP_X_REAL_IP'])) { |
|
| 24 | + return sanitize_text_field(wp_unslash($_SERVER['HTTP_X_REAL_IP'])); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
|
| 27 | + if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { |
|
| 28 | 28 | // Proxy servers can send through this header like this: X-Forwarded-For: client1, proxy1, proxy2 |
| 29 | 29 | // Make sure we always only send through the first IP in the list which should always be the client IP. |
| 30 | - return (string) rest_is_ip_address( trim( current( preg_split( '/,/', sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) ) ) ) ); |
|
| 30 | + return (string) rest_is_ip_address(trim(current(preg_split('/,/', sanitize_text_field(wp_unslash($_SERVER['HTTP_X_FORWARDED_FOR'])))))); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - if ( isset( $_SERVER['HTTP_CLIENT_IP'] ) ) { |
|
| 34 | - return sanitize_text_field( wp_unslash( $_SERVER['HTTP_CLIENT_IP'] ) ); |
|
| 33 | + if (isset($_SERVER['HTTP_CLIENT_IP'])) { |
|
| 34 | + return sanitize_text_field(wp_unslash($_SERVER['HTTP_CLIENT_IP'])); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - if ( isset( $_SERVER['REMOTE_ADDR'] ) ) { |
|
| 38 | - return sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ); |
|
| 37 | + if (isset($_SERVER['REMOTE_ADDR'])) { |
|
| 38 | + return sanitize_text_field(wp_unslash($_SERVER['REMOTE_ADDR'])); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | return ''; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | function wpinv_get_user_agent() { |
| 45 | - if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
| 46 | - $user_agent = sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ); |
|
| 45 | + if (!empty($_SERVER['HTTP_USER_AGENT'])) { |
|
| 46 | + $user_agent = sanitize_text_field($_SERVER['HTTP_USER_AGENT']); |
|
| 47 | 47 | } else { |
| 48 | 48 | $user_agent = ''; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - return apply_filters( 'wpinv_get_user_agent', $user_agent ); |
|
| 51 | + return apply_filters('wpinv_get_user_agent', $user_agent); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | /** |
@@ -57,16 +57,16 @@ discard block |
||
| 57 | 57 | * @param string $amount The amount to sanitize. |
| 58 | 58 | * @return float |
| 59 | 59 | */ |
| 60 | -function getpaid_standardize_amount( $amount ) { |
|
| 60 | +function getpaid_standardize_amount($amount) { |
|
| 61 | 61 | |
| 62 | - $amount = str_replace( wpinv_thousands_separator(), '', $amount ); |
|
| 63 | - $amount = str_replace( wpinv_decimal_separator(), '.', $amount ); |
|
| 64 | - if ( is_numeric( $amount ) ) { |
|
| 65 | - return floatval( $amount ); |
|
| 62 | + $amount = str_replace(wpinv_thousands_separator(), '', $amount); |
|
| 63 | + $amount = str_replace(wpinv_decimal_separator(), '.', $amount); |
|
| 64 | + if (is_numeric($amount)) { |
|
| 65 | + return floatval($amount); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | // Cast the remaining to a float. |
| 69 | - return wpinv_round_amount( preg_replace( '/[^0-9\.\-]/', '', $amount ) ); |
|
| 69 | + return wpinv_round_amount(preg_replace('/[^0-9\.\-]/', '', $amount)); |
|
| 70 | 70 | |
| 71 | 71 | } |
| 72 | 72 | |
@@ -75,8 +75,8 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @param string $amount The amount to sanitize. |
| 77 | 77 | */ |
| 78 | -function getpaid_unstandardize_amount( $amount ) { |
|
| 79 | - return str_replace( '.', wpinv_decimal_separator(), $amount ); |
|
| 78 | +function getpaid_unstandardize_amount($amount) { |
|
| 79 | + return str_replace('.', wpinv_decimal_separator(), $amount); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
@@ -84,23 +84,23 @@ discard block |
||
| 84 | 84 | * |
| 85 | 85 | * @param string $amount The amount to sanitize. |
| 86 | 86 | */ |
| 87 | -function wpinv_sanitize_amount( $amount ) { |
|
| 87 | +function wpinv_sanitize_amount($amount) { |
|
| 88 | 88 | |
| 89 | - if ( is_numeric( $amount ) ) { |
|
| 90 | - return floatval( $amount ); |
|
| 89 | + if (is_numeric($amount)) { |
|
| 90 | + return floatval($amount); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | // Separate the decimals and thousands. |
| 94 | - $amount = explode( wpinv_decimal_separator(), $amount ); |
|
| 94 | + $amount = explode(wpinv_decimal_separator(), $amount); |
|
| 95 | 95 | |
| 96 | 96 | // Remove thousands. |
| 97 | - $amount[0] = str_replace( wpinv_thousands_separator(), '', $amount[0] ); |
|
| 97 | + $amount[0] = str_replace(wpinv_thousands_separator(), '', $amount[0]); |
|
| 98 | 98 | |
| 99 | 99 | // Convert back to string. |
| 100 | - $amount = count( $amount ) > 1 ? "{$amount[0]}.{$amount[1]}" : $amount[0]; |
|
| 100 | + $amount = count($amount) > 1 ? "{$amount[0]}.{$amount[1]}" : $amount[0]; |
|
| 101 | 101 | |
| 102 | 102 | // Cast the remaining to a float. |
| 103 | - return (float) preg_replace( '/[^0-9\.\-]/', '', $amount ); |
|
| 103 | + return (float) preg_replace('/[^0-9\.\-]/', '', $amount); |
|
| 104 | 104 | |
| 105 | 105 | } |
| 106 | 106 | |
@@ -110,19 +110,19 @@ discard block |
||
| 110 | 110 | * @param float $amount |
| 111 | 111 | * @param float|string|int|null $decimals |
| 112 | 112 | */ |
| 113 | -function wpinv_round_amount( $amount, $decimals = null, $use_sprintf = false ) { |
|
| 113 | +function wpinv_round_amount($amount, $decimals = null, $use_sprintf = false) { |
|
| 114 | 114 | |
| 115 | - if ( $decimals === null ) { |
|
| 115 | + if ($decimals === null) { |
|
| 116 | 116 | $decimals = wpinv_decimals(); |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - if ( $use_sprintf ) { |
|
| 120 | - $amount = sprintf( "%.{$decimals}f", (float) $amount ); |
|
| 119 | + if ($use_sprintf) { |
|
| 120 | + $amount = sprintf("%.{$decimals}f", (float) $amount); |
|
| 121 | 121 | } else { |
| 122 | - $amount = round( (float) $amount, absint( $decimals ) ); |
|
| 122 | + $amount = round((float) $amount, absint($decimals)); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - return apply_filters( 'wpinv_round_amount', $amount, $decimals ); |
|
| 125 | + return apply_filters('wpinv_round_amount', $amount, $decimals); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -134,32 +134,32 @@ discard block |
||
| 134 | 134 | * @param string|WPInv_Invoice $invoice The invoice object|post type|type |
| 135 | 135 | * @return array |
| 136 | 136 | */ |
| 137 | -function wpinv_get_invoice_statuses( $draft = false, $trashed = false, $invoice = false ) { |
|
| 137 | +function wpinv_get_invoice_statuses($draft = false, $trashed = false, $invoice = false) { |
|
| 138 | 138 | |
| 139 | 139 | $invoice_statuses = array( |
| 140 | - 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
| 141 | - 'publish' => _x( 'Paid', 'Invoice status', 'invoicing' ), |
|
| 142 | - 'wpi-processing' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
|
| 143 | - 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
| 144 | - 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
| 145 | - 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
| 146 | - 'wpi-failed' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
|
| 147 | - 'wpi-renewal' => _x( 'Renewal Payment', 'Invoice status', 'invoicing' ), |
|
| 140 | + 'wpi-pending' => _x('Pending payment', 'Invoice status', 'invoicing'), |
|
| 141 | + 'publish' => _x('Paid', 'Invoice status', 'invoicing'), |
|
| 142 | + 'wpi-processing' => _x('Processing', 'Invoice status', 'invoicing'), |
|
| 143 | + 'wpi-onhold' => _x('On hold', 'Invoice status', 'invoicing'), |
|
| 144 | + 'wpi-cancelled' => _x('Cancelled', 'Invoice status', 'invoicing'), |
|
| 145 | + 'wpi-refunded' => _x('Refunded', 'Invoice status', 'invoicing'), |
|
| 146 | + 'wpi-failed' => _x('Failed', 'Invoice status', 'invoicing'), |
|
| 147 | + 'wpi-renewal' => _x('Renewal Payment', 'Invoice status', 'invoicing'), |
|
| 148 | 148 | ); |
| 149 | 149 | |
| 150 | - if ( $draft ) { |
|
| 151 | - $invoice_statuses['draft'] = __( 'Draft', 'invoicing' ); |
|
| 150 | + if ($draft) { |
|
| 151 | + $invoice_statuses['draft'] = __('Draft', 'invoicing'); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - if ( $trashed ) { |
|
| 155 | - $invoice_statuses['trash'] = __( 'Trash', 'invoicing' ); |
|
| 154 | + if ($trashed) { |
|
| 155 | + $invoice_statuses['trash'] = __('Trash', 'invoicing'); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - if ( $invoice instanceof WPInv_Invoice ) { |
|
| 158 | + if ($invoice instanceof WPInv_Invoice) { |
|
| 159 | 159 | $invoice = $invoice->get_post_type(); |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
| 162 | + return apply_filters('wpinv_statuses', $invoice_statuses, $invoice); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -168,11 +168,11 @@ discard block |
||
| 168 | 168 | * @param string $status The raw status |
| 169 | 169 | * @param string|WPInv_Invoice $invoice The invoice object|post type|type |
| 170 | 170 | */ |
| 171 | -function wpinv_status_nicename( $status, $invoice = false ) { |
|
| 172 | - $statuses = wpinv_get_invoice_statuses( true, true, $invoice ); |
|
| 173 | - $status = isset( $statuses[$status] ) ? $statuses[$status] : $status; |
|
| 171 | +function wpinv_status_nicename($status, $invoice = false) { |
|
| 172 | + $statuses = wpinv_get_invoice_statuses(true, true, $invoice); |
|
| 173 | + $status = isset($statuses[$status]) ? $statuses[$status] : $status; |
|
| 174 | 174 | |
| 175 | - return sanitize_text_field( $status ); |
|
| 175 | + return sanitize_text_field($status); |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /** |
@@ -180,13 +180,13 @@ discard block |
||
| 180 | 180 | * |
| 181 | 181 | * @param string $current |
| 182 | 182 | */ |
| 183 | -function wpinv_get_currency( $current = '' ) { |
|
| 183 | +function wpinv_get_currency($current = '') { |
|
| 184 | 184 | |
| 185 | - if ( empty( $current ) ) { |
|
| 186 | - $current = apply_filters( 'wpinv_currency', wpinv_get_option( 'currency', 'USD' ) ); |
|
| 185 | + if (empty($current)) { |
|
| 186 | + $current = apply_filters('wpinv_currency', wpinv_get_option('currency', 'USD')); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - return trim( strtoupper( $current ) ); |
|
| 189 | + return trim(strtoupper($current)); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -194,25 +194,25 @@ discard block |
||
| 194 | 194 | * |
| 195 | 195 | * @param string|null $currency The currency code. Defaults to the default currency. |
| 196 | 196 | */ |
| 197 | -function wpinv_currency_symbol( $currency = null ) { |
|
| 197 | +function wpinv_currency_symbol($currency = null) { |
|
| 198 | 198 | |
| 199 | 199 | // Prepare the currency. |
| 200 | - $currency = empty( $currency ) ? wpinv_get_currency() : wpinv_clean( $currency ); |
|
| 200 | + $currency = empty($currency) ? wpinv_get_currency() : wpinv_clean($currency); |
|
| 201 | 201 | |
| 202 | 202 | // Fetch all symbols. |
| 203 | 203 | $symbols = wpinv_get_currency_symbols(); |
| 204 | 204 | |
| 205 | 205 | // Fetch this currencies symbol. |
| 206 | - $currency_symbol = isset( $symbols[$currency] ) ? $symbols[$currency] : $currency; |
|
| 206 | + $currency_symbol = isset($symbols[$currency]) ? $symbols[$currency] : $currency; |
|
| 207 | 207 | |
| 208 | 208 | // Filter the symbol. |
| 209 | - return apply_filters( 'wpinv_currency_symbol', $currency_symbol, $currency ); |
|
| 209 | + return apply_filters('wpinv_currency_symbol', $currency_symbol, $currency); |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | function wpinv_currency_position() { |
| 213 | - $position = wpinv_get_option( 'currency_position', 'left' ); |
|
| 213 | + $position = wpinv_get_option('currency_position', 'left'); |
|
| 214 | 214 | |
| 215 | - return apply_filters( 'wpinv_currency_position', $position ); |
|
| 215 | + return apply_filters('wpinv_currency_position', $position); |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | /** |
@@ -220,13 +220,13 @@ discard block |
||
| 220 | 220 | * |
| 221 | 221 | * @param $string|null $current |
| 222 | 222 | */ |
| 223 | -function wpinv_thousands_separator( $current = null ) { |
|
| 223 | +function wpinv_thousands_separator($current = null) { |
|
| 224 | 224 | |
| 225 | - if ( null == $current ) { |
|
| 226 | - $current = wpinv_get_option( 'thousands_separator', ',' ); |
|
| 225 | + if (null == $current) { |
|
| 226 | + $current = wpinv_get_option('thousands_separator', ','); |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - return trim( $current ); |
|
| 229 | + return trim($current); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -234,13 +234,13 @@ discard block |
||
| 234 | 234 | * |
| 235 | 235 | * @param $string|null $current |
| 236 | 236 | */ |
| 237 | -function wpinv_decimal_separator( $current = null ) { |
|
| 237 | +function wpinv_decimal_separator($current = null) { |
|
| 238 | 238 | |
| 239 | - if ( null == $current ) { |
|
| 240 | - $current = wpinv_get_option( 'decimal_separator', '.' ); |
|
| 239 | + if (null == $current) { |
|
| 240 | + $current = wpinv_get_option('decimal_separator', '.'); |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | - return trim( $current ); |
|
| 243 | + return trim($current); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | /** |
@@ -248,27 +248,27 @@ discard block |
||
| 248 | 248 | * |
| 249 | 249 | * @param $string|null $current |
| 250 | 250 | */ |
| 251 | -function wpinv_decimals( $current = null ) { |
|
| 251 | +function wpinv_decimals($current = null) { |
|
| 252 | 252 | |
| 253 | - if ( null == $current ) { |
|
| 254 | - $current = wpinv_get_option( 'decimals', 2 ); |
|
| 253 | + if (null == $current) { |
|
| 254 | + $current = wpinv_get_option('decimals', 2); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - return absint( $current ); |
|
| 257 | + return absint($current); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | /** |
| 261 | 261 | * Retrieves a list of all supported currencies. |
| 262 | 262 | */ |
| 263 | 263 | function wpinv_get_currencies() { |
| 264 | - return apply_filters( 'wpinv_currencies', wpinv_get_data( 'currencies' ) ); |
|
| 264 | + return apply_filters('wpinv_currencies', wpinv_get_data('currencies')); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | /** |
| 268 | 268 | * Retrieves a list of all currency symbols. |
| 269 | 269 | */ |
| 270 | 270 | function wpinv_get_currency_symbols() { |
| 271 | - return apply_filters( 'wpinv_currency_symbols', wpinv_get_data( 'currency-symbols' ) ); |
|
| 271 | + return apply_filters('wpinv_currency_symbols', wpinv_get_data('currency-symbols')); |
|
| 272 | 272 | } |
| 273 | 273 | |
| 274 | 274 | /** |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | $currency_pos = wpinv_currency_position(); |
| 281 | 281 | $format = '%1$s%2$s'; |
| 282 | 282 | |
| 283 | - switch ( $currency_pos ) { |
|
| 283 | + switch ($currency_pos) { |
|
| 284 | 284 | case 'left': |
| 285 | 285 | $format = '%1$s%2$s'; |
| 286 | 286 | break; |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | break; |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | - return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
| 298 | + return apply_filters('getpaid_price_format', $format, $currency_pos); |
|
| 299 | 299 | } |
| 300 | 300 | |
| 301 | 301 | /** |
@@ -305,25 +305,25 @@ discard block |
||
| 305 | 305 | * @param string $currency Currency. |
| 306 | 306 | * @return string |
| 307 | 307 | */ |
| 308 | -function wpinv_price( $amount = 0, $currency = '' ) { |
|
| 308 | +function wpinv_price($amount = 0, $currency = '') { |
|
| 309 | 309 | |
| 310 | 310 | // Backwards compatibility. |
| 311 | - $amount = wpinv_sanitize_amount( $amount ); |
|
| 311 | + $amount = wpinv_sanitize_amount($amount); |
|
| 312 | 312 | |
| 313 | 313 | // Prepare variables. |
| 314 | - $currency = wpinv_get_currency( $currency ); |
|
| 314 | + $currency = wpinv_get_currency($currency); |
|
| 315 | 315 | $amount = (float) $amount; |
| 316 | 316 | $unformatted_amount = $amount; |
| 317 | 317 | $negative = $amount < 0; |
| 318 | - $amount = apply_filters( 'getpaid_raw_amount', floatval( $negative ? $amount * -1 : $amount ) ); |
|
| 319 | - $amount = wpinv_format_amount( $amount ); |
|
| 318 | + $amount = apply_filters('getpaid_raw_amount', floatval($negative ? $amount * -1 : $amount)); |
|
| 319 | + $amount = wpinv_format_amount($amount); |
|
| 320 | 320 | |
| 321 | 321 | // Format the amount. |
| 322 | 322 | $format = getpaid_get_price_format(); |
| 323 | - $formatted_amount = ( $negative ? '-' : '' ) . sprintf( $format, '<span class="getpaid-currency__symbol">' . wpinv_currency_symbol( $currency ) . '</span>', $amount ); |
|
| 323 | + $formatted_amount = ($negative ? '-' : '') . sprintf($format, '<span class="getpaid-currency__symbol">' . wpinv_currency_symbol($currency) . '</span>', $amount); |
|
| 324 | 324 | |
| 325 | 325 | // Filter the formatting. |
| 326 | - return apply_filters( 'wpinv_price', $formatted_amount, $amount, $currency, $unformatted_amount ); |
|
| 326 | + return apply_filters('wpinv_price', $formatted_amount, $amount, $currency, $unformatted_amount); |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | /** |
@@ -334,25 +334,25 @@ discard block |
||
| 334 | 334 | * @param bool $calculate Whether or not to apply separators. |
| 335 | 335 | * @return string |
| 336 | 336 | */ |
| 337 | -function wpinv_format_amount( $amount, $decimals = null, $calculate = false ) { |
|
| 337 | +function wpinv_format_amount($amount, $decimals = null, $calculate = false) { |
|
| 338 | 338 | $thousands_sep = wpinv_thousands_separator(); |
| 339 | 339 | $decimal_sep = wpinv_decimal_separator(); |
| 340 | - $decimals = wpinv_decimals( $decimals ); |
|
| 341 | - $amount = wpinv_sanitize_amount( $amount ); |
|
| 340 | + $decimals = wpinv_decimals($decimals); |
|
| 341 | + $amount = wpinv_sanitize_amount($amount); |
|
| 342 | 342 | |
| 343 | - if ( $calculate ) { |
|
| 343 | + if ($calculate) { |
|
| 344 | 344 | return $amount; |
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | // Fomart the amount. |
| 348 | - return number_format( $amount, $decimals, $decimal_sep, $thousands_sep ); |
|
| 348 | + return number_format($amount, $decimals, $decimal_sep, $thousands_sep); |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | -function wpinv_sanitize_key( $key ) { |
|
| 351 | +function wpinv_sanitize_key($key) { |
|
| 352 | 352 | $raw_key = $key; |
| 353 | - $key = preg_replace( '/[^a-zA-Z0-9_\-\.\:\/]/', '', $key ); |
|
| 353 | + $key = preg_replace('/[^a-zA-Z0-9_\-\.\:\/]/', '', $key); |
|
| 354 | 354 | |
| 355 | - return apply_filters( 'wpinv_sanitize_key', $key, $raw_key ); |
|
| 355 | + return apply_filters('wpinv_sanitize_key', $key, $raw_key); |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | /** |
@@ -360,8 +360,8 @@ discard block |
||
| 360 | 360 | * |
| 361 | 361 | * @param $str the file whose extension should be retrieved. |
| 362 | 362 | */ |
| 363 | -function wpinv_get_file_extension( $str ) { |
|
| 364 | - $filetype = wp_check_filetype( $str ); |
|
| 363 | +function wpinv_get_file_extension($str) { |
|
| 364 | + $filetype = wp_check_filetype($str); |
|
| 365 | 365 | return $filetype['ext']; |
| 366 | 366 | } |
| 367 | 367 | |
@@ -370,16 +370,16 @@ discard block |
||
| 370 | 370 | * |
| 371 | 371 | * @param string $string |
| 372 | 372 | */ |
| 373 | -function wpinv_string_is_image_url( $string ) { |
|
| 374 | - $extension = strtolower( wpinv_get_file_extension( $string ) ); |
|
| 375 | - return in_array( $extension, array( 'jpeg', 'jpg', 'png', 'gif', 'ico' ), true ); |
|
| 373 | +function wpinv_string_is_image_url($string) { |
|
| 374 | + $extension = strtolower(wpinv_get_file_extension($string)); |
|
| 375 | + return in_array($extension, array('jpeg', 'jpg', 'png', 'gif', 'ico'), true); |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | /** |
| 379 | 379 | * Returns the current URL. |
| 380 | 380 | */ |
| 381 | 381 | function wpinv_get_current_page_url() { |
| 382 | - return ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
| 382 | + return (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | 385 | /** |
@@ -389,46 +389,46 @@ discard block |
||
| 389 | 389 | * @param string $name Constant name. |
| 390 | 390 | * @param mixed $value Value. |
| 391 | 391 | */ |
| 392 | -function getpaid_maybe_define_constant( $name, $value ) { |
|
| 393 | - if ( ! defined( $name ) ) { |
|
| 394 | - define( $name, $value ); |
|
| 392 | +function getpaid_maybe_define_constant($name, $value) { |
|
| 393 | + if (!defined($name)) { |
|
| 394 | + define($name, $value); |
|
| 395 | 395 | } |
| 396 | 396 | } |
| 397 | 397 | |
| 398 | 398 | function wpinv_get_php_arg_separator_output() { |
| 399 | - return ini_get( 'arg_separator.output' ); |
|
| 399 | + return ini_get('arg_separator.output'); |
|
| 400 | 400 | } |
| 401 | 401 | |
| 402 | -function wpinv_rgb_from_hex( $color ) { |
|
| 403 | - $color = str_replace( '#', '', $color ); |
|
| 402 | +function wpinv_rgb_from_hex($color) { |
|
| 403 | + $color = str_replace('#', '', $color); |
|
| 404 | 404 | |
| 405 | 405 | // Convert shorthand colors to full format, e.g. "FFF" -> "FFFFFF" |
| 406 | - $color = preg_replace( '~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color ); |
|
| 407 | - if ( empty( $color ) ) { |
|
| 406 | + $color = preg_replace('~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color); |
|
| 407 | + if (empty($color)) { |
|
| 408 | 408 | return NULL; |
| 409 | 409 | } |
| 410 | 410 | |
| 411 | - $color = str_split( $color ); |
|
| 411 | + $color = str_split($color); |
|
| 412 | 412 | |
| 413 | 413 | $rgb = array(); |
| 414 | - $rgb['R'] = hexdec( $color[0] . $color[1] ); |
|
| 415 | - $rgb['G'] = hexdec( $color[2] . $color[3] ); |
|
| 416 | - $rgb['B'] = hexdec( $color[4] . $color[5] ); |
|
| 414 | + $rgb['R'] = hexdec($color[0] . $color[1]); |
|
| 415 | + $rgb['G'] = hexdec($color[2] . $color[3]); |
|
| 416 | + $rgb['B'] = hexdec($color[4] . $color[5]); |
|
| 417 | 417 | |
| 418 | 418 | return $rgb; |
| 419 | 419 | } |
| 420 | 420 | |
| 421 | -function wpinv_hex_darker( $color, $factor = 30 ) { |
|
| 422 | - $base = wpinv_rgb_from_hex( $color ); |
|
| 421 | +function wpinv_hex_darker($color, $factor = 30) { |
|
| 422 | + $base = wpinv_rgb_from_hex($color); |
|
| 423 | 423 | $color = '#'; |
| 424 | 424 | |
| 425 | - foreach ( $base as $k => $v ) { |
|
| 425 | + foreach ($base as $k => $v) { |
|
| 426 | 426 | $amount = $v / 100; |
| 427 | - $amount = round( $amount * $factor ); |
|
| 427 | + $amount = round($amount * $factor); |
|
| 428 | 428 | $new_decimal = $v - $amount; |
| 429 | 429 | |
| 430 | - $new_hex_component = dechex( $new_decimal ); |
|
| 431 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
| 430 | + $new_hex_component = dechex($new_decimal); |
|
| 431 | + if (strlen($new_hex_component) < 2) { |
|
| 432 | 432 | $new_hex_component = "0" . $new_hex_component; |
| 433 | 433 | } |
| 434 | 434 | $color .= $new_hex_component; |
@@ -437,18 +437,18 @@ discard block |
||
| 437 | 437 | return $color; |
| 438 | 438 | } |
| 439 | 439 | |
| 440 | -function wpinv_hex_lighter( $color, $factor = 30 ) { |
|
| 441 | - $base = wpinv_rgb_from_hex( $color ); |
|
| 440 | +function wpinv_hex_lighter($color, $factor = 30) { |
|
| 441 | + $base = wpinv_rgb_from_hex($color); |
|
| 442 | 442 | $color = '#'; |
| 443 | 443 | |
| 444 | - foreach ( $base as $k => $v ) { |
|
| 444 | + foreach ($base as $k => $v) { |
|
| 445 | 445 | $amount = 255 - $v; |
| 446 | 446 | $amount = $amount / 100; |
| 447 | - $amount = round( $amount * $factor ); |
|
| 447 | + $amount = round($amount * $factor); |
|
| 448 | 448 | $new_decimal = $v + $amount; |
| 449 | 449 | |
| 450 | - $new_hex_component = dechex( $new_decimal ); |
|
| 451 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
| 450 | + $new_hex_component = dechex($new_decimal); |
|
| 451 | + if (strlen($new_hex_component) < 2) { |
|
| 452 | 452 | $new_hex_component = "0" . $new_hex_component; |
| 453 | 453 | } |
| 454 | 454 | $color .= $new_hex_component; |
@@ -457,22 +457,22 @@ discard block |
||
| 457 | 457 | return $color; |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | -function wpinv_light_or_dark( $color, $dark = '#000000', $light = '#FFFFFF' ) { |
|
| 461 | - $hex = str_replace( '#', '', $color ); |
|
| 460 | +function wpinv_light_or_dark($color, $dark = '#000000', $light = '#FFFFFF') { |
|
| 461 | + $hex = str_replace('#', '', $color); |
|
| 462 | 462 | |
| 463 | - $c_r = hexdec( substr( $hex, 0, 2 ) ); |
|
| 464 | - $c_g = hexdec( substr( $hex, 2, 2 ) ); |
|
| 465 | - $c_b = hexdec( substr( $hex, 4, 2 ) ); |
|
| 463 | + $c_r = hexdec(substr($hex, 0, 2)); |
|
| 464 | + $c_g = hexdec(substr($hex, 2, 2)); |
|
| 465 | + $c_b = hexdec(substr($hex, 4, 2)); |
|
| 466 | 466 | |
| 467 | - $brightness = ( ( $c_r * 299 ) + ( $c_g * 587 ) + ( $c_b * 114 ) ) / 1000; |
|
| 467 | + $brightness = (($c_r * 299) + ($c_g * 587) + ($c_b * 114)) / 1000; |
|
| 468 | 468 | |
| 469 | 469 | return $brightness > 155 ? $dark : $light; |
| 470 | 470 | } |
| 471 | 471 | |
| 472 | -function wpinv_format_hex( $hex ) { |
|
| 473 | - $hex = trim( str_replace( '#', '', $hex ) ); |
|
| 472 | +function wpinv_format_hex($hex) { |
|
| 473 | + $hex = trim(str_replace('#', '', $hex)); |
|
| 474 | 474 | |
| 475 | - if ( strlen( $hex ) == 3 ) { |
|
| 475 | + if (strlen($hex) == 3) { |
|
| 476 | 476 | $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; |
| 477 | 477 | } |
| 478 | 478 | |
@@ -492,12 +492,12 @@ discard block |
||
| 492 | 492 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 493 | 493 | * @return string |
| 494 | 494 | */ |
| 495 | -function wpinv_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) { |
|
| 496 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
| 497 | - return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
| 495 | +function wpinv_utf8_strimwidth($str, $start, $width, $trimmaker = '', $encoding = 'UTF-8') { |
|
| 496 | + if (function_exists('mb_strimwidth')) { |
|
| 497 | + return mb_strimwidth($str, $start, $width, $trimmaker, $encoding); |
|
| 498 | 498 | } |
| 499 | 499 | |
| 500 | - return wpinv_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
| 500 | + return wpinv_utf8_substr($str, $start, $width, $encoding) . $trimmaker; |
|
| 501 | 501 | } |
| 502 | 502 | |
| 503 | 503 | /** |
@@ -509,28 +509,28 @@ discard block |
||
| 509 | 509 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 510 | 510 | * @return int Returns the number of characters in string. |
| 511 | 511 | */ |
| 512 | -function wpinv_utf8_strlen( $str, $encoding = 'UTF-8' ) { |
|
| 513 | - if ( function_exists( 'mb_strlen' ) ) { |
|
| 514 | - return mb_strlen( $str, $encoding ); |
|
| 512 | +function wpinv_utf8_strlen($str, $encoding = 'UTF-8') { |
|
| 513 | + if (function_exists('mb_strlen')) { |
|
| 514 | + return mb_strlen($str, $encoding); |
|
| 515 | 515 | } |
| 516 | 516 | |
| 517 | - return strlen( $str ); |
|
| 517 | + return strlen($str); |
|
| 518 | 518 | } |
| 519 | 519 | |
| 520 | -function wpinv_utf8_strtolower( $str, $encoding = 'UTF-8' ) { |
|
| 521 | - if ( function_exists( 'mb_strtolower' ) ) { |
|
| 522 | - return mb_strtolower( $str, $encoding ); |
|
| 520 | +function wpinv_utf8_strtolower($str, $encoding = 'UTF-8') { |
|
| 521 | + if (function_exists('mb_strtolower')) { |
|
| 522 | + return mb_strtolower($str, $encoding); |
|
| 523 | 523 | } |
| 524 | 524 | |
| 525 | - return strtolower( $str ); |
|
| 525 | + return strtolower($str); |
|
| 526 | 526 | } |
| 527 | 527 | |
| 528 | -function wpinv_utf8_strtoupper( $str, $encoding = 'UTF-8' ) { |
|
| 529 | - if ( function_exists( 'mb_strtoupper' ) ) { |
|
| 530 | - return mb_strtoupper( $str, $encoding ); |
|
| 528 | +function wpinv_utf8_strtoupper($str, $encoding = 'UTF-8') { |
|
| 529 | + if (function_exists('mb_strtoupper')) { |
|
| 530 | + return mb_strtoupper($str, $encoding); |
|
| 531 | 531 | } |
| 532 | 532 | |
| 533 | - return strtoupper( $str ); |
|
| 533 | + return strtoupper($str); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 536 | /** |
@@ -544,12 +544,12 @@ discard block |
||
| 544 | 544 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 545 | 545 | * @return int Returns the position of the first occurrence of search in the string. |
| 546 | 546 | */ |
| 547 | -function wpinv_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
| 548 | - if ( function_exists( 'mb_strpos' ) ) { |
|
| 549 | - return mb_strpos( $str, $find, $offset, $encoding ); |
|
| 547 | +function wpinv_utf8_strpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
| 548 | + if (function_exists('mb_strpos')) { |
|
| 549 | + return mb_strpos($str, $find, $offset, $encoding); |
|
| 550 | 550 | } |
| 551 | 551 | |
| 552 | - return strpos( $str, $find, $offset ); |
|
| 552 | + return strpos($str, $find, $offset); |
|
| 553 | 553 | } |
| 554 | 554 | |
| 555 | 555 | /** |
@@ -563,12 +563,12 @@ discard block |
||
| 563 | 563 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 564 | 564 | * @return int Returns the position of the last occurrence of search. |
| 565 | 565 | */ |
| 566 | -function wpinv_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
| 567 | - if ( function_exists( 'mb_strrpos' ) ) { |
|
| 568 | - return mb_strrpos( $str, $find, $offset, $encoding ); |
|
| 566 | +function wpinv_utf8_strrpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
| 567 | + if (function_exists('mb_strrpos')) { |
|
| 568 | + return mb_strrpos($str, $find, $offset, $encoding); |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | - return strrpos( $str, $find, $offset ); |
|
| 571 | + return strrpos($str, $find, $offset); |
|
| 572 | 572 | } |
| 573 | 573 | |
| 574 | 574 | /** |
@@ -583,16 +583,16 @@ discard block |
||
| 583 | 583 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 584 | 584 | * @return string |
| 585 | 585 | */ |
| 586 | -function wpinv_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) { |
|
| 587 | - if ( function_exists( 'mb_substr' ) ) { |
|
| 588 | - if ( $length === null ) { |
|
| 589 | - return mb_substr( $str, $start, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
| 586 | +function wpinv_utf8_substr($str, $start, $length = null, $encoding = 'UTF-8') { |
|
| 587 | + if (function_exists('mb_substr')) { |
|
| 588 | + if ($length === null) { |
|
| 589 | + return mb_substr($str, $start, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
| 590 | 590 | } else { |
| 591 | - return mb_substr( $str, $start, $length, $encoding ); |
|
| 591 | + return mb_substr($str, $start, $length, $encoding); |
|
| 592 | 592 | } |
| 593 | 593 | } |
| 594 | 594 | |
| 595 | - return substr( $str, $start, $length ); |
|
| 595 | + return substr($str, $start, $length); |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | /** |
@@ -604,48 +604,48 @@ discard block |
||
| 604 | 604 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
| 605 | 605 | * @return string The width of string. |
| 606 | 606 | */ |
| 607 | -function wpinv_utf8_strwidth( $str, $encoding = 'UTF-8' ) { |
|
| 608 | - if ( function_exists( 'mb_strwidth' ) ) { |
|
| 609 | - return mb_strwidth( $str, $encoding ); |
|
| 607 | +function wpinv_utf8_strwidth($str, $encoding = 'UTF-8') { |
|
| 608 | + if (function_exists('mb_strwidth')) { |
|
| 609 | + return mb_strwidth($str, $encoding); |
|
| 610 | 610 | } |
| 611 | 611 | |
| 612 | - return wpinv_utf8_strlen( $str, $encoding ); |
|
| 612 | + return wpinv_utf8_strlen($str, $encoding); |
|
| 613 | 613 | } |
| 614 | 614 | |
| 615 | -function wpinv_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) { |
|
| 616 | - if ( function_exists( 'mb_strlen' ) ) { |
|
| 617 | - $first_letter = wpinv_utf8_strtoupper( wpinv_utf8_substr( $str, 0, 1, $encoding ), $encoding ); |
|
| 615 | +function wpinv_utf8_ucfirst($str, $lower_str_end = false, $encoding = 'UTF-8') { |
|
| 616 | + if (function_exists('mb_strlen')) { |
|
| 617 | + $first_letter = wpinv_utf8_strtoupper(wpinv_utf8_substr($str, 0, 1, $encoding), $encoding); |
|
| 618 | 618 | $str_end = ""; |
| 619 | 619 | |
| 620 | - if ( $lower_str_end ) { |
|
| 621 | - $str_end = wpinv_utf8_strtolower( wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ), $encoding ); |
|
| 620 | + if ($lower_str_end) { |
|
| 621 | + $str_end = wpinv_utf8_strtolower(wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding), $encoding); |
|
| 622 | 622 | } else { |
| 623 | - $str_end = wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
| 623 | + $str_end = wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
| 624 | 624 | } |
| 625 | 625 | |
| 626 | 626 | return $first_letter . $str_end; |
| 627 | 627 | } |
| 628 | 628 | |
| 629 | - return ucfirst( $str ); |
|
| 629 | + return ucfirst($str); |
|
| 630 | 630 | } |
| 631 | 631 | |
| 632 | -function wpinv_utf8_ucwords( $str, $encoding = 'UTF-8' ) { |
|
| 633 | - if ( function_exists( 'mb_convert_case' ) ) { |
|
| 634 | - return mb_convert_case( $str, MB_CASE_TITLE, $encoding ); |
|
| 632 | +function wpinv_utf8_ucwords($str, $encoding = 'UTF-8') { |
|
| 633 | + if (function_exists('mb_convert_case')) { |
|
| 634 | + return mb_convert_case($str, MB_CASE_TITLE, $encoding); |
|
| 635 | 635 | } |
| 636 | 636 | |
| 637 | - return ucwords( $str ); |
|
| 637 | + return ucwords($str); |
|
| 638 | 638 | } |
| 639 | 639 | |
| 640 | -function wpinv_period_in_days( $period, $unit ) { |
|
| 641 | - $period = absint( $period ); |
|
| 640 | +function wpinv_period_in_days($period, $unit) { |
|
| 641 | + $period = absint($period); |
|
| 642 | 642 | |
| 643 | - if ( $period > 0 ) { |
|
| 644 | - if ( in_array( strtolower( $unit ), array( 'w', 'week', 'weeks' ) ) ) { |
|
| 643 | + if ($period > 0) { |
|
| 644 | + if (in_array(strtolower($unit), array('w', 'week', 'weeks'))) { |
|
| 645 | 645 | $period = $period * 7; |
| 646 | - } else if ( in_array( strtolower( $unit ), array( 'm', 'month', 'months' ) ) ) { |
|
| 646 | + } else if (in_array(strtolower($unit), array('m', 'month', 'months'))) { |
|
| 647 | 647 | $period = $period * 30; |
| 648 | - } else if ( in_array( strtolower( $unit ), array( 'y', 'year', 'years' ) ) ) { |
|
| 648 | + } else if (in_array(strtolower($unit), array('y', 'year', 'years'))) { |
|
| 649 | 649 | $period = $period * 365; |
| 650 | 650 | } |
| 651 | 651 | } |
@@ -653,14 +653,14 @@ discard block |
||
| 653 | 653 | return $period; |
| 654 | 654 | } |
| 655 | 655 | |
| 656 | -function wpinv_cal_days_in_month( $calendar, $month, $year ) { |
|
| 657 | - if ( function_exists( 'cal_days_in_month' ) ) { |
|
| 658 | - return cal_days_in_month( $calendar, $month, $year ); |
|
| 656 | +function wpinv_cal_days_in_month($calendar, $month, $year) { |
|
| 657 | + if (function_exists('cal_days_in_month')) { |
|
| 658 | + return cal_days_in_month($calendar, $month, $year); |
|
| 659 | 659 | } |
| 660 | 660 | |
| 661 | 661 | // Fallback in case the calendar extension is not loaded in PHP |
| 662 | 662 | // Only supports Gregorian calendar |
| 663 | - return date( 't', mktime( 0, 0, 0, $month, 1, $year ) ); |
|
| 663 | + return date('t', mktime(0, 0, 0, $month, 1, $year)); |
|
| 664 | 664 | } |
| 665 | 665 | |
| 666 | 666 | /** |
@@ -671,15 +671,15 @@ discard block |
||
| 671 | 671 | * |
| 672 | 672 | * @return string |
| 673 | 673 | */ |
| 674 | -function wpi_help_tip( $tip, $allow_html = false, $is_vue = false ) { |
|
| 674 | +function wpi_help_tip($tip, $allow_html = false, $is_vue = false) { |
|
| 675 | 675 | |
| 676 | - if ( $allow_html ) { |
|
| 677 | - $tip = wpi_sanitize_tooltip( $tip ); |
|
| 676 | + if ($allow_html) { |
|
| 677 | + $tip = wpi_sanitize_tooltip($tip); |
|
| 678 | 678 | } else { |
| 679 | - $tip = esc_attr( $tip ); |
|
| 679 | + $tip = esc_attr($tip); |
|
| 680 | 680 | } |
| 681 | 681 | |
| 682 | - if ( $is_vue ) { |
|
| 682 | + if ($is_vue) { |
|
| 683 | 683 | return '<span class="dashicons dashicons-editor-help" title="' . $tip . '"></span>'; |
| 684 | 684 | } |
| 685 | 685 | |
@@ -694,8 +694,8 @@ discard block |
||
| 694 | 694 | * @param string $var |
| 695 | 695 | * @return string |
| 696 | 696 | */ |
| 697 | -function wpi_sanitize_tooltip( $var ) { |
|
| 698 | - return wp_kses( html_entity_decode( $var ), array( |
|
| 697 | +function wpi_sanitize_tooltip($var) { |
|
| 698 | + return wp_kses(html_entity_decode($var), array( |
|
| 699 | 699 | 'br' => array(), |
| 700 | 700 | 'em' => array(), |
| 701 | 701 | 'strong' => array(), |
@@ -706,7 +706,7 @@ discard block |
||
| 706 | 706 | 'li' => array(), |
| 707 | 707 | 'ol' => array(), |
| 708 | 708 | 'p' => array(), |
| 709 | - ) ); |
|
| 709 | + )); |
|
| 710 | 710 | } |
| 711 | 711 | |
| 712 | 712 | /** |
@@ -716,7 +716,7 @@ discard block |
||
| 716 | 716 | */ |
| 717 | 717 | function wpinv_get_screen_ids() { |
| 718 | 718 | |
| 719 | - $screen_id = sanitize_title( __( 'Invoicing', 'invoicing' ) ); |
|
| 719 | + $screen_id = sanitize_title(__('Invoicing', 'invoicing')); |
|
| 720 | 720 | |
| 721 | 721 | $screen_ids = array( |
| 722 | 722 | 'toplevel_page_' . $screen_id, |
@@ -735,10 +735,10 @@ discard block |
||
| 735 | 735 | 'getpaid_page_wpinv-reports', |
| 736 | 736 | 'getpaid_page_wpi-addons', |
| 737 | 737 | 'getpaid_page_wpinv-customers', |
| 738 | - 'gp-setup',// setup wizard |
|
| 738 | + 'gp-setup', // setup wizard |
|
| 739 | 739 | ); |
| 740 | 740 | |
| 741 | - return apply_filters( 'wpinv_screen_ids', $screen_ids ); |
|
| 741 | + return apply_filters('wpinv_screen_ids', $screen_ids); |
|
| 742 | 742 | } |
| 743 | 743 | |
| 744 | 744 | /** |
@@ -749,14 +749,14 @@ discard block |
||
| 749 | 749 | * @param array|string $list List of values. |
| 750 | 750 | * @return array Sanitized array of values. |
| 751 | 751 | */ |
| 752 | -function wpinv_parse_list( $list ) { |
|
| 752 | +function wpinv_parse_list($list) { |
|
| 753 | 753 | |
| 754 | - if ( empty( $list ) ) { |
|
| 754 | + if (empty($list)) { |
|
| 755 | 755 | $list = array(); |
| 756 | 756 | } |
| 757 | 757 | |
| 758 | - if ( ! is_array( $list ) ) { |
|
| 759 | - return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
| 758 | + if (!is_array($list)) { |
|
| 759 | + return preg_split('/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY); |
|
| 760 | 760 | } |
| 761 | 761 | |
| 762 | 762 | return $list; |
@@ -770,16 +770,16 @@ discard block |
||
| 770 | 770 | * @param string $key Type of data to fetch. |
| 771 | 771 | * @return mixed Fetched data. |
| 772 | 772 | */ |
| 773 | -function wpinv_get_data( $key ) { |
|
| 773 | +function wpinv_get_data($key) { |
|
| 774 | 774 | |
| 775 | 775 | // Try fetching it from the cache. |
| 776 | - $data = wp_cache_get( "wpinv-data-$key", 'wpinv' ); |
|
| 777 | - if( $data ) { |
|
| 776 | + $data = wp_cache_get("wpinv-data-$key", 'wpinv'); |
|
| 777 | + if ($data) { |
|
| 778 | 778 | return $data; |
| 779 | 779 | } |
| 780 | 780 | |
| 781 | - $data = apply_filters( "wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php" ); |
|
| 782 | - wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
| 781 | + $data = apply_filters("wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php"); |
|
| 782 | + wp_cache_set("wpinv-data-$key", $data, 'wpinv'); |
|
| 783 | 783 | |
| 784 | 784 | return $data; |
| 785 | 785 | } |
@@ -793,10 +793,10 @@ discard block |
||
| 793 | 793 | * @param bool $first_empty Whether or not the first item in the list should be empty |
| 794 | 794 | * @return mixed Fetched data. |
| 795 | 795 | */ |
| 796 | -function wpinv_maybe_add_empty_option( $options, $first_empty ) { |
|
| 796 | +function wpinv_maybe_add_empty_option($options, $first_empty) { |
|
| 797 | 797 | |
| 798 | - if ( ! empty( $options ) && $first_empty ) { |
|
| 799 | - return array_merge( array( '' => '' ), $options ); |
|
| 798 | + if (!empty($options) && $first_empty) { |
|
| 799 | + return array_merge(array('' => ''), $options); |
|
| 800 | 800 | } |
| 801 | 801 | return $options; |
| 802 | 802 | |
@@ -808,21 +808,21 @@ discard block |
||
| 808 | 808 | * @param mixed $var Data to sanitize. |
| 809 | 809 | * @return string|array |
| 810 | 810 | */ |
| 811 | -function wpinv_clean( $var ) { |
|
| 811 | +function wpinv_clean($var) { |
|
| 812 | 812 | |
| 813 | - if ( is_array( $var ) ) { |
|
| 814 | - return array_map( 'wpinv_clean', $var ); |
|
| 813 | + if (is_array($var)) { |
|
| 814 | + return array_map('wpinv_clean', $var); |
|
| 815 | 815 | } |
| 816 | 816 | |
| 817 | - if ( is_object( $var ) ) { |
|
| 818 | - $object_vars = get_object_vars( $var ); |
|
| 819 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
| 820 | - $var->$property_name = wpinv_clean( $property_value ); |
|
| 817 | + if (is_object($var)) { |
|
| 818 | + $object_vars = get_object_vars($var); |
|
| 819 | + foreach ($object_vars as $property_name => $property_value) { |
|
| 820 | + $var->$property_name = wpinv_clean($property_value); |
|
| 821 | 821 | } |
| 822 | 822 | return $var; |
| 823 | 823 | } |
| 824 | 824 | |
| 825 | - return is_string( $var ) ? sanitize_text_field( stripslashes( $var ) ) : $var; |
|
| 825 | + return is_string($var) ? sanitize_text_field(stripslashes($var)) : $var; |
|
| 826 | 826 | } |
| 827 | 827 | |
| 828 | 828 | /** |
@@ -831,43 +831,43 @@ discard block |
||
| 831 | 831 | * @param string $str Data to convert. |
| 832 | 832 | * @return string|array |
| 833 | 833 | */ |
| 834 | -function getpaid_convert_price_string_to_options( $str ) { |
|
| 834 | +function getpaid_convert_price_string_to_options($str) { |
|
| 835 | 835 | |
| 836 | - $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
| 837 | - $options = array(); |
|
| 836 | + $raw_options = array_map('trim', explode(',', $str)); |
|
| 837 | + $options = array(); |
|
| 838 | 838 | |
| 839 | - foreach ( $raw_options as $option ) { |
|
| 839 | + foreach ($raw_options as $option) { |
|
| 840 | 840 | |
| 841 | - if ( '' == $option ) { |
|
| 841 | + if ('' == $option) { |
|
| 842 | 842 | continue; |
| 843 | 843 | } |
| 844 | 844 | |
| 845 | - $option = array_map( 'trim', explode( '|', $option ) ); |
|
| 845 | + $option = array_map('trim', explode('|', $option)); |
|
| 846 | 846 | |
| 847 | 847 | $price = null; |
| 848 | 848 | $label = null; |
| 849 | 849 | |
| 850 | - if ( isset( $option[0] ) && '' != $option[0] ) { |
|
| 851 | - $label = $option[0]; |
|
| 850 | + if (isset($option[0]) && '' != $option[0]) { |
|
| 851 | + $label = $option[0]; |
|
| 852 | 852 | } |
| 853 | 853 | |
| 854 | - if ( isset( $option[1] ) && '' != $option[1] ) { |
|
| 854 | + if (isset($option[1]) && '' != $option[1]) { |
|
| 855 | 855 | $price = $option[1]; |
| 856 | 856 | } |
| 857 | 857 | |
| 858 | - if ( ! isset( $price ) ) { |
|
| 858 | + if (!isset($price)) { |
|
| 859 | 859 | $price = $label; |
| 860 | 860 | } |
| 861 | 861 | |
| 862 | - if ( ! isset( $price ) || ! is_numeric( $price ) ) { |
|
| 862 | + if (!isset($price) || !is_numeric($price)) { |
|
| 863 | 863 | continue; |
| 864 | 864 | } |
| 865 | 865 | |
| 866 | - if ( ! isset( $label ) ) { |
|
| 866 | + if (!isset($label)) { |
|
| 867 | 867 | $label = $price; |
| 868 | 868 | } |
| 869 | 869 | |
| 870 | - $options[ "$label|$price" ] = $label; |
|
| 870 | + $options["$label|$price"] = $label; |
|
| 871 | 871 | } |
| 872 | 872 | |
| 873 | 873 | return $options; |
@@ -876,27 +876,27 @@ discard block |
||
| 876 | 876 | /** |
| 877 | 877 | * Returns the help tip. |
| 878 | 878 | */ |
| 879 | -function getpaid_get_help_tip( $tip, $additional_classes = '' ) { |
|
| 880 | - $additional_classes = sanitize_html_class( $additional_classes ); |
|
| 881 | - $tip = esc_attr__( $tip ); |
|
| 879 | +function getpaid_get_help_tip($tip, $additional_classes = '') { |
|
| 880 | + $additional_classes = sanitize_html_class($additional_classes); |
|
| 881 | + $tip = esc_attr__($tip); |
|
| 882 | 882 | return "<span class='wpi-help-tip dashicons dashicons-editor-help $additional_classes' title='$tip'></span>"; |
| 883 | 883 | } |
| 884 | 884 | |
| 885 | 885 | /** |
| 886 | 886 | * Formats a date |
| 887 | 887 | */ |
| 888 | -function getpaid_format_date( $date, $with_time = false ) { |
|
| 888 | +function getpaid_format_date($date, $with_time = false) { |
|
| 889 | 889 | |
| 890 | - if ( empty( $date ) || $date == '0000-00-00 00:00:00' ) { |
|
| 890 | + if (empty($date) || $date == '0000-00-00 00:00:00') { |
|
| 891 | 891 | return ''; |
| 892 | 892 | } |
| 893 | 893 | |
| 894 | 894 | $format = getpaid_date_format(); |
| 895 | 895 | |
| 896 | - if ( $with_time ) { |
|
| 896 | + if ($with_time) { |
|
| 897 | 897 | $format .= ' ' . getpaid_time_format(); |
| 898 | 898 | } |
| 899 | - return date_i18n( $format, strtotime( $date ) ); |
|
| 899 | + return date_i18n($format, strtotime($date)); |
|
| 900 | 900 | |
| 901 | 901 | } |
| 902 | 902 | |
@@ -905,9 +905,9 @@ discard block |
||
| 905 | 905 | * |
| 906 | 906 | * @return string |
| 907 | 907 | */ |
| 908 | -function getpaid_format_date_value( $date, $default = "—", $with_time = false ) { |
|
| 909 | - $date = getpaid_format_date( $date, $with_time ); |
|
| 910 | - return empty( $date ) ? $default : $date; |
|
| 908 | +function getpaid_format_date_value($date, $default = "—", $with_time = false) { |
|
| 909 | + $date = getpaid_format_date($date, $with_time); |
|
| 910 | + return empty($date) ? $default : $date; |
|
| 911 | 911 | } |
| 912 | 912 | |
| 913 | 913 | /** |
@@ -916,7 +916,7 @@ discard block |
||
| 916 | 916 | * @return string |
| 917 | 917 | */ |
| 918 | 918 | function getpaid_date_format() { |
| 919 | - return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
| 919 | + return apply_filters('getpaid_date_format', get_option('date_format')); |
|
| 920 | 920 | } |
| 921 | 921 | |
| 922 | 922 | /** |
@@ -925,7 +925,7 @@ discard block |
||
| 925 | 925 | * @return string |
| 926 | 926 | */ |
| 927 | 927 | function getpaid_time_format() { |
| 928 | - return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
| 928 | + return apply_filters('getpaid_time_format', get_option('time_format')); |
|
| 929 | 929 | } |
| 930 | 930 | |
| 931 | 931 | /** |
@@ -935,16 +935,16 @@ discard block |
||
| 935 | 935 | * @param integer $limit Limit size in characters. |
| 936 | 936 | * @return string |
| 937 | 937 | */ |
| 938 | -function getpaid_limit_length( $string, $limit ) { |
|
| 938 | +function getpaid_limit_length($string, $limit) { |
|
| 939 | 939 | $str_limit = $limit - 3; |
| 940 | 940 | |
| 941 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
| 942 | - if ( mb_strlen( $string ) > $limit ) { |
|
| 943 | - $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
| 941 | + if (function_exists('mb_strimwidth')) { |
|
| 942 | + if (mb_strlen($string) > $limit) { |
|
| 943 | + $string = mb_strimwidth($string, 0, $str_limit) . '...'; |
|
| 944 | 944 | } |
| 945 | 945 | } else { |
| 946 | - if ( strlen( $string ) > $limit ) { |
|
| 947 | - $string = substr( $string, 0, $str_limit ) . '...'; |
|
| 946 | + if (strlen($string) > $limit) { |
|
| 947 | + $string = substr($string, 0, $str_limit) . '...'; |
|
| 948 | 948 | } |
| 949 | 949 | } |
| 950 | 950 | return $string; |
@@ -958,7 +958,7 @@ discard block |
||
| 958 | 958 | * @since 1.0.19 |
| 959 | 959 | */ |
| 960 | 960 | function getpaid_api() { |
| 961 | - return getpaid()->get( 'api' ); |
|
| 961 | + return getpaid()->get('api'); |
|
| 962 | 962 | } |
| 963 | 963 | |
| 964 | 964 | /** |
@@ -968,7 +968,7 @@ discard block |
||
| 968 | 968 | * @since 1.0.19 |
| 969 | 969 | */ |
| 970 | 970 | function getpaid_post_types() { |
| 971 | - return getpaid()->get( 'post_types' ); |
|
| 971 | + return getpaid()->get('post_types'); |
|
| 972 | 972 | } |
| 973 | 973 | |
| 974 | 974 | /** |
@@ -978,7 +978,7 @@ discard block |
||
| 978 | 978 | * @since 1.0.19 |
| 979 | 979 | */ |
| 980 | 980 | function getpaid_session() { |
| 981 | - return getpaid()->get( 'session' ); |
|
| 981 | + return getpaid()->get('session'); |
|
| 982 | 982 | } |
| 983 | 983 | |
| 984 | 984 | /** |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | * @since 1.0.19 |
| 989 | 989 | */ |
| 990 | 990 | function getpaid_notes() { |
| 991 | - return getpaid()->get( 'notes' ); |
|
| 991 | + return getpaid()->get('notes'); |
|
| 992 | 992 | } |
| 993 | 993 | |
| 994 | 994 | /** |
@@ -997,7 +997,7 @@ discard block |
||
| 997 | 997 | * @return GetPaid_Admin |
| 998 | 998 | */ |
| 999 | 999 | function getpaid_admin() { |
| 1000 | - return getpaid()->get( 'admin' ); |
|
| 1000 | + return getpaid()->get('admin'); |
|
| 1001 | 1001 | } |
| 1002 | 1002 | |
| 1003 | 1003 | /** |
@@ -1007,8 +1007,8 @@ discard block |
||
| 1007 | 1007 | * @param string $base the base url |
| 1008 | 1008 | * @return string |
| 1009 | 1009 | */ |
| 1010 | -function getpaid_get_authenticated_action_url( $action, $base = false ) { |
|
| 1011 | - return wp_nonce_url( add_query_arg( 'getpaid-action', $action, $base ), 'getpaid-nonce', 'getpaid-nonce' ); |
|
| 1010 | +function getpaid_get_authenticated_action_url($action, $base = false) { |
|
| 1011 | + return wp_nonce_url(add_query_arg('getpaid-action', $action, $base), 'getpaid-nonce', 'getpaid-nonce'); |
|
| 1012 | 1012 | } |
| 1013 | 1013 | |
| 1014 | 1014 | /** |
@@ -1016,11 +1016,11 @@ discard block |
||
| 1016 | 1016 | * |
| 1017 | 1017 | * @return string |
| 1018 | 1018 | */ |
| 1019 | -function getpaid_get_post_type_label( $post_type, $plural = true ) { |
|
| 1019 | +function getpaid_get_post_type_label($post_type, $plural = true) { |
|
| 1020 | 1020 | |
| 1021 | - $post_type = get_post_type_object( $post_type ); |
|
| 1021 | + $post_type = get_post_type_object($post_type); |
|
| 1022 | 1022 | |
| 1023 | - if ( ! is_object( $post_type ) ) { |
|
| 1023 | + if (!is_object($post_type)) { |
|
| 1024 | 1024 | return null; |
| 1025 | 1025 | } |
| 1026 | 1026 | |
@@ -1033,18 +1033,18 @@ discard block |
||
| 1033 | 1033 | * |
| 1034 | 1034 | * @return mixed|null |
| 1035 | 1035 | */ |
| 1036 | -function getpaid_get_array_field( $array, $key, $secondary_key = null ) { |
|
| 1036 | +function getpaid_get_array_field($array, $key, $secondary_key = null) { |
|
| 1037 | 1037 | |
| 1038 | - if ( ! is_array( $array ) ) { |
|
| 1038 | + if (!is_array($array)) { |
|
| 1039 | 1039 | return null; |
| 1040 | 1040 | } |
| 1041 | 1041 | |
| 1042 | - if ( ! empty( $secondary_key ) ) { |
|
| 1043 | - $array = isset( $array[ $secondary_key ] ) ? $array[ $secondary_key ] : array(); |
|
| 1044 | - return getpaid_get_array_field( $array, $key ); |
|
| 1042 | + if (!empty($secondary_key)) { |
|
| 1043 | + $array = isset($array[$secondary_key]) ? $array[$secondary_key] : array(); |
|
| 1044 | + return getpaid_get_array_field($array, $key); |
|
| 1045 | 1045 | } |
| 1046 | 1046 | |
| 1047 | - return isset( $array[ $key ] ) ? $array[ $key ] : null; |
|
| 1047 | + return isset($array[$key]) ? $array[$key] : null; |
|
| 1048 | 1048 | |
| 1049 | 1049 | } |
| 1050 | 1050 | |
@@ -1053,12 +1053,12 @@ discard block |
||
| 1053 | 1053 | * |
| 1054 | 1054 | * @return array |
| 1055 | 1055 | */ |
| 1056 | -function getpaid_array_merge_if_empty( $args, $defaults ) { |
|
| 1056 | +function getpaid_array_merge_if_empty($args, $defaults) { |
|
| 1057 | 1057 | |
| 1058 | - foreach ( $defaults as $key => $value ) { |
|
| 1058 | + foreach ($defaults as $key => $value) { |
|
| 1059 | 1059 | |
| 1060 | - if ( array_key_exists( $key, $args ) && empty( $args[ $key ] ) ) { |
|
| 1061 | - $args[ $key ] = $value; |
|
| 1060 | + if (array_key_exists($key, $args) && empty($args[$key])) { |
|
| 1061 | + $args[$key] = $value; |
|
| 1062 | 1062 | } |
| 1063 | 1063 | |
| 1064 | 1064 | } |
@@ -1076,12 +1076,12 @@ discard block |
||
| 1076 | 1076 | |
| 1077 | 1077 | $types = get_allowed_mime_types(); |
| 1078 | 1078 | |
| 1079 | - if ( isset( $types['htm|html'] ) ) { |
|
| 1080 | - unset( $types['htm|html'] ); |
|
| 1079 | + if (isset($types['htm|html'])) { |
|
| 1080 | + unset($types['htm|html']); |
|
| 1081 | 1081 | } |
| 1082 | 1082 | |
| 1083 | - if ( isset( $types['js'] ) ) { |
|
| 1084 | - unset( $types['js'] ); |
|
| 1083 | + if (isset($types['js'])) { |
|
| 1084 | + unset($types['js']); |
|
| 1085 | 1085 | } |
| 1086 | 1086 | |
| 1087 | 1087 | return $types; |
@@ -1,32 +1,32 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | - // Is the request set up correctly? |
|
| 4 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
| 5 | - return aui()->alert( |
|
| 6 | - array( |
|
| 7 | - 'type' => 'warning', |
|
| 8 | - 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
| 9 | - ) |
|
| 10 | - ); |
|
| 11 | - wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
| 12 | - } |
|
| 13 | - |
|
| 14 | - // Payment form or button? |
|
| 15 | - if ( ! empty( $_GET['form'] ) ) { |
|
| 16 | - |
|
| 17 | - $shortcode = sprintf( |
|
| 18 | - '[getpaid form=%s]', |
|
| 19 | - (int) urldecode( $_GET['form'] ) |
|
| 20 | - ); |
|
| 21 | - |
|
| 22 | - } else { |
|
| 23 | - |
|
| 24 | - $shortcode = sprintf( |
|
| 25 | - '[getpaid item=%s]', |
|
| 26 | - esc_attr( urldecode( $_GET['item'] ) ) |
|
| 27 | - ); |
|
| 28 | - |
|
| 29 | - } |
|
| 3 | + // Is the request set up correctly? |
|
| 4 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
| 5 | + return aui()->alert( |
|
| 6 | + array( |
|
| 7 | + 'type' => 'warning', |
|
| 8 | + 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
| 9 | + ) |
|
| 10 | + ); |
|
| 11 | + wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
| 12 | + } |
|
| 13 | + |
|
| 14 | + // Payment form or button? |
|
| 15 | + if ( ! empty( $_GET['form'] ) ) { |
|
| 16 | + |
|
| 17 | + $shortcode = sprintf( |
|
| 18 | + '[getpaid form=%s]', |
|
| 19 | + (int) urldecode( $_GET['form'] ) |
|
| 20 | + ); |
|
| 21 | + |
|
| 22 | + } else { |
|
| 23 | + |
|
| 24 | + $shortcode = sprintf( |
|
| 25 | + '[getpaid item=%s]', |
|
| 26 | + esc_attr( urldecode( $_GET['item'] ) ) |
|
| 27 | + ); |
|
| 28 | + |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | 31 | ?> |
| 32 | 32 | |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | <title>GetPaid</title> |
| 46 | 46 | <?php |
| 47 | - wp_enqueue_scripts(); |
|
| 48 | - wp_print_styles(); |
|
| 49 | - wp_print_head_scripts(); |
|
| 50 | - wp_custom_css_cb(); |
|
| 51 | - wpinv_get_template( 'frontend-head.php' ); |
|
| 52 | - ?> |
|
| 47 | + wp_enqueue_scripts(); |
|
| 48 | + wp_print_styles(); |
|
| 49 | + wp_print_head_scripts(); |
|
| 50 | + wp_custom_css_cb(); |
|
| 51 | + wpinv_get_template( 'frontend-head.php' ); |
|
| 52 | + ?> |
|
| 53 | 53 | |
| 54 | 54 | <style type="text/css"> |
| 55 | 55 | .body{ |
@@ -83,11 +83,11 @@ discard block |
||
| 83 | 83 | <body class="body page-template-default page"> |
| 84 | 84 | <div id="getpaid-form-embed" class="container my-5 page type-page status-publish hentry post post-content"> |
| 85 | 85 | <?php |
| 86 | - do_action( 'getpaid_payment_form_embed_top' ); |
|
| 87 | - echo do_shortcode( $shortcode ); |
|
| 88 | - do_action( 'getpaid_payment_form_embed_bottom' ); |
|
| 89 | - wpinv_get_template( 'frontend-footer.php' ); |
|
| 90 | - ?> |
|
| 86 | + do_action( 'getpaid_payment_form_embed_top' ); |
|
| 87 | + echo do_shortcode( $shortcode ); |
|
| 88 | + do_action( 'getpaid_payment_form_embed_bottom' ); |
|
| 89 | + wpinv_get_template( 'frontend-footer.php' ); |
|
| 90 | + ?> |
|
| 91 | 91 | </div> |
| 92 | 92 | <?php wp_footer(); ?> |
| 93 | 93 | </body> |
@@ -1,29 +1,29 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | // Is the request set up correctly? |
| 4 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
| 4 | + if (empty($_GET['form']) && empty($_GET['item'])) { |
|
| 5 | 5 | return aui()->alert( |
| 6 | 6 | array( |
| 7 | 7 | 'type' => 'warning', |
| 8 | - 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
| 8 | + 'content' => __('No payment form or item selected', 'invoicing'), |
|
| 9 | 9 | ) |
| 10 | 10 | ); |
| 11 | - wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
| 11 | + wp_die(__('No payment form or item selected', 'invoicing'), 400); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | // Payment form or button? |
| 15 | - if ( ! empty( $_GET['form'] ) ) { |
|
| 15 | + if (!empty($_GET['form'])) { |
|
| 16 | 16 | |
| 17 | 17 | $shortcode = sprintf( |
| 18 | 18 | '[getpaid form=%s]', |
| 19 | - (int) urldecode( $_GET['form'] ) |
|
| 19 | + (int) urldecode($_GET['form']) |
|
| 20 | 20 | ); |
| 21 | 21 | |
| 22 | 22 | } else { |
| 23 | 23 | |
| 24 | 24 | $shortcode = sprintf( |
| 25 | 25 | '[getpaid item=%s]', |
| 26 | - esc_attr( urldecode( $_GET['item'] ) ) |
|
| 26 | + esc_attr(urldecode($_GET['item'])) |
|
| 27 | 27 | ); |
| 28 | 28 | |
| 29 | 29 | } |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | <head> |
| 37 | 37 | |
| 38 | - <meta charset="<?php bloginfo( 'charset' ); ?>"> |
|
| 38 | + <meta charset="<?php bloginfo('charset'); ?>"> |
|
| 39 | 39 | <meta name="viewport" content="width=device-width, initial-scale=1.0" > |
| 40 | 40 | |
| 41 | 41 | <meta name="robots" content="noindex,nofollow"> |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | wp_print_styles(); |
| 49 | 49 | wp_print_head_scripts(); |
| 50 | 50 | wp_custom_css_cb(); |
| 51 | - wpinv_get_template( 'frontend-head.php' ); |
|
| 51 | + wpinv_get_template('frontend-head.php'); |
|
| 52 | 52 | ?> |
| 53 | 53 | |
| 54 | 54 | <style type="text/css"> |
@@ -83,10 +83,10 @@ discard block |
||
| 83 | 83 | <body class="body page-template-default page"> |
| 84 | 84 | <div id="getpaid-form-embed" class="container my-5 page type-page status-publish hentry post post-content"> |
| 85 | 85 | <?php |
| 86 | - do_action( 'getpaid_payment_form_embed_top' ); |
|
| 87 | - echo do_shortcode( $shortcode ); |
|
| 88 | - do_action( 'getpaid_payment_form_embed_bottom' ); |
|
| 89 | - wpinv_get_template( 'frontend-footer.php' ); |
|
| 86 | + do_action('getpaid_payment_form_embed_top'); |
|
| 87 | + echo do_shortcode($shortcode); |
|
| 88 | + do_action('getpaid_payment_form_embed_bottom'); |
|
| 89 | + wpinv_get_template('frontend-footer.php'); |
|
| 90 | 90 | ?> |
| 91 | 91 | </div> |
| 92 | 92 | <?php wp_footer(); ?> |
@@ -8,24 +8,24 @@ discard block |
||
| 8 | 8 | * @var GetPaid_Payment_Form $form The current payment form |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | -if ( ! getpaid_has_published_discount() ) { |
|
| 13 | +if (!getpaid_has_published_discount()) { |
|
| 14 | 14 | return; |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | -$placeholder = esc_attr( $input_label ); |
|
| 18 | -$label = esc_html( $button_label ); |
|
| 17 | +$placeholder = esc_attr($input_label); |
|
| 18 | +$label = esc_html($button_label); |
|
| 19 | 19 | |
| 20 | -if ( ! empty( $description ) ) { |
|
| 20 | +if (!empty($description)) { |
|
| 21 | 21 | $description = "<small class='form-text text-muted'>$description</small>"; |
| 22 | 22 | } else { |
| 23 | 23 | $description = ''; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | $discount_code = ''; |
| 27 | -if ( ! empty( $form->invoice ) ) { |
|
| 28 | - $discount_code = esc_attr( $form->invoice->get_discount_code() ); |
|
| 27 | +if (!empty($form->invoice)) { |
|
| 28 | + $discount_code = esc_attr($form->invoice->get_discount_code()); |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | ?> |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | <input name="discount" placeholder="<?php echo $placeholder; ?>" value="<?php echo $discount_code; ?>" class="form-control mr-2 mb-2 getpaid-discount-field-input" style="flex: 1;" type="text"> |
| 37 | 37 | <a href="#" class="btn btn-secondary submit-button mb-2 getpaid-discount-button"><?php echo $label; ?></a> |
| 38 | 38 | </div> |
| 39 | - <?php echo wp_kses_post( $description ); ?> |
|
| 39 | + <?php echo wp_kses_post($description); ?> |
|
| 40 | 40 | <div class="getpaid-custom-payment-form-errors alert alert-danger d-none"></div> |
| 41 | 41 | </div> |
| 42 | 42 | </div> |
@@ -7,11 +7,11 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$tag = isset( $element['level'] ) ? trim( $element['level'] ) : 'h3'; |
|
| 13 | -$text = isset( $element['text'] ) ? wp_kses_post( trim( $element['text'] ) ) : ''; |
|
| 12 | +$tag = isset($element['level']) ? trim($element['level']) : 'h3'; |
|
| 13 | +$text = isset($element['text']) ? wp_kses_post(trim($element['text'])) : ''; |
|
| 14 | 14 | |
| 15 | -if ( ! empty( $text ) ) { |
|
| 15 | +if (!empty($text)) { |
|
| 16 | 16 | echo "<$tag>$text</$tag>"; |
| 17 | 17 | } |
@@ -7,10 +7,10 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$text = isset( $element['text'] ) ? wp_kses_post( trim( $element['text'] ) ) : ''; |
|
| 12 | +$text = isset($element['text']) ? wp_kses_post(trim($element['text'])) : ''; |
|
| 13 | 13 | |
| 14 | -if ( ! empty( $text ) ) { |
|
| 14 | +if (!empty($text)) { |
|
| 15 | 15 | echo "<p>$text</p>"; |
| 16 | 16 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | - exit; |
|
| 3 | + exit; |
|
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | /** |
@@ -10,55 +10,55 @@ discard block |
||
| 10 | 10 | class GetPaid_Payment_Form extends GetPaid_Data { |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | - * Which data store to load. |
|
| 14 | - * |
|
| 15 | - * @var string |
|
| 16 | - */ |
|
| 13 | + * Which data store to load. |
|
| 14 | + * |
|
| 15 | + * @var string |
|
| 16 | + */ |
|
| 17 | 17 | protected $data_store_name = 'payment_form'; |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * This is the name of this object type. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - protected $object_type = 'payment_form'; |
|
| 20 | + * This is the name of this object type. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + protected $object_type = 'payment_form'; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | - * Form Data array. This is the core form data exposed in APIs. |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data = array( |
|
| 33 | - 'status' => 'draft', |
|
| 34 | - 'version' => '', |
|
| 35 | - 'date_created' => null, |
|
| 27 | + * Form Data array. This is the core form data exposed in APIs. |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data = array( |
|
| 33 | + 'status' => 'draft', |
|
| 34 | + 'version' => '', |
|
| 35 | + 'date_created' => null, |
|
| 36 | 36 | 'date_modified' => null, |
| 37 | 37 | 'name' => '', |
| 38 | 38 | 'author' => 1, |
| 39 | 39 | 'elements' => null, |
| 40 | - 'items' => null, |
|
| 41 | - 'earned' => 0, |
|
| 42 | - 'refunded' => 0, |
|
| 43 | - 'cancelled' => 0, |
|
| 44 | - 'failed' => 0, |
|
| 45 | - ); |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Stores meta in cache for future reads. |
|
| 49 | - * |
|
| 50 | - * A group must be set to to enable caching. |
|
| 51 | - * |
|
| 52 | - * @var string |
|
| 53 | - */ |
|
| 54 | - protected $cache_group = 'getpaid_forms'; |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * Stores a reference to the invoice if the form is for an invoice.. |
|
| 58 | - * |
|
| 59 | - * @var WPInv_Invoice |
|
| 60 | - */ |
|
| 61 | - public $invoice = 0; |
|
| 40 | + 'items' => null, |
|
| 41 | + 'earned' => 0, |
|
| 42 | + 'refunded' => 0, |
|
| 43 | + 'cancelled' => 0, |
|
| 44 | + 'failed' => 0, |
|
| 45 | + ); |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Stores meta in cache for future reads. |
|
| 49 | + * |
|
| 50 | + * A group must be set to to enable caching. |
|
| 51 | + * |
|
| 52 | + * @var string |
|
| 53 | + */ |
|
| 54 | + protected $cache_group = 'getpaid_forms'; |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * Stores a reference to the invoice if the form is for an invoice.. |
|
| 58 | + * |
|
| 59 | + * @var WPInv_Invoice |
|
| 60 | + */ |
|
| 61 | + public $invoice = 0; |
|
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Stores a reference to the original WP_Post object |
@@ -68,35 +68,35 @@ discard block |
||
| 68 | 68 | protected $post = null; |
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | - * Get the form if ID is passed, otherwise the form is new and empty. |
|
| 72 | - * |
|
| 73 | - * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
| 74 | - */ |
|
| 75 | - public function __construct( $form = 0 ) { |
|
| 76 | - parent::__construct( $form ); |
|
| 71 | + * Get the form if ID is passed, otherwise the form is new and empty. |
|
| 72 | + * |
|
| 73 | + * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
| 74 | + */ |
|
| 75 | + public function __construct( $form = 0 ) { |
|
| 76 | + parent::__construct( $form ); |
|
| 77 | 77 | |
| 78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | - $this->set_id( $form ); |
|
| 80 | - } elseif ( $form instanceof self ) { |
|
| 78 | + if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | + $this->set_id( $form ); |
|
| 80 | + } elseif ( $form instanceof self ) { |
|
| 81 | 81 | |
| 82 | - $this->set_id( $form->get_id() ); |
|
| 83 | - $this->invoice = $form->invoice; |
|
| 82 | + $this->set_id( $form->get_id() ); |
|
| 83 | + $this->invoice = $form->invoice; |
|
| 84 | 84 | |
| 85 | - } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | - $this->set_id( $form->ID ); |
|
| 87 | - } else { |
|
| 88 | - $this->set_object_read( true ); |
|
| 89 | - } |
|
| 85 | + } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | + $this->set_id( $form->ID ); |
|
| 87 | + } else { |
|
| 88 | + $this->set_object_read( true ); |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | 91 | // Load the datastore. |
| 92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 92 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 93 | 93 | |
| 94 | - if ( $this->get_id() > 0 ) { |
|
| 94 | + if ( $this->get_id() > 0 ) { |
|
| 95 | 95 | $this->post = get_post( $this->get_id() ); |
| 96 | - $this->data_store->read( $this ); |
|
| 96 | + $this->data_store->read( $this ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - } |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | 101 | /* |
| 102 | 102 | |-------------------------------------------------------------------------- |
@@ -114,358 +114,358 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | - * Get plugin version when the form was created. |
|
| 118 | - * |
|
| 119 | - * @since 1.0.19 |
|
| 120 | - * @param string $context View or edit context. |
|
| 121 | - * @return string |
|
| 122 | - */ |
|
| 123 | - public function get_version( $context = 'view' ) { |
|
| 124 | - return $this->get_prop( 'version', $context ); |
|
| 117 | + * Get plugin version when the form was created. |
|
| 118 | + * |
|
| 119 | + * @since 1.0.19 |
|
| 120 | + * @param string $context View or edit context. |
|
| 121 | + * @return string |
|
| 122 | + */ |
|
| 123 | + public function get_version( $context = 'view' ) { |
|
| 124 | + return $this->get_prop( 'version', $context ); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | - * Get date when the form was created. |
|
| 129 | - * |
|
| 130 | - * @since 1.0.19 |
|
| 131 | - * @param string $context View or edit context. |
|
| 132 | - * @return string |
|
| 133 | - */ |
|
| 134 | - public function get_date_created( $context = 'view' ) { |
|
| 135 | - return $this->get_prop( 'date_created', $context ); |
|
| 128 | + * Get date when the form was created. |
|
| 129 | + * |
|
| 130 | + * @since 1.0.19 |
|
| 131 | + * @param string $context View or edit context. |
|
| 132 | + * @return string |
|
| 133 | + */ |
|
| 134 | + public function get_date_created( $context = 'view' ) { |
|
| 135 | + return $this->get_prop( 'date_created', $context ); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
| 139 | - * Get GMT date when the form was created. |
|
| 140 | - * |
|
| 141 | - * @since 1.0.19 |
|
| 142 | - * @param string $context View or edit context. |
|
| 143 | - * @return string |
|
| 144 | - */ |
|
| 145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 139 | + * Get GMT date when the form was created. |
|
| 140 | + * |
|
| 141 | + * @since 1.0.19 |
|
| 142 | + * @param string $context View or edit context. |
|
| 143 | + * @return string |
|
| 144 | + */ |
|
| 145 | + public function get_date_created_gmt( $context = 'view' ) { |
|
| 146 | 146 | $date = $this->get_date_created( $context ); |
| 147 | 147 | |
| 148 | 148 | if ( $date ) { |
| 149 | 149 | $date = get_gmt_from_date( $date ); |
| 150 | 150 | } |
| 151 | - return $date; |
|
| 151 | + return $date; |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | - * Get date when the form was last modified. |
|
| 156 | - * |
|
| 157 | - * @since 1.0.19 |
|
| 158 | - * @param string $context View or edit context. |
|
| 159 | - * @return string |
|
| 160 | - */ |
|
| 161 | - public function get_date_modified( $context = 'view' ) { |
|
| 162 | - return $this->get_prop( 'date_modified', $context ); |
|
| 155 | + * Get date when the form was last modified. |
|
| 156 | + * |
|
| 157 | + * @since 1.0.19 |
|
| 158 | + * @param string $context View or edit context. |
|
| 159 | + * @return string |
|
| 160 | + */ |
|
| 161 | + public function get_date_modified( $context = 'view' ) { |
|
| 162 | + return $this->get_prop( 'date_modified', $context ); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | - * Get GMT date when the form was last modified. |
|
| 167 | - * |
|
| 168 | - * @since 1.0.19 |
|
| 169 | - * @param string $context View or edit context. |
|
| 170 | - * @return string |
|
| 171 | - */ |
|
| 172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 166 | + * Get GMT date when the form was last modified. |
|
| 167 | + * |
|
| 168 | + * @since 1.0.19 |
|
| 169 | + * @param string $context View or edit context. |
|
| 170 | + * @return string |
|
| 171 | + */ |
|
| 172 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
| 173 | 173 | $date = $this->get_date_modified( $context ); |
| 174 | 174 | |
| 175 | 175 | if ( $date ) { |
| 176 | 176 | $date = get_gmt_from_date( $date ); |
| 177 | 177 | } |
| 178 | - return $date; |
|
| 178 | + return $date; |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
| 182 | - * Get the form name. |
|
| 183 | - * |
|
| 184 | - * @since 1.0.19 |
|
| 185 | - * @param string $context View or edit context. |
|
| 186 | - * @return string |
|
| 187 | - */ |
|
| 188 | - public function get_name( $context = 'view' ) { |
|
| 189 | - return $this->get_prop( 'name', $context ); |
|
| 182 | + * Get the form name. |
|
| 183 | + * |
|
| 184 | + * @since 1.0.19 |
|
| 185 | + * @param string $context View or edit context. |
|
| 186 | + * @return string |
|
| 187 | + */ |
|
| 188 | + public function get_name( $context = 'view' ) { |
|
| 189 | + return $this->get_prop( 'name', $context ); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | - * Alias of self::get_name(). |
|
| 194 | - * |
|
| 195 | - * @since 1.0.19 |
|
| 196 | - * @param string $context View or edit context. |
|
| 197 | - * @return string |
|
| 198 | - */ |
|
| 199 | - public function get_title( $context = 'view' ) { |
|
| 200 | - return $this->get_name( $context ); |
|
| 201 | - } |
|
| 193 | + * Alias of self::get_name(). |
|
| 194 | + * |
|
| 195 | + * @since 1.0.19 |
|
| 196 | + * @param string $context View or edit context. |
|
| 197 | + * @return string |
|
| 198 | + */ |
|
| 199 | + public function get_title( $context = 'view' ) { |
|
| 200 | + return $this->get_name( $context ); |
|
| 201 | + } |
|
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | - * Get the owner of the form. |
|
| 205 | - * |
|
| 206 | - * @since 1.0.19 |
|
| 207 | - * @param string $context View or edit context. |
|
| 208 | - * @return int |
|
| 209 | - */ |
|
| 210 | - public function get_author( $context = 'view' ) { |
|
| 211 | - return (int) $this->get_prop( 'author', $context ); |
|
| 204 | + * Get the owner of the form. |
|
| 205 | + * |
|
| 206 | + * @since 1.0.19 |
|
| 207 | + * @param string $context View or edit context. |
|
| 208 | + * @return int |
|
| 209 | + */ |
|
| 210 | + public function get_author( $context = 'view' ) { |
|
| 211 | + return (int) $this->get_prop( 'author', $context ); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
| 215 | - * Get the elements that make up the form. |
|
| 216 | - * |
|
| 217 | - * @since 1.0.19 |
|
| 218 | - * @param string $context View or edit context. |
|
| 219 | - * @return array |
|
| 220 | - */ |
|
| 221 | - public function get_elements( $context = 'view' ) { |
|
| 222 | - $elements = $this->get_prop( 'elements', $context ); |
|
| 215 | + * Get the elements that make up the form. |
|
| 216 | + * |
|
| 217 | + * @since 1.0.19 |
|
| 218 | + * @param string $context View or edit context. |
|
| 219 | + * @return array |
|
| 220 | + */ |
|
| 221 | + public function get_elements( $context = 'view' ) { |
|
| 222 | + $elements = $this->get_prop( 'elements', $context ); |
|
| 223 | 223 | |
| 224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 224 | + if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 225 | 225 | return wpinv_get_data( 'sample-payment-form' ); |
| 226 | - } |
|
| 226 | + } |
|
| 227 | 227 | |
| 228 | - // Ensure that all required elements exist. |
|
| 229 | - $_elements = array(); |
|
| 230 | - foreach ( $elements as $element ) { |
|
| 228 | + // Ensure that all required elements exist. |
|
| 229 | + $_elements = array(); |
|
| 230 | + foreach ( $elements as $element ) { |
|
| 231 | 231 | |
| 232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 232 | + if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 233 | 233 | |
| 234 | - $_elements[] = array( |
|
| 235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 236 | - 'id' => 'gtscicd', |
|
| 237 | - 'name' => 'gtscicd', |
|
| 238 | - 'type' => 'gateway_select', |
|
| 239 | - 'premade' => true |
|
| 234 | + $_elements[] = array( |
|
| 235 | + 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 236 | + 'id' => 'gtscicd', |
|
| 237 | + 'name' => 'gtscicd', |
|
| 238 | + 'type' => 'gateway_select', |
|
| 239 | + 'premade' => true |
|
| 240 | 240 | |
| 241 | - ); |
|
| 241 | + ); |
|
| 242 | 242 | |
| 243 | - } |
|
| 243 | + } |
|
| 244 | 244 | |
| 245 | - $_elements[] = $element; |
|
| 245 | + $_elements[] = $element; |
|
| 246 | 246 | |
| 247 | - } |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | 249 | return $_elements; |
| 250 | - } |
|
| 251 | - |
|
| 252 | - /** |
|
| 253 | - * Get the items sold via the form. |
|
| 254 | - * |
|
| 255 | - * @since 1.0.19 |
|
| 256 | - * @param string $context View or edit context. |
|
| 257 | - * @param string $return objects or arrays. |
|
| 258 | - * @return GetPaid_Form_Item[] |
|
| 259 | - */ |
|
| 260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | - $items = $this->get_prop( 'items', $context ); |
|
| 262 | - |
|
| 263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + /** |
|
| 253 | + * Get the items sold via the form. |
|
| 254 | + * |
|
| 255 | + * @since 1.0.19 |
|
| 256 | + * @param string $context View or edit context. |
|
| 257 | + * @param string $return objects or arrays. |
|
| 258 | + * @return GetPaid_Form_Item[] |
|
| 259 | + */ |
|
| 260 | + public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | + $items = $this->get_prop( 'items', $context ); |
|
| 262 | + |
|
| 263 | + if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 264 | 264 | $items = wpinv_get_data( 'sample-payment-form-items' ); |
| 265 | - } |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | - // Convert the items. |
|
| 268 | - $prepared = array(); |
|
| 267 | + // Convert the items. |
|
| 268 | + $prepared = array(); |
|
| 269 | 269 | |
| 270 | - foreach ( $items as $key => $value ) { |
|
| 270 | + foreach ( $items as $key => $value ) { |
|
| 271 | 271 | |
| 272 | - // Form items. |
|
| 273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
| 272 | + // Form items. |
|
| 273 | + if ( $value instanceof GetPaid_Form_Item ) { |
|
| 274 | 274 | |
| 275 | - if ( $value->can_purchase() ) { |
|
| 276 | - $prepared[] = $value; |
|
| 277 | - } |
|
| 275 | + if ( $value->can_purchase() ) { |
|
| 276 | + $prepared[] = $value; |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | - continue; |
|
| 279 | + continue; |
|
| 280 | 280 | |
| 281 | - } |
|
| 281 | + } |
|
| 282 | 282 | |
| 283 | - // $item_id => $quantity (buy buttons) |
|
| 284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | - $item = new GetPaid_Form_Item( $key ); |
|
| 283 | + // $item_id => $quantity (buy buttons) |
|
| 284 | + if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | + $item = new GetPaid_Form_Item( $key ); |
|
| 286 | 286 | |
| 287 | - if ( $item->can_purchase() ) { |
|
| 287 | + if ( $item->can_purchase() ) { |
|
| 288 | 288 | |
| 289 | - $value = (float) $value; |
|
| 290 | - $item->set_quantity( $value ); |
|
| 291 | - if ( 0 == $value ) { |
|
| 292 | - $item->set_quantity( 1 ); |
|
| 293 | - $item->set_allow_quantities( true ); |
|
| 294 | - } |
|
| 289 | + $value = (float) $value; |
|
| 290 | + $item->set_quantity( $value ); |
|
| 291 | + if ( 0 == $value ) { |
|
| 292 | + $item->set_quantity( 1 ); |
|
| 293 | + $item->set_allow_quantities( true ); |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - $prepared[] = $item; |
|
| 297 | - } |
|
| 296 | + $prepared[] = $item; |
|
| 297 | + } |
|
| 298 | 298 | |
| 299 | - continue; |
|
| 300 | - } |
|
| 299 | + continue; |
|
| 300 | + } |
|
| 301 | 301 | |
| 302 | - // Items saved via payment forms editor. |
|
| 303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 302 | + // Items saved via payment forms editor. |
|
| 303 | + if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 304 | 304 | |
| 305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 305 | + $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 306 | 306 | |
| 307 | - if ( ! $item->can_purchase() ) { |
|
| 308 | - continue; |
|
| 309 | - } |
|
| 307 | + if ( ! $item->can_purchase() ) { |
|
| 308 | + continue; |
|
| 309 | + } |
|
| 310 | 310 | |
| 311 | - // Sub-total (Cart items). |
|
| 312 | - if ( isset( $value['subtotal'] ) ) { |
|
| 313 | - $item->set_price( $value['subtotal'] ); |
|
| 314 | - } |
|
| 311 | + // Sub-total (Cart items). |
|
| 312 | + if ( isset( $value['subtotal'] ) ) { |
|
| 313 | + $item->set_price( $value['subtotal'] ); |
|
| 314 | + } |
|
| 315 | 315 | |
| 316 | - if ( isset( $value['quantity'] ) ) { |
|
| 317 | - $item->set_quantity( $value['quantity'] ); |
|
| 318 | - } |
|
| 316 | + if ( isset( $value['quantity'] ) ) { |
|
| 317 | + $item->set_quantity( $value['quantity'] ); |
|
| 318 | + } |
|
| 319 | 319 | |
| 320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 322 | - } |
|
| 320 | + if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | + $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - if ( isset( $value['required'] ) ) { |
|
| 325 | - $item->set_is_required( $value['required'] ); |
|
| 326 | - } |
|
| 324 | + if ( isset( $value['required'] ) ) { |
|
| 325 | + $item->set_is_required( $value['required'] ); |
|
| 326 | + } |
|
| 327 | 327 | |
| 328 | - if ( isset( $value['description'] ) ) { |
|
| 329 | - $item->set_custom_description( $value['description'] ); |
|
| 330 | - } |
|
| 328 | + if ( isset( $value['description'] ) ) { |
|
| 329 | + $item->set_custom_description( $value['description'] ); |
|
| 330 | + } |
|
| 331 | 331 | |
| 332 | - $prepared[] = $item; |
|
| 333 | - continue; |
|
| 332 | + $prepared[] = $item; |
|
| 333 | + continue; |
|
| 334 | 334 | |
| 335 | - } |
|
| 335 | + } |
|
| 336 | 336 | |
| 337 | - // $item_id => array( 'price' => 10 ) (item variations) |
|
| 338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | - $item = new GetPaid_Form_Item( $key ); |
|
| 337 | + // $item_id => array( 'price' => 10 ) (item variations) |
|
| 338 | + if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | + $item = new GetPaid_Form_Item( $key ); |
|
| 340 | 340 | |
| 341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | - $item->set_price( $value['price'] ); |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - if ( $item->can_purchase() ) { |
|
| 346 | - $prepared[] = $item; |
|
| 347 | - } |
|
| 348 | - |
|
| 349 | - continue; |
|
| 350 | - } |
|
| 351 | - |
|
| 352 | - } |
|
| 353 | - |
|
| 354 | - if ( 'objects' == $return && 'view' == $context ) { |
|
| 355 | - return $prepared; |
|
| 356 | - } |
|
| 357 | - |
|
| 358 | - $items = array(); |
|
| 359 | - foreach ( $prepared as $item ) { |
|
| 360 | - $items[] = $item->prepare_data_for_use(); |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - return $items; |
|
| 364 | - } |
|
| 365 | - |
|
| 366 | - /** |
|
| 367 | - * Get a single item belonging to the form. |
|
| 368 | - * |
|
| 369 | - * @since 1.0.19 |
|
| 370 | - * @param int $item_id The item id to return. |
|
| 371 | - * @return GetPaid_Form_Item|bool |
|
| 372 | - */ |
|
| 373 | - public function get_item( $item_id ) { |
|
| 374 | - |
|
| 375 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 376 | - return false; |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - foreach( $this->get_items() as $item ) { |
|
| 380 | - if ( $item->get_id() == (int) $item_id ) { |
|
| 381 | - return $item; |
|
| 382 | - } |
|
| 383 | - } |
|
| 384 | - |
|
| 385 | - return false; |
|
| 386 | - |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - /** |
|
| 390 | - * Gets a single element. |
|
| 391 | - * |
|
| 392 | - * @since 1.0.19 |
|
| 393 | - * @param string $element_type The element type to return. |
|
| 394 | - * @return array|bool |
|
| 395 | - */ |
|
| 396 | - public function get_element_type( $element_type ) { |
|
| 397 | - |
|
| 398 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 399 | - return false; |
|
| 400 | - } |
|
| 401 | - |
|
| 402 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 403 | - |
|
| 404 | - if ( $element['type'] == $element_type ) { |
|
| 405 | - return $element; |
|
| 406 | - } |
|
| 407 | - |
|
| 408 | - } |
|
| 409 | - |
|
| 410 | - return false; |
|
| 411 | - |
|
| 412 | - } |
|
| 413 | - |
|
| 414 | - /** |
|
| 415 | - * Get the total amount earned via this form. |
|
| 416 | - * |
|
| 417 | - * @since 1.0.19 |
|
| 418 | - * @param string $context View or edit context. |
|
| 419 | - * @return float |
|
| 420 | - */ |
|
| 421 | - public function get_earned( $context = 'view' ) { |
|
| 422 | - return $this->get_prop( 'earned', $context ); |
|
| 423 | - } |
|
| 424 | - |
|
| 425 | - /** |
|
| 426 | - * Get the total amount refunded via this form. |
|
| 427 | - * |
|
| 428 | - * @since 1.0.19 |
|
| 429 | - * @param string $context View or edit context. |
|
| 430 | - * @return float |
|
| 431 | - */ |
|
| 432 | - public function get_refunded( $context = 'view' ) { |
|
| 433 | - return $this->get_prop( 'refunded', $context ); |
|
| 434 | - } |
|
| 435 | - |
|
| 436 | - /** |
|
| 437 | - * Get the total amount cancelled via this form. |
|
| 438 | - * |
|
| 439 | - * @since 1.0.19 |
|
| 440 | - * @param string $context View or edit context. |
|
| 441 | - * @return float |
|
| 442 | - */ |
|
| 443 | - public function get_cancelled( $context = 'view' ) { |
|
| 444 | - return $this->get_prop( 'cancelled', $context ); |
|
| 445 | - } |
|
| 446 | - |
|
| 447 | - /** |
|
| 448 | - * Get the total amount failed via this form. |
|
| 449 | - * |
|
| 450 | - * @since 1.0.19 |
|
| 451 | - * @param string $context View or edit context. |
|
| 452 | - * @return float |
|
| 453 | - */ |
|
| 454 | - public function get_failed( $context = 'view' ) { |
|
| 455 | - return $this->get_prop( 'failed', $context ); |
|
| 456 | - } |
|
| 457 | - |
|
| 458 | - /** |
|
| 459 | - * Get the currency. |
|
| 460 | - * |
|
| 461 | - * @since 1.0.19 |
|
| 462 | - * @param string $context View or edit context. |
|
| 463 | - * @return string |
|
| 464 | - */ |
|
| 465 | - public function get_currency() { |
|
| 466 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 467 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 468 | - } |
|
| 341 | + if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | + $item->set_price( $value['price'] ); |
|
| 343 | + } |
|
| 344 | + |
|
| 345 | + if ( $item->can_purchase() ) { |
|
| 346 | + $prepared[] = $item; |
|
| 347 | + } |
|
| 348 | + |
|
| 349 | + continue; |
|
| 350 | + } |
|
| 351 | + |
|
| 352 | + } |
|
| 353 | + |
|
| 354 | + if ( 'objects' == $return && 'view' == $context ) { |
|
| 355 | + return $prepared; |
|
| 356 | + } |
|
| 357 | + |
|
| 358 | + $items = array(); |
|
| 359 | + foreach ( $prepared as $item ) { |
|
| 360 | + $items[] = $item->prepare_data_for_use(); |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + return $items; |
|
| 364 | + } |
|
| 365 | + |
|
| 366 | + /** |
|
| 367 | + * Get a single item belonging to the form. |
|
| 368 | + * |
|
| 369 | + * @since 1.0.19 |
|
| 370 | + * @param int $item_id The item id to return. |
|
| 371 | + * @return GetPaid_Form_Item|bool |
|
| 372 | + */ |
|
| 373 | + public function get_item( $item_id ) { |
|
| 374 | + |
|
| 375 | + if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 376 | + return false; |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + foreach( $this->get_items() as $item ) { |
|
| 380 | + if ( $item->get_id() == (int) $item_id ) { |
|
| 381 | + return $item; |
|
| 382 | + } |
|
| 383 | + } |
|
| 384 | + |
|
| 385 | + return false; |
|
| 386 | + |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + /** |
|
| 390 | + * Gets a single element. |
|
| 391 | + * |
|
| 392 | + * @since 1.0.19 |
|
| 393 | + * @param string $element_type The element type to return. |
|
| 394 | + * @return array|bool |
|
| 395 | + */ |
|
| 396 | + public function get_element_type( $element_type ) { |
|
| 397 | + |
|
| 398 | + if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 399 | + return false; |
|
| 400 | + } |
|
| 401 | + |
|
| 402 | + foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 403 | + |
|
| 404 | + if ( $element['type'] == $element_type ) { |
|
| 405 | + return $element; |
|
| 406 | + } |
|
| 407 | + |
|
| 408 | + } |
|
| 409 | + |
|
| 410 | + return false; |
|
| 411 | + |
|
| 412 | + } |
|
| 413 | + |
|
| 414 | + /** |
|
| 415 | + * Get the total amount earned via this form. |
|
| 416 | + * |
|
| 417 | + * @since 1.0.19 |
|
| 418 | + * @param string $context View or edit context. |
|
| 419 | + * @return float |
|
| 420 | + */ |
|
| 421 | + public function get_earned( $context = 'view' ) { |
|
| 422 | + return $this->get_prop( 'earned', $context ); |
|
| 423 | + } |
|
| 424 | + |
|
| 425 | + /** |
|
| 426 | + * Get the total amount refunded via this form. |
|
| 427 | + * |
|
| 428 | + * @since 1.0.19 |
|
| 429 | + * @param string $context View or edit context. |
|
| 430 | + * @return float |
|
| 431 | + */ |
|
| 432 | + public function get_refunded( $context = 'view' ) { |
|
| 433 | + return $this->get_prop( 'refunded', $context ); |
|
| 434 | + } |
|
| 435 | + |
|
| 436 | + /** |
|
| 437 | + * Get the total amount cancelled via this form. |
|
| 438 | + * |
|
| 439 | + * @since 1.0.19 |
|
| 440 | + * @param string $context View or edit context. |
|
| 441 | + * @return float |
|
| 442 | + */ |
|
| 443 | + public function get_cancelled( $context = 'view' ) { |
|
| 444 | + return $this->get_prop( 'cancelled', $context ); |
|
| 445 | + } |
|
| 446 | + |
|
| 447 | + /** |
|
| 448 | + * Get the total amount failed via this form. |
|
| 449 | + * |
|
| 450 | + * @since 1.0.19 |
|
| 451 | + * @param string $context View or edit context. |
|
| 452 | + * @return float |
|
| 453 | + */ |
|
| 454 | + public function get_failed( $context = 'view' ) { |
|
| 455 | + return $this->get_prop( 'failed', $context ); |
|
| 456 | + } |
|
| 457 | + |
|
| 458 | + /** |
|
| 459 | + * Get the currency. |
|
| 460 | + * |
|
| 461 | + * @since 1.0.19 |
|
| 462 | + * @param string $context View or edit context. |
|
| 463 | + * @return string |
|
| 464 | + */ |
|
| 465 | + public function get_currency() { |
|
| 466 | + $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 467 | + return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 468 | + } |
|
| 469 | 469 | |
| 470 | 470 | /* |
| 471 | 471 | |-------------------------------------------------------------------------- |
@@ -478,22 +478,22 @@ discard block |
||
| 478 | 478 | */ |
| 479 | 479 | |
| 480 | 480 | /** |
| 481 | - * Set plugin version when the item was created. |
|
| 482 | - * |
|
| 483 | - * @since 1.0.19 |
|
| 484 | - */ |
|
| 485 | - public function set_version( $value ) { |
|
| 486 | - $this->set_prop( 'version', $value ); |
|
| 481 | + * Set plugin version when the item was created. |
|
| 482 | + * |
|
| 483 | + * @since 1.0.19 |
|
| 484 | + */ |
|
| 485 | + public function set_version( $value ) { |
|
| 486 | + $this->set_prop( 'version', $value ); |
|
| 487 | 487 | } |
| 488 | 488 | |
| 489 | 489 | /** |
| 490 | - * Set date when the item was created. |
|
| 491 | - * |
|
| 492 | - * @since 1.0.19 |
|
| 493 | - * @param string $value Value to set. |
|
| 490 | + * Set date when the item was created. |
|
| 491 | + * |
|
| 492 | + * @since 1.0.19 |
|
| 493 | + * @param string $value Value to set. |
|
| 494 | 494 | * @return bool Whether or not the date was set. |
| 495 | - */ |
|
| 496 | - public function set_date_created( $value ) { |
|
| 495 | + */ |
|
| 496 | + public function set_date_created( $value ) { |
|
| 497 | 497 | $date = strtotime( $value ); |
| 498 | 498 | |
| 499 | 499 | if ( $date ) { |
@@ -506,13 +506,13 @@ discard block |
||
| 506 | 506 | } |
| 507 | 507 | |
| 508 | 508 | /** |
| 509 | - * Set date when the item was last modified. |
|
| 510 | - * |
|
| 511 | - * @since 1.0.19 |
|
| 512 | - * @param string $value Value to set. |
|
| 509 | + * Set date when the item was last modified. |
|
| 510 | + * |
|
| 511 | + * @since 1.0.19 |
|
| 512 | + * @param string $value Value to set. |
|
| 513 | 513 | * @return bool Whether or not the date was set. |
| 514 | - */ |
|
| 515 | - public function set_date_modified( $value ) { |
|
| 514 | + */ |
|
| 515 | + public function set_date_modified( $value ) { |
|
| 516 | 516 | $date = strtotime( $value ); |
| 517 | 517 | |
| 518 | 518 | if ( $date ) { |
@@ -525,165 +525,165 @@ discard block |
||
| 525 | 525 | } |
| 526 | 526 | |
| 527 | 527 | /** |
| 528 | - * Set the item name. |
|
| 529 | - * |
|
| 530 | - * @since 1.0.19 |
|
| 531 | - * @param string $value New name. |
|
| 532 | - */ |
|
| 533 | - public function set_name( $value ) { |
|
| 534 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 535 | - } |
|
| 536 | - |
|
| 537 | - /** |
|
| 538 | - * Alias of self::set_name(). |
|
| 539 | - * |
|
| 540 | - * @since 1.0.19 |
|
| 541 | - * @param string $value New name. |
|
| 542 | - */ |
|
| 543 | - public function set_title( $value ) { |
|
| 544 | - $this->set_name( $value ); |
|
| 545 | - } |
|
| 546 | - |
|
| 547 | - /** |
|
| 548 | - * Set the owner of the item. |
|
| 549 | - * |
|
| 550 | - * @since 1.0.19 |
|
| 551 | - * @param int $value New author. |
|
| 552 | - */ |
|
| 553 | - public function set_author( $value ) { |
|
| 554 | - $this->set_prop( 'author', (int) $value ); |
|
| 555 | - } |
|
| 556 | - |
|
| 557 | - /** |
|
| 558 | - * Set the form elements. |
|
| 559 | - * |
|
| 560 | - * @since 1.0.19 |
|
| 561 | - * @sinve 2.3.4 Array values sanitized. |
|
| 562 | - * @param array $value Form elements. |
|
| 563 | - */ |
|
| 564 | - public function set_elements( $value ) { |
|
| 565 | - if ( is_array( $value ) ) { |
|
| 566 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 567 | - } |
|
| 568 | - } |
|
| 569 | - |
|
| 570 | - /** |
|
| 571 | - * Sanitize array values. |
|
| 572 | - * |
|
| 573 | - * @param $value |
|
| 574 | - * |
|
| 575 | - * @return mixed |
|
| 576 | - */ |
|
| 577 | - public function sanitize_array_values($value){ |
|
| 578 | - |
|
| 579 | - // sanitize |
|
| 580 | - if(!empty($value )){ |
|
| 581 | - |
|
| 582 | - foreach($value as $key => $val_arr){ |
|
| 583 | - |
|
| 584 | - if(is_array($val_arr)){ |
|
| 585 | - // check if we have sub array items. |
|
| 586 | - $sub_arr = array(); |
|
| 587 | - foreach($val_arr as $key2 => $val2){ |
|
| 588 | - if(is_array($val2)){ |
|
| 589 | - $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
| 590 | - unset($val_arr[$key][$key2]); |
|
| 591 | - } |
|
| 592 | - } |
|
| 593 | - |
|
| 594 | - // we allow some html in description so we sanitize it separately. |
|
| 595 | - $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
| 596 | - |
|
| 597 | - // sanitize array elements |
|
| 598 | - $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 599 | - |
|
| 600 | - // add back the description if set |
|
| 601 | - if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
| 602 | - |
|
| 603 | - // add back sub array items after its been sanitized. |
|
| 604 | - if ( ! empty( $sub_arr ) ) { |
|
| 605 | - $value[$key] = array_merge($value[$key],$sub_arr); |
|
| 606 | - } |
|
| 607 | - } |
|
| 608 | - |
|
| 609 | - } |
|
| 610 | - |
|
| 611 | - } |
|
| 612 | - |
|
| 613 | - return $value; |
|
| 614 | - } |
|
| 615 | - |
|
| 616 | - /** |
|
| 617 | - * Set the form items. |
|
| 618 | - * |
|
| 619 | - * @since 1.0.19 |
|
| 620 | - * @param array $value Form elements. |
|
| 621 | - */ |
|
| 622 | - public function set_items( $value ) { |
|
| 623 | - if ( is_array( $value ) ) { |
|
| 624 | - $this->set_prop( 'items', $value ); |
|
| 625 | - } |
|
| 626 | - } |
|
| 627 | - |
|
| 628 | - /** |
|
| 629 | - * Set the total amount earned via this form. |
|
| 630 | - * |
|
| 631 | - * @since 1.0.19 |
|
| 632 | - * @param float $value Amount earned. |
|
| 633 | - */ |
|
| 634 | - public function set_earned( $value ) { |
|
| 635 | - $value = max( (float) $value, 0 ); |
|
| 636 | - $this->set_prop( 'earned', $value ); |
|
| 637 | - } |
|
| 638 | - |
|
| 639 | - /** |
|
| 640 | - * Set the total amount refunded via this form. |
|
| 641 | - * |
|
| 642 | - * @since 1.0.19 |
|
| 643 | - * @param float $value Amount refunded. |
|
| 644 | - */ |
|
| 645 | - public function set_refunded( $value ) { |
|
| 646 | - $value = max( (float) $value, 0 ); |
|
| 647 | - $this->set_prop( 'refunded', $value ); |
|
| 648 | - } |
|
| 649 | - |
|
| 650 | - /** |
|
| 651 | - * Set the total amount cancelled via this form. |
|
| 652 | - * |
|
| 653 | - * @since 1.0.19 |
|
| 654 | - * @param float $value Amount cancelled. |
|
| 655 | - */ |
|
| 656 | - public function set_cancelled( $value ) { |
|
| 657 | - $value = max( (float) $value, 0 ); |
|
| 658 | - $this->set_prop( 'cancelled', $value ); |
|
| 659 | - } |
|
| 660 | - |
|
| 661 | - /** |
|
| 662 | - * Set the total amount failed via this form. |
|
| 663 | - * |
|
| 664 | - * @since 1.0.19 |
|
| 665 | - * @param float $value Amount cancelled. |
|
| 666 | - */ |
|
| 667 | - public function set_failed( $value ) { |
|
| 668 | - $value = max( (float) $value, 0 ); |
|
| 669 | - $this->set_prop( 'failed', $value ); |
|
| 670 | - } |
|
| 528 | + * Set the item name. |
|
| 529 | + * |
|
| 530 | + * @since 1.0.19 |
|
| 531 | + * @param string $value New name. |
|
| 532 | + */ |
|
| 533 | + public function set_name( $value ) { |
|
| 534 | + $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 535 | + } |
|
| 536 | + |
|
| 537 | + /** |
|
| 538 | + * Alias of self::set_name(). |
|
| 539 | + * |
|
| 540 | + * @since 1.0.19 |
|
| 541 | + * @param string $value New name. |
|
| 542 | + */ |
|
| 543 | + public function set_title( $value ) { |
|
| 544 | + $this->set_name( $value ); |
|
| 545 | + } |
|
| 546 | + |
|
| 547 | + /** |
|
| 548 | + * Set the owner of the item. |
|
| 549 | + * |
|
| 550 | + * @since 1.0.19 |
|
| 551 | + * @param int $value New author. |
|
| 552 | + */ |
|
| 553 | + public function set_author( $value ) { |
|
| 554 | + $this->set_prop( 'author', (int) $value ); |
|
| 555 | + } |
|
| 556 | + |
|
| 557 | + /** |
|
| 558 | + * Set the form elements. |
|
| 559 | + * |
|
| 560 | + * @since 1.0.19 |
|
| 561 | + * @sinve 2.3.4 Array values sanitized. |
|
| 562 | + * @param array $value Form elements. |
|
| 563 | + */ |
|
| 564 | + public function set_elements( $value ) { |
|
| 565 | + if ( is_array( $value ) ) { |
|
| 566 | + $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 567 | + } |
|
| 568 | + } |
|
| 569 | + |
|
| 570 | + /** |
|
| 571 | + * Sanitize array values. |
|
| 572 | + * |
|
| 573 | + * @param $value |
|
| 574 | + * |
|
| 575 | + * @return mixed |
|
| 576 | + */ |
|
| 577 | + public function sanitize_array_values($value){ |
|
| 578 | + |
|
| 579 | + // sanitize |
|
| 580 | + if(!empty($value )){ |
|
| 581 | + |
|
| 582 | + foreach($value as $key => $val_arr){ |
|
| 583 | + |
|
| 584 | + if(is_array($val_arr)){ |
|
| 585 | + // check if we have sub array items. |
|
| 586 | + $sub_arr = array(); |
|
| 587 | + foreach($val_arr as $key2 => $val2){ |
|
| 588 | + if(is_array($val2)){ |
|
| 589 | + $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
| 590 | + unset($val_arr[$key][$key2]); |
|
| 591 | + } |
|
| 592 | + } |
|
| 593 | + |
|
| 594 | + // we allow some html in description so we sanitize it separately. |
|
| 595 | + $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
| 596 | + |
|
| 597 | + // sanitize array elements |
|
| 598 | + $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 599 | + |
|
| 600 | + // add back the description if set |
|
| 601 | + if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
| 602 | + |
|
| 603 | + // add back sub array items after its been sanitized. |
|
| 604 | + if ( ! empty( $sub_arr ) ) { |
|
| 605 | + $value[$key] = array_merge($value[$key],$sub_arr); |
|
| 606 | + } |
|
| 607 | + } |
|
| 608 | + |
|
| 609 | + } |
|
| 610 | + |
|
| 611 | + } |
|
| 612 | + |
|
| 613 | + return $value; |
|
| 614 | + } |
|
| 615 | + |
|
| 616 | + /** |
|
| 617 | + * Set the form items. |
|
| 618 | + * |
|
| 619 | + * @since 1.0.19 |
|
| 620 | + * @param array $value Form elements. |
|
| 621 | + */ |
|
| 622 | + public function set_items( $value ) { |
|
| 623 | + if ( is_array( $value ) ) { |
|
| 624 | + $this->set_prop( 'items', $value ); |
|
| 625 | + } |
|
| 626 | + } |
|
| 627 | + |
|
| 628 | + /** |
|
| 629 | + * Set the total amount earned via this form. |
|
| 630 | + * |
|
| 631 | + * @since 1.0.19 |
|
| 632 | + * @param float $value Amount earned. |
|
| 633 | + */ |
|
| 634 | + public function set_earned( $value ) { |
|
| 635 | + $value = max( (float) $value, 0 ); |
|
| 636 | + $this->set_prop( 'earned', $value ); |
|
| 637 | + } |
|
| 638 | + |
|
| 639 | + /** |
|
| 640 | + * Set the total amount refunded via this form. |
|
| 641 | + * |
|
| 642 | + * @since 1.0.19 |
|
| 643 | + * @param float $value Amount refunded. |
|
| 644 | + */ |
|
| 645 | + public function set_refunded( $value ) { |
|
| 646 | + $value = max( (float) $value, 0 ); |
|
| 647 | + $this->set_prop( 'refunded', $value ); |
|
| 648 | + } |
|
| 649 | + |
|
| 650 | + /** |
|
| 651 | + * Set the total amount cancelled via this form. |
|
| 652 | + * |
|
| 653 | + * @since 1.0.19 |
|
| 654 | + * @param float $value Amount cancelled. |
|
| 655 | + */ |
|
| 656 | + public function set_cancelled( $value ) { |
|
| 657 | + $value = max( (float) $value, 0 ); |
|
| 658 | + $this->set_prop( 'cancelled', $value ); |
|
| 659 | + } |
|
| 660 | + |
|
| 661 | + /** |
|
| 662 | + * Set the total amount failed via this form. |
|
| 663 | + * |
|
| 664 | + * @since 1.0.19 |
|
| 665 | + * @param float $value Amount cancelled. |
|
| 666 | + */ |
|
| 667 | + public function set_failed( $value ) { |
|
| 668 | + $value = max( (float) $value, 0 ); |
|
| 669 | + $this->set_prop( 'failed', $value ); |
|
| 670 | + } |
|
| 671 | 671 | |
| 672 | 672 | /** |
| 673 | 673 | * Create an item. For backwards compatibilty. |
| 674 | 674 | * |
| 675 | 675 | * @deprecated |
| 676 | - * @return int item id |
|
| 676 | + * @return int item id |
|
| 677 | 677 | */ |
| 678 | 678 | public function create( $data = array() ) { |
| 679 | 679 | |
| 680 | - // Set the properties. |
|
| 681 | - if ( is_array( $data ) ) { |
|
| 682 | - $this->set_props( $data ); |
|
| 683 | - } |
|
| 680 | + // Set the properties. |
|
| 681 | + if ( is_array( $data ) ) { |
|
| 682 | + $this->set_props( $data ); |
|
| 683 | + } |
|
| 684 | 684 | |
| 685 | - // Save the item. |
|
| 686 | - return $this->save(); |
|
| 685 | + // Save the item. |
|
| 686 | + return $this->save(); |
|
| 687 | 687 | |
| 688 | 688 | } |
| 689 | 689 | |
@@ -691,7 +691,7 @@ discard block |
||
| 691 | 691 | * Updates an item. For backwards compatibilty. |
| 692 | 692 | * |
| 693 | 693 | * @deprecated |
| 694 | - * @return int item id |
|
| 694 | + * @return int item id |
|
| 695 | 695 | */ |
| 696 | 696 | public function update( $data = array() ) { |
| 697 | 697 | return $this->create( $data ); |
@@ -707,22 +707,22 @@ discard block |
||
| 707 | 707 | */ |
| 708 | 708 | |
| 709 | 709 | /** |
| 710 | - * Checks whether this is the default payment form. |
|
| 711 | - * |
|
| 712 | - * @since 1.0.19 |
|
| 713 | - * @return bool |
|
| 714 | - */ |
|
| 710 | + * Checks whether this is the default payment form. |
|
| 711 | + * |
|
| 712 | + * @since 1.0.19 |
|
| 713 | + * @return bool |
|
| 714 | + */ |
|
| 715 | 715 | public function is_default() { |
| 716 | 716 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
| 717 | 717 | return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
| 718 | - } |
|
| 718 | + } |
|
| 719 | 719 | |
| 720 | 720 | /** |
| 721 | - * Checks whether the form is active. |
|
| 722 | - * |
|
| 723 | - * @since 1.0.19 |
|
| 724 | - * @return bool |
|
| 725 | - */ |
|
| 721 | + * Checks whether the form is active. |
|
| 722 | + * |
|
| 723 | + * @since 1.0.19 |
|
| 724 | + * @return bool |
|
| 725 | + */ |
|
| 726 | 726 | public function is_active() { |
| 727 | 727 | $is_active = 0 !== (int) $this->get_id(); |
| 728 | 728 | |
@@ -731,76 +731,76 @@ discard block |
||
| 731 | 731 | } |
| 732 | 732 | |
| 733 | 733 | return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
| 734 | - } |
|
| 735 | - |
|
| 736 | - /** |
|
| 737 | - * Checks whether the form has a given item. |
|
| 738 | - * |
|
| 739 | - * @since 1.0.19 |
|
| 740 | - * @return bool |
|
| 741 | - */ |
|
| 734 | + } |
|
| 735 | + |
|
| 736 | + /** |
|
| 737 | + * Checks whether the form has a given item. |
|
| 738 | + * |
|
| 739 | + * @since 1.0.19 |
|
| 740 | + * @return bool |
|
| 741 | + */ |
|
| 742 | 742 | public function has_item( $item_id ) { |
| 743 | 743 | return false !== $this->get_item( $item_id ); |
| 744 | - } |
|
| 745 | - |
|
| 746 | - /** |
|
| 747 | - * Checks whether the form has a given element. |
|
| 748 | - * |
|
| 749 | - * @since 1.0.19 |
|
| 750 | - * @return bool |
|
| 751 | - */ |
|
| 744 | + } |
|
| 745 | + |
|
| 746 | + /** |
|
| 747 | + * Checks whether the form has a given element. |
|
| 748 | + * |
|
| 749 | + * @since 1.0.19 |
|
| 750 | + * @return bool |
|
| 751 | + */ |
|
| 752 | 752 | public function has_element_type( $element_type ) { |
| 753 | 753 | return false !== $this->get_element_type( $element_type ); |
| 754 | - } |
|
| 755 | - |
|
| 756 | - /** |
|
| 757 | - * Checks whether this form is recurring or not. |
|
| 758 | - * |
|
| 759 | - * @since 1.0.19 |
|
| 760 | - * @return bool |
|
| 761 | - */ |
|
| 754 | + } |
|
| 755 | + |
|
| 756 | + /** |
|
| 757 | + * Checks whether this form is recurring or not. |
|
| 758 | + * |
|
| 759 | + * @since 1.0.19 |
|
| 760 | + * @return bool |
|
| 761 | + */ |
|
| 762 | 762 | public function is_recurring() { |
| 763 | 763 | |
| 764 | - if ( ! empty( $this->invoice ) ) { |
|
| 765 | - return $this->invoice->is_recurring(); |
|
| 766 | - } |
|
| 764 | + if ( ! empty( $this->invoice ) ) { |
|
| 765 | + return $this->invoice->is_recurring(); |
|
| 766 | + } |
|
| 767 | 767 | |
| 768 | - foreach ( $this->get_items() as $item ) { |
|
| 768 | + foreach ( $this->get_items() as $item ) { |
|
| 769 | 769 | |
| 770 | - if ( $item->is_recurring() ) { |
|
| 771 | - return true; |
|
| 772 | - } |
|
| 770 | + if ( $item->is_recurring() ) { |
|
| 771 | + return true; |
|
| 772 | + } |
|
| 773 | 773 | |
| 774 | - } |
|
| 774 | + } |
|
| 775 | 775 | |
| 776 | 776 | return false; |
| 777 | - } |
|
| 777 | + } |
|
| 778 | 778 | |
| 779 | - /** |
|
| 780 | - * Retrieves the form's html. |
|
| 781 | - * |
|
| 782 | - * @since 1.0.19 |
|
| 783 | - */ |
|
| 779 | + /** |
|
| 780 | + * Retrieves the form's html. |
|
| 781 | + * |
|
| 782 | + * @since 1.0.19 |
|
| 783 | + */ |
|
| 784 | 784 | public function get_html( $extra_markup = '' ) { |
| 785 | 785 | |
| 786 | - // Return the HTML. |
|
| 787 | - return wpinv_get_template_html( |
|
| 788 | - 'payment-forms/form.php', |
|
| 789 | - array( |
|
| 790 | - 'form' => $this, |
|
| 791 | - 'extra_markup' => $extra_markup, |
|
| 792 | - ) |
|
| 793 | - ); |
|
| 794 | - |
|
| 795 | - } |
|
| 796 | - |
|
| 797 | - /** |
|
| 798 | - * Displays the payment form. |
|
| 799 | - * |
|
| 800 | - * @since 1.0.19 |
|
| 801 | - */ |
|
| 786 | + // Return the HTML. |
|
| 787 | + return wpinv_get_template_html( |
|
| 788 | + 'payment-forms/form.php', |
|
| 789 | + array( |
|
| 790 | + 'form' => $this, |
|
| 791 | + 'extra_markup' => $extra_markup, |
|
| 792 | + ) |
|
| 793 | + ); |
|
| 794 | + |
|
| 795 | + } |
|
| 796 | + |
|
| 797 | + /** |
|
| 798 | + * Displays the payment form. |
|
| 799 | + * |
|
| 800 | + * @since 1.0.19 |
|
| 801 | + */ |
|
| 802 | 802 | public function display( $extra_markup = '' ) { |
| 803 | - echo $this->get_html( $extra_markup ); |
|
| 803 | + echo $this->get_html( $extra_markup ); |
|
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -72,28 +72,28 @@ discard block |
||
| 72 | 72 | * |
| 73 | 73 | * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
| 74 | 74 | */ |
| 75 | - public function __construct( $form = 0 ) { |
|
| 76 | - parent::__construct( $form ); |
|
| 75 | + public function __construct($form = 0) { |
|
| 76 | + parent::__construct($form); |
|
| 77 | 77 | |
| 78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | - $this->set_id( $form ); |
|
| 80 | - } elseif ( $form instanceof self ) { |
|
| 78 | + if (is_numeric($form) && $form > 0) { |
|
| 79 | + $this->set_id($form); |
|
| 80 | + } elseif ($form instanceof self) { |
|
| 81 | 81 | |
| 82 | - $this->set_id( $form->get_id() ); |
|
| 82 | + $this->set_id($form->get_id()); |
|
| 83 | 83 | $this->invoice = $form->invoice; |
| 84 | 84 | |
| 85 | - } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | - $this->set_id( $form->ID ); |
|
| 85 | + } elseif (!empty($form->ID)) { |
|
| 86 | + $this->set_id($form->ID); |
|
| 87 | 87 | } else { |
| 88 | - $this->set_object_read( true ); |
|
| 88 | + $this->set_object_read(true); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | // Load the datastore. |
| 92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 92 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
| 93 | 93 | |
| 94 | - if ( $this->get_id() > 0 ) { |
|
| 95 | - $this->post = get_post( $this->get_id() ); |
|
| 96 | - $this->data_store->read( $this ); |
|
| 94 | + if ($this->get_id() > 0) { |
|
| 95 | + $this->post = get_post($this->get_id()); |
|
| 96 | + $this->data_store->read($this); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | } |
@@ -120,8 +120,8 @@ discard block |
||
| 120 | 120 | * @param string $context View or edit context. |
| 121 | 121 | * @return string |
| 122 | 122 | */ |
| 123 | - public function get_version( $context = 'view' ) { |
|
| 124 | - return $this->get_prop( 'version', $context ); |
|
| 123 | + public function get_version($context = 'view') { |
|
| 124 | + return $this->get_prop('version', $context); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
@@ -131,8 +131,8 @@ discard block |
||
| 131 | 131 | * @param string $context View or edit context. |
| 132 | 132 | * @return string |
| 133 | 133 | */ |
| 134 | - public function get_date_created( $context = 'view' ) { |
|
| 135 | - return $this->get_prop( 'date_created', $context ); |
|
| 134 | + public function get_date_created($context = 'view') { |
|
| 135 | + return $this->get_prop('date_created', $context); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -142,11 +142,11 @@ discard block |
||
| 142 | 142 | * @param string $context View or edit context. |
| 143 | 143 | * @return string |
| 144 | 144 | */ |
| 145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 146 | - $date = $this->get_date_created( $context ); |
|
| 145 | + public function get_date_created_gmt($context = 'view') { |
|
| 146 | + $date = $this->get_date_created($context); |
|
| 147 | 147 | |
| 148 | - if ( $date ) { |
|
| 149 | - $date = get_gmt_from_date( $date ); |
|
| 148 | + if ($date) { |
|
| 149 | + $date = get_gmt_from_date($date); |
|
| 150 | 150 | } |
| 151 | 151 | return $date; |
| 152 | 152 | } |
@@ -158,8 +158,8 @@ discard block |
||
| 158 | 158 | * @param string $context View or edit context. |
| 159 | 159 | * @return string |
| 160 | 160 | */ |
| 161 | - public function get_date_modified( $context = 'view' ) { |
|
| 162 | - return $this->get_prop( 'date_modified', $context ); |
|
| 161 | + public function get_date_modified($context = 'view') { |
|
| 162 | + return $this->get_prop('date_modified', $context); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -169,11 +169,11 @@ discard block |
||
| 169 | 169 | * @param string $context View or edit context. |
| 170 | 170 | * @return string |
| 171 | 171 | */ |
| 172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 173 | - $date = $this->get_date_modified( $context ); |
|
| 172 | + public function get_date_modified_gmt($context = 'view') { |
|
| 173 | + $date = $this->get_date_modified($context); |
|
| 174 | 174 | |
| 175 | - if ( $date ) { |
|
| 176 | - $date = get_gmt_from_date( $date ); |
|
| 175 | + if ($date) { |
|
| 176 | + $date = get_gmt_from_date($date); |
|
| 177 | 177 | } |
| 178 | 178 | return $date; |
| 179 | 179 | } |
@@ -185,8 +185,8 @@ discard block |
||
| 185 | 185 | * @param string $context View or edit context. |
| 186 | 186 | * @return string |
| 187 | 187 | */ |
| 188 | - public function get_name( $context = 'view' ) { |
|
| 189 | - return $this->get_prop( 'name', $context ); |
|
| 188 | + public function get_name($context = 'view') { |
|
| 189 | + return $this->get_prop('name', $context); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -196,8 +196,8 @@ discard block |
||
| 196 | 196 | * @param string $context View or edit context. |
| 197 | 197 | * @return string |
| 198 | 198 | */ |
| 199 | - public function get_title( $context = 'view' ) { |
|
| 200 | - return $this->get_name( $context ); |
|
| 199 | + public function get_title($context = 'view') { |
|
| 200 | + return $this->get_name($context); |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | /** |
@@ -207,8 +207,8 @@ discard block |
||
| 207 | 207 | * @param string $context View or edit context. |
| 208 | 208 | * @return int |
| 209 | 209 | */ |
| 210 | - public function get_author( $context = 'view' ) { |
|
| 211 | - return (int) $this->get_prop( 'author', $context ); |
|
| 210 | + public function get_author($context = 'view') { |
|
| 211 | + return (int) $this->get_prop('author', $context); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
@@ -218,21 +218,21 @@ discard block |
||
| 218 | 218 | * @param string $context View or edit context. |
| 219 | 219 | * @return array |
| 220 | 220 | */ |
| 221 | - public function get_elements( $context = 'view' ) { |
|
| 222 | - $elements = $this->get_prop( 'elements', $context ); |
|
| 221 | + public function get_elements($context = 'view') { |
|
| 222 | + $elements = $this->get_prop('elements', $context); |
|
| 223 | 223 | |
| 224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 225 | - return wpinv_get_data( 'sample-payment-form' ); |
|
| 224 | + if (empty($elements) || !is_array($elements)) { |
|
| 225 | + return wpinv_get_data('sample-payment-form'); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | // Ensure that all required elements exist. |
| 229 | 229 | $_elements = array(); |
| 230 | - foreach ( $elements as $element ) { |
|
| 230 | + foreach ($elements as $element) { |
|
| 231 | 231 | |
| 232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 232 | + if ($element['type'] == 'pay_button' && !$this->has_element_type('gateway_select')) { |
|
| 233 | 233 | |
| 234 | 234 | $_elements[] = array( |
| 235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 235 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 236 | 236 | 'id' => 'gtscicd', |
| 237 | 237 | 'name' => 'gtscicd', |
| 238 | 238 | 'type' => 'gateway_select', |
@@ -257,22 +257,22 @@ discard block |
||
| 257 | 257 | * @param string $return objects or arrays. |
| 258 | 258 | * @return GetPaid_Form_Item[] |
| 259 | 259 | */ |
| 260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | - $items = $this->get_prop( 'items', $context ); |
|
| 260 | + public function get_items($context = 'view', $return = 'objects') { |
|
| 261 | + $items = $this->get_prop('items', $context); |
|
| 262 | 262 | |
| 263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 264 | - $items = wpinv_get_data( 'sample-payment-form-items' ); |
|
| 263 | + if (empty($items) || !is_array($items)) { |
|
| 264 | + $items = wpinv_get_data('sample-payment-form-items'); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | // Convert the items. |
| 268 | 268 | $prepared = array(); |
| 269 | 269 | |
| 270 | - foreach ( $items as $key => $value ) { |
|
| 270 | + foreach ($items as $key => $value) { |
|
| 271 | 271 | |
| 272 | 272 | // Form items. |
| 273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
| 273 | + if ($value instanceof GetPaid_Form_Item) { |
|
| 274 | 274 | |
| 275 | - if ( $value->can_purchase() ) { |
|
| 275 | + if ($value->can_purchase()) { |
|
| 276 | 276 | $prepared[] = $value; |
| 277 | 277 | } |
| 278 | 278 | |
@@ -281,16 +281,16 @@ discard block |
||
| 281 | 281 | } |
| 282 | 282 | |
| 283 | 283 | // $item_id => $quantity (buy buttons) |
| 284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | - $item = new GetPaid_Form_Item( $key ); |
|
| 284 | + if (is_numeric($key) && is_numeric($value)) { |
|
| 285 | + $item = new GetPaid_Form_Item($key); |
|
| 286 | 286 | |
| 287 | - if ( $item->can_purchase() ) { |
|
| 287 | + if ($item->can_purchase()) { |
|
| 288 | 288 | |
| 289 | 289 | $value = (float) $value; |
| 290 | - $item->set_quantity( $value ); |
|
| 291 | - if ( 0 == $value ) { |
|
| 292 | - $item->set_quantity( 1 ); |
|
| 293 | - $item->set_allow_quantities( true ); |
|
| 290 | + $item->set_quantity($value); |
|
| 291 | + if (0 == $value) { |
|
| 292 | + $item->set_quantity(1); |
|
| 293 | + $item->set_allow_quantities(true); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | $prepared[] = $item; |
@@ -300,33 +300,33 @@ discard block |
||
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | // Items saved via payment forms editor. |
| 303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 303 | + if (is_array($value) && isset($value['id'])) { |
|
| 304 | 304 | |
| 305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 305 | + $item = new GetPaid_Form_Item($value['id']); |
|
| 306 | 306 | |
| 307 | - if ( ! $item->can_purchase() ) { |
|
| 307 | + if (!$item->can_purchase()) { |
|
| 308 | 308 | continue; |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | // Sub-total (Cart items). |
| 312 | - if ( isset( $value['subtotal'] ) ) { |
|
| 313 | - $item->set_price( $value['subtotal'] ); |
|
| 312 | + if (isset($value['subtotal'])) { |
|
| 313 | + $item->set_price($value['subtotal']); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | - if ( isset( $value['quantity'] ) ) { |
|
| 317 | - $item->set_quantity( $value['quantity'] ); |
|
| 316 | + if (isset($value['quantity'])) { |
|
| 317 | + $item->set_quantity($value['quantity']); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 320 | + if (isset($value['allow_quantities'])) { |
|
| 321 | + $item->set_allow_quantities($value['allow_quantities']); |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | - if ( isset( $value['required'] ) ) { |
|
| 325 | - $item->set_is_required( $value['required'] ); |
|
| 324 | + if (isset($value['required'])) { |
|
| 325 | + $item->set_is_required($value['required']); |
|
| 326 | 326 | } |
| 327 | 327 | |
| 328 | - if ( isset( $value['description'] ) ) { |
|
| 329 | - $item->set_custom_description( $value['description'] ); |
|
| 328 | + if (isset($value['description'])) { |
|
| 329 | + $item->set_custom_description($value['description']); |
|
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | $prepared[] = $item; |
@@ -335,14 +335,14 @@ discard block |
||
| 335 | 335 | } |
| 336 | 336 | |
| 337 | 337 | // $item_id => array( 'price' => 10 ) (item variations) |
| 338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | - $item = new GetPaid_Form_Item( $key ); |
|
| 338 | + if (is_numeric($key) && is_array($value)) { |
|
| 339 | + $item = new GetPaid_Form_Item($key); |
|
| 340 | 340 | |
| 341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | - $item->set_price( $value['price'] ); |
|
| 341 | + if (isset($value['price']) && $item->user_can_set_their_price()) { |
|
| 342 | + $item->set_price($value['price']); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - if ( $item->can_purchase() ) { |
|
| 345 | + if ($item->can_purchase()) { |
|
| 346 | 346 | $prepared[] = $item; |
| 347 | 347 | } |
| 348 | 348 | |
@@ -351,12 +351,12 @@ discard block |
||
| 351 | 351 | |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | - if ( 'objects' == $return && 'view' == $context ) { |
|
| 354 | + if ('objects' == $return && 'view' == $context) { |
|
| 355 | 355 | return $prepared; |
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | $items = array(); |
| 359 | - foreach ( $prepared as $item ) { |
|
| 359 | + foreach ($prepared as $item) { |
|
| 360 | 360 | $items[] = $item->prepare_data_for_use(); |
| 361 | 361 | } |
| 362 | 362 | |
@@ -370,14 +370,14 @@ discard block |
||
| 370 | 370 | * @param int $item_id The item id to return. |
| 371 | 371 | * @return GetPaid_Form_Item|bool |
| 372 | 372 | */ |
| 373 | - public function get_item( $item_id ) { |
|
| 373 | + public function get_item($item_id) { |
|
| 374 | 374 | |
| 375 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 375 | + if (empty($item_id) || !is_numeric($item_id)) { |
|
| 376 | 376 | return false; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - foreach( $this->get_items() as $item ) { |
|
| 380 | - if ( $item->get_id() == (int) $item_id ) { |
|
| 379 | + foreach ($this->get_items() as $item) { |
|
| 380 | + if ($item->get_id() == (int) $item_id) { |
|
| 381 | 381 | return $item; |
| 382 | 382 | } |
| 383 | 383 | } |
@@ -393,15 +393,15 @@ discard block |
||
| 393 | 393 | * @param string $element_type The element type to return. |
| 394 | 394 | * @return array|bool |
| 395 | 395 | */ |
| 396 | - public function get_element_type( $element_type ) { |
|
| 396 | + public function get_element_type($element_type) { |
|
| 397 | 397 | |
| 398 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 398 | + if (empty($element_type) || !is_scalar($element_type)) { |
|
| 399 | 399 | return false; |
| 400 | 400 | } |
| 401 | 401 | |
| 402 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 402 | + foreach ($this->get_prop('elements') as $element) { |
|
| 403 | 403 | |
| 404 | - if ( $element['type'] == $element_type ) { |
|
| 404 | + if ($element['type'] == $element_type) { |
|
| 405 | 405 | return $element; |
| 406 | 406 | } |
| 407 | 407 | |
@@ -418,8 +418,8 @@ discard block |
||
| 418 | 418 | * @param string $context View or edit context. |
| 419 | 419 | * @return float |
| 420 | 420 | */ |
| 421 | - public function get_earned( $context = 'view' ) { |
|
| 422 | - return $this->get_prop( 'earned', $context ); |
|
| 421 | + public function get_earned($context = 'view') { |
|
| 422 | + return $this->get_prop('earned', $context); |
|
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | /** |
@@ -429,8 +429,8 @@ discard block |
||
| 429 | 429 | * @param string $context View or edit context. |
| 430 | 430 | * @return float |
| 431 | 431 | */ |
| 432 | - public function get_refunded( $context = 'view' ) { |
|
| 433 | - return $this->get_prop( 'refunded', $context ); |
|
| 432 | + public function get_refunded($context = 'view') { |
|
| 433 | + return $this->get_prop('refunded', $context); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | /** |
@@ -440,8 +440,8 @@ discard block |
||
| 440 | 440 | * @param string $context View or edit context. |
| 441 | 441 | * @return float |
| 442 | 442 | */ |
| 443 | - public function get_cancelled( $context = 'view' ) { |
|
| 444 | - return $this->get_prop( 'cancelled', $context ); |
|
| 443 | + public function get_cancelled($context = 'view') { |
|
| 444 | + return $this->get_prop('cancelled', $context); |
|
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | /** |
@@ -451,8 +451,8 @@ discard block |
||
| 451 | 451 | * @param string $context View or edit context. |
| 452 | 452 | * @return float |
| 453 | 453 | */ |
| 454 | - public function get_failed( $context = 'view' ) { |
|
| 455 | - return $this->get_prop( 'failed', $context ); |
|
| 454 | + public function get_failed($context = 'view') { |
|
| 455 | + return $this->get_prop('failed', $context); |
|
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | /** |
@@ -463,8 +463,8 @@ discard block |
||
| 463 | 463 | * @return string |
| 464 | 464 | */ |
| 465 | 465 | public function get_currency() { |
| 466 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 467 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 466 | + $currency = empty($this->invoice) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 467 | + return apply_filters('getpaid-payment-form-currency', $currency, $this); |
|
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | /* |
@@ -482,8 +482,8 @@ discard block |
||
| 482 | 482 | * |
| 483 | 483 | * @since 1.0.19 |
| 484 | 484 | */ |
| 485 | - public function set_version( $value ) { |
|
| 486 | - $this->set_prop( 'version', $value ); |
|
| 485 | + public function set_version($value) { |
|
| 486 | + $this->set_prop('version', $value); |
|
| 487 | 487 | } |
| 488 | 488 | |
| 489 | 489 | /** |
@@ -493,11 +493,11 @@ discard block |
||
| 493 | 493 | * @param string $value Value to set. |
| 494 | 494 | * @return bool Whether or not the date was set. |
| 495 | 495 | */ |
| 496 | - public function set_date_created( $value ) { |
|
| 497 | - $date = strtotime( $value ); |
|
| 496 | + public function set_date_created($value) { |
|
| 497 | + $date = strtotime($value); |
|
| 498 | 498 | |
| 499 | - if ( $date ) { |
|
| 500 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 499 | + if ($date) { |
|
| 500 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
| 501 | 501 | return true; |
| 502 | 502 | } |
| 503 | 503 | |
@@ -512,11 +512,11 @@ discard block |
||
| 512 | 512 | * @param string $value Value to set. |
| 513 | 513 | * @return bool Whether or not the date was set. |
| 514 | 514 | */ |
| 515 | - public function set_date_modified( $value ) { |
|
| 516 | - $date = strtotime( $value ); |
|
| 515 | + public function set_date_modified($value) { |
|
| 516 | + $date = strtotime($value); |
|
| 517 | 517 | |
| 518 | - if ( $date ) { |
|
| 519 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
| 518 | + if ($date) { |
|
| 519 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
| 520 | 520 | return true; |
| 521 | 521 | } |
| 522 | 522 | |
@@ -530,8 +530,8 @@ discard block |
||
| 530 | 530 | * @since 1.0.19 |
| 531 | 531 | * @param string $value New name. |
| 532 | 532 | */ |
| 533 | - public function set_name( $value ) { |
|
| 534 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 533 | + public function set_name($value) { |
|
| 534 | + $this->set_prop('name', sanitize_text_field($value)); |
|
| 535 | 535 | } |
| 536 | 536 | |
| 537 | 537 | /** |
@@ -540,8 +540,8 @@ discard block |
||
| 540 | 540 | * @since 1.0.19 |
| 541 | 541 | * @param string $value New name. |
| 542 | 542 | */ |
| 543 | - public function set_title( $value ) { |
|
| 544 | - $this->set_name( $value ); |
|
| 543 | + public function set_title($value) { |
|
| 544 | + $this->set_name($value); |
|
| 545 | 545 | } |
| 546 | 546 | |
| 547 | 547 | /** |
@@ -550,8 +550,8 @@ discard block |
||
| 550 | 550 | * @since 1.0.19 |
| 551 | 551 | * @param int $value New author. |
| 552 | 552 | */ |
| 553 | - public function set_author( $value ) { |
|
| 554 | - $this->set_prop( 'author', (int) $value ); |
|
| 553 | + public function set_author($value) { |
|
| 554 | + $this->set_prop('author', (int) $value); |
|
| 555 | 555 | } |
| 556 | 556 | |
| 557 | 557 | /** |
@@ -561,9 +561,9 @@ discard block |
||
| 561 | 561 | * @sinve 2.3.4 Array values sanitized. |
| 562 | 562 | * @param array $value Form elements. |
| 563 | 563 | */ |
| 564 | - public function set_elements( $value ) { |
|
| 565 | - if ( is_array( $value ) ) { |
|
| 566 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 564 | + public function set_elements($value) { |
|
| 565 | + if (is_array($value)) { |
|
| 566 | + $this->set_prop('elements', wp_kses_post_deep($value)); |
|
| 567 | 567 | } |
| 568 | 568 | } |
| 569 | 569 | |
@@ -574,18 +574,18 @@ discard block |
||
| 574 | 574 | * |
| 575 | 575 | * @return mixed |
| 576 | 576 | */ |
| 577 | - public function sanitize_array_values($value){ |
|
| 577 | + public function sanitize_array_values($value) { |
|
| 578 | 578 | |
| 579 | 579 | // sanitize |
| 580 | - if(!empty($value )){ |
|
| 580 | + if (!empty($value)) { |
|
| 581 | 581 | |
| 582 | - foreach($value as $key => $val_arr){ |
|
| 582 | + foreach ($value as $key => $val_arr) { |
|
| 583 | 583 | |
| 584 | - if(is_array($val_arr)){ |
|
| 584 | + if (is_array($val_arr)) { |
|
| 585 | 585 | // check if we have sub array items. |
| 586 | 586 | $sub_arr = array(); |
| 587 | - foreach($val_arr as $key2 => $val2){ |
|
| 588 | - if(is_array($val2)){ |
|
| 587 | + foreach ($val_arr as $key2 => $val2) { |
|
| 588 | + if (is_array($val2)) { |
|
| 589 | 589 | $sub_arr[$key2] = $this->sanitize_array_values($val2); |
| 590 | 590 | unset($val_arr[$key][$key2]); |
| 591 | 591 | } |
@@ -595,14 +595,14 @@ discard block |
||
| 595 | 595 | $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
| 596 | 596 | |
| 597 | 597 | // sanitize array elements |
| 598 | - $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 598 | + $value[$key] = array_map('sanitize_text_field', $val_arr); |
|
| 599 | 599 | |
| 600 | 600 | // add back the description if set |
| 601 | - if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
| 601 | + if (isset($val_arr['description'])) { $value[$key]['description'] = $help_text; } |
|
| 602 | 602 | |
| 603 | 603 | // add back sub array items after its been sanitized. |
| 604 | - if ( ! empty( $sub_arr ) ) { |
|
| 605 | - $value[$key] = array_merge($value[$key],$sub_arr); |
|
| 604 | + if (!empty($sub_arr)) { |
|
| 605 | + $value[$key] = array_merge($value[$key], $sub_arr); |
|
| 606 | 606 | } |
| 607 | 607 | } |
| 608 | 608 | |
@@ -619,9 +619,9 @@ discard block |
||
| 619 | 619 | * @since 1.0.19 |
| 620 | 620 | * @param array $value Form elements. |
| 621 | 621 | */ |
| 622 | - public function set_items( $value ) { |
|
| 623 | - if ( is_array( $value ) ) { |
|
| 624 | - $this->set_prop( 'items', $value ); |
|
| 622 | + public function set_items($value) { |
|
| 623 | + if (is_array($value)) { |
|
| 624 | + $this->set_prop('items', $value); |
|
| 625 | 625 | } |
| 626 | 626 | } |
| 627 | 627 | |
@@ -631,9 +631,9 @@ discard block |
||
| 631 | 631 | * @since 1.0.19 |
| 632 | 632 | * @param float $value Amount earned. |
| 633 | 633 | */ |
| 634 | - public function set_earned( $value ) { |
|
| 635 | - $value = max( (float) $value, 0 ); |
|
| 636 | - $this->set_prop( 'earned', $value ); |
|
| 634 | + public function set_earned($value) { |
|
| 635 | + $value = max((float) $value, 0); |
|
| 636 | + $this->set_prop('earned', $value); |
|
| 637 | 637 | } |
| 638 | 638 | |
| 639 | 639 | /** |
@@ -642,9 +642,9 @@ discard block |
||
| 642 | 642 | * @since 1.0.19 |
| 643 | 643 | * @param float $value Amount refunded. |
| 644 | 644 | */ |
| 645 | - public function set_refunded( $value ) { |
|
| 646 | - $value = max( (float) $value, 0 ); |
|
| 647 | - $this->set_prop( 'refunded', $value ); |
|
| 645 | + public function set_refunded($value) { |
|
| 646 | + $value = max((float) $value, 0); |
|
| 647 | + $this->set_prop('refunded', $value); |
|
| 648 | 648 | } |
| 649 | 649 | |
| 650 | 650 | /** |
@@ -653,9 +653,9 @@ discard block |
||
| 653 | 653 | * @since 1.0.19 |
| 654 | 654 | * @param float $value Amount cancelled. |
| 655 | 655 | */ |
| 656 | - public function set_cancelled( $value ) { |
|
| 657 | - $value = max( (float) $value, 0 ); |
|
| 658 | - $this->set_prop( 'cancelled', $value ); |
|
| 656 | + public function set_cancelled($value) { |
|
| 657 | + $value = max((float) $value, 0); |
|
| 658 | + $this->set_prop('cancelled', $value); |
|
| 659 | 659 | } |
| 660 | 660 | |
| 661 | 661 | /** |
@@ -664,9 +664,9 @@ discard block |
||
| 664 | 664 | * @since 1.0.19 |
| 665 | 665 | * @param float $value Amount cancelled. |
| 666 | 666 | */ |
| 667 | - public function set_failed( $value ) { |
|
| 668 | - $value = max( (float) $value, 0 ); |
|
| 669 | - $this->set_prop( 'failed', $value ); |
|
| 667 | + public function set_failed($value) { |
|
| 668 | + $value = max((float) $value, 0); |
|
| 669 | + $this->set_prop('failed', $value); |
|
| 670 | 670 | } |
| 671 | 671 | |
| 672 | 672 | /** |
@@ -675,11 +675,11 @@ discard block |
||
| 675 | 675 | * @deprecated |
| 676 | 676 | * @return int item id |
| 677 | 677 | */ |
| 678 | - public function create( $data = array() ) { |
|
| 678 | + public function create($data = array()) { |
|
| 679 | 679 | |
| 680 | 680 | // Set the properties. |
| 681 | - if ( is_array( $data ) ) { |
|
| 682 | - $this->set_props( $data ); |
|
| 681 | + if (is_array($data)) { |
|
| 682 | + $this->set_props($data); |
|
| 683 | 683 | } |
| 684 | 684 | |
| 685 | 685 | // Save the item. |
@@ -693,8 +693,8 @@ discard block |
||
| 693 | 693 | * @deprecated |
| 694 | 694 | * @return int item id |
| 695 | 695 | */ |
| 696 | - public function update( $data = array() ) { |
|
| 697 | - return $this->create( $data ); |
|
| 696 | + public function update($data = array()) { |
|
| 697 | + return $this->create($data); |
|
| 698 | 698 | } |
| 699 | 699 | |
| 700 | 700 | /* |
@@ -714,7 +714,7 @@ discard block |
||
| 714 | 714 | */ |
| 715 | 715 | public function is_default() { |
| 716 | 716 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
| 717 | - return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
|
| 717 | + return (bool) apply_filters('wpinv_is_default_payment_form', $is_default, $this->get_id(), $this); |
|
| 718 | 718 | } |
| 719 | 719 | |
| 720 | 720 | /** |
@@ -726,11 +726,11 @@ discard block |
||
| 726 | 726 | public function is_active() { |
| 727 | 727 | $is_active = 0 !== (int) $this->get_id(); |
| 728 | 728 | |
| 729 | - if ( $is_active && ! current_user_can( 'edit_post', $this->get_id() ) && $this->get_status() != 'publish' ) { |
|
| 729 | + if ($is_active && !current_user_can('edit_post', $this->get_id()) && $this->get_status() != 'publish') { |
|
| 730 | 730 | $is_active = false; |
| 731 | 731 | } |
| 732 | 732 | |
| 733 | - return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
|
| 733 | + return (bool) apply_filters('wpinv_is_payment_form_active', $is_active, $this); |
|
| 734 | 734 | } |
| 735 | 735 | |
| 736 | 736 | /** |
@@ -739,8 +739,8 @@ discard block |
||
| 739 | 739 | * @since 1.0.19 |
| 740 | 740 | * @return bool |
| 741 | 741 | */ |
| 742 | - public function has_item( $item_id ) { |
|
| 743 | - return false !== $this->get_item( $item_id ); |
|
| 742 | + public function has_item($item_id) { |
|
| 743 | + return false !== $this->get_item($item_id); |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | 746 | /** |
@@ -749,8 +749,8 @@ discard block |
||
| 749 | 749 | * @since 1.0.19 |
| 750 | 750 | * @return bool |
| 751 | 751 | */ |
| 752 | - public function has_element_type( $element_type ) { |
|
| 753 | - return false !== $this->get_element_type( $element_type ); |
|
| 752 | + public function has_element_type($element_type) { |
|
| 753 | + return false !== $this->get_element_type($element_type); |
|
| 754 | 754 | } |
| 755 | 755 | |
| 756 | 756 | /** |
@@ -761,13 +761,13 @@ discard block |
||
| 761 | 761 | */ |
| 762 | 762 | public function is_recurring() { |
| 763 | 763 | |
| 764 | - if ( ! empty( $this->invoice ) ) { |
|
| 764 | + if (!empty($this->invoice)) { |
|
| 765 | 765 | return $this->invoice->is_recurring(); |
| 766 | 766 | } |
| 767 | 767 | |
| 768 | - foreach ( $this->get_items() as $item ) { |
|
| 768 | + foreach ($this->get_items() as $item) { |
|
| 769 | 769 | |
| 770 | - if ( $item->is_recurring() ) { |
|
| 770 | + if ($item->is_recurring()) { |
|
| 771 | 771 | return true; |
| 772 | 772 | } |
| 773 | 773 | |
@@ -781,7 +781,7 @@ discard block |
||
| 781 | 781 | * |
| 782 | 782 | * @since 1.0.19 |
| 783 | 783 | */ |
| 784 | - public function get_html( $extra_markup = '' ) { |
|
| 784 | + public function get_html($extra_markup = '') { |
|
| 785 | 785 | |
| 786 | 786 | // Return the HTML. |
| 787 | 787 | return wpinv_get_template_html( |
@@ -799,8 +799,8 @@ discard block |
||
| 799 | 799 | * |
| 800 | 800 | * @since 1.0.19 |
| 801 | 801 | */ |
| 802 | - public function display( $extra_markup = '' ) { |
|
| 803 | - echo $this->get_html( $extra_markup ); |
|
| 802 | + public function display($extra_markup = '') { |
|
| 803 | + echo $this->get_html($extra_markup); |
|
| 804 | 804 | } |
| 805 | 805 | |
| 806 | 806 | } |
@@ -10,232 +10,232 @@ discard block |
||
| 10 | 10 | |
| 11 | 11 | if (!class_exists('RapidAddon')) { |
| 12 | 12 | |
| 13 | - class RapidAddon { |
|
| 14 | - |
|
| 15 | - public $name; |
|
| 16 | - public $slug; |
|
| 17 | - public $fields; |
|
| 18 | - public $options = array(); |
|
| 19 | - public $accordions = array(); |
|
| 20 | - public $image_sections = array(); |
|
| 21 | - public $import_function; |
|
| 22 | - public $post_saved_function; |
|
| 23 | - public $notice_text; |
|
| 24 | - public $logger = null; |
|
| 25 | - public $when_to_run = false; |
|
| 26 | - public $image_options = array( |
|
| 27 | - 'download_images' => 'yes', |
|
| 28 | - 'download_featured_delim' => ',', |
|
| 29 | - 'download_featured_image' => '', |
|
| 30 | - 'gallery_featured_image' => '', |
|
| 31 | - 'gallery_featured_delim' => ',', |
|
| 32 | - 'featured_image' => '', |
|
| 33 | - 'featured_delim' => ',', |
|
| 34 | - 'search_existing_images' => 1, |
|
| 35 | - 'is_featured' => 0, |
|
| 36 | - 'create_draft' => 'no', |
|
| 37 | - 'set_image_meta_title' => 0, |
|
| 38 | - 'image_meta_title_delim' => ',', |
|
| 39 | - 'image_meta_title' => '', |
|
| 40 | - 'set_image_meta_caption' => 0, |
|
| 41 | - 'image_meta_caption_delim' => ',', |
|
| 42 | - 'image_meta_caption' => '', |
|
| 43 | - 'set_image_meta_alt' => 0, |
|
| 44 | - 'image_meta_alt_delim' => ',', |
|
| 45 | - 'image_meta_alt' => '', |
|
| 46 | - 'set_image_meta_description' => 0, |
|
| 47 | - 'image_meta_description_delim' => ',', |
|
| 48 | - 'image_meta_description_delim_logic' => 'separate', |
|
| 49 | - 'image_meta_description' => '', |
|
| 50 | - 'auto_rename_images' => 0, |
|
| 51 | - 'auto_rename_images_suffix' => '', |
|
| 52 | - 'auto_set_extension' => 0, |
|
| 53 | - 'new_extension' => '', |
|
| 54 | - 'do_not_remove_images' => 1, |
|
| 13 | + class RapidAddon { |
|
| 14 | + |
|
| 15 | + public $name; |
|
| 16 | + public $slug; |
|
| 17 | + public $fields; |
|
| 18 | + public $options = array(); |
|
| 19 | + public $accordions = array(); |
|
| 20 | + public $image_sections = array(); |
|
| 21 | + public $import_function; |
|
| 22 | + public $post_saved_function; |
|
| 23 | + public $notice_text; |
|
| 24 | + public $logger = null; |
|
| 25 | + public $when_to_run = false; |
|
| 26 | + public $image_options = array( |
|
| 27 | + 'download_images' => 'yes', |
|
| 28 | + 'download_featured_delim' => ',', |
|
| 29 | + 'download_featured_image' => '', |
|
| 30 | + 'gallery_featured_image' => '', |
|
| 31 | + 'gallery_featured_delim' => ',', |
|
| 32 | + 'featured_image' => '', |
|
| 33 | + 'featured_delim' => ',', |
|
| 34 | + 'search_existing_images' => 1, |
|
| 35 | + 'is_featured' => 0, |
|
| 36 | + 'create_draft' => 'no', |
|
| 37 | + 'set_image_meta_title' => 0, |
|
| 38 | + 'image_meta_title_delim' => ',', |
|
| 39 | + 'image_meta_title' => '', |
|
| 40 | + 'set_image_meta_caption' => 0, |
|
| 41 | + 'image_meta_caption_delim' => ',', |
|
| 42 | + 'image_meta_caption' => '', |
|
| 43 | + 'set_image_meta_alt' => 0, |
|
| 44 | + 'image_meta_alt_delim' => ',', |
|
| 45 | + 'image_meta_alt' => '', |
|
| 46 | + 'set_image_meta_description' => 0, |
|
| 47 | + 'image_meta_description_delim' => ',', |
|
| 48 | + 'image_meta_description_delim_logic' => 'separate', |
|
| 49 | + 'image_meta_description' => '', |
|
| 50 | + 'auto_rename_images' => 0, |
|
| 51 | + 'auto_rename_images_suffix' => '', |
|
| 52 | + 'auto_set_extension' => 0, |
|
| 53 | + 'new_extension' => '', |
|
| 54 | + 'do_not_remove_images' => 1, |
|
| 55 | 55 | 'search_existing_images_logic' => 'by_url' |
| 56 | - ); |
|
| 56 | + ); |
|
| 57 | 57 | |
| 58 | - protected $isWizard = true; |
|
| 58 | + protected $isWizard = true; |
|
| 59 | 59 | |
| 60 | - function __construct($name, $slug) { |
|
| 61 | - $this->name = $name; |
|
| 62 | - $this->slug = $slug; |
|
| 63 | - if (!empty($_GET['id'])){ |
|
| 64 | - $this->isWizard = false; |
|
| 65 | - } |
|
| 60 | + function __construct($name, $slug) { |
|
| 61 | + $this->name = $name; |
|
| 62 | + $this->slug = $slug; |
|
| 63 | + if (!empty($_GET['id'])){ |
|
| 64 | + $this->isWizard = false; |
|
| 65 | + } |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - function set_import_function($name) { |
|
| 69 | - $this->import_function = $name; |
|
| 70 | - } |
|
| 68 | + function set_import_function($name) { |
|
| 69 | + $this->import_function = $name; |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - function set_post_saved_function($name) { |
|
| 73 | - $this->post_saved_function = $name; |
|
| 74 | - } |
|
| 72 | + function set_post_saved_function($name) { |
|
| 73 | + $this->post_saved_function = $name; |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | - function is_active_addon($post_type = null) { |
|
| 76 | + function is_active_addon($post_type = null) { |
|
| 77 | 77 | |
| 78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 79 | - return false; |
|
| 80 | - } |
|
| 78 | + if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 79 | + return false; |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - $addon_active = false; |
|
| 82 | + $addon_active = false; |
|
| 83 | 83 | |
| 84 | - if ($post_type !== null) { |
|
| 85 | - if (@in_array($post_type, $this->active_post_types) or empty($this->active_post_types)) { |
|
| 86 | - $addon_active = true; |
|
| 87 | - } |
|
| 88 | - } |
|
| 84 | + if ($post_type !== null) { |
|
| 85 | + if (@in_array($post_type, $this->active_post_types) or empty($this->active_post_types)) { |
|
| 86 | + $addon_active = true; |
|
| 87 | + } |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - if ($addon_active){ |
|
| 90 | + if ($addon_active){ |
|
| 91 | 91 | |
| 92 | - $current_theme = wp_get_theme(); |
|
| 92 | + $current_theme = wp_get_theme(); |
|
| 93 | 93 | |
| 94 | - $parent_theme = $current_theme->parent(); |
|
| 94 | + $parent_theme = $current_theme->parent(); |
|
| 95 | 95 | |
| 96 | - $theme_name = $current_theme->get('Name'); |
|
| 96 | + $theme_name = $current_theme->get('Name'); |
|
| 97 | 97 | |
| 98 | - $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 98 | + $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 99 | 99 | |
| 100 | - if ( ! $addon_active and $parent_theme ){ |
|
| 101 | - $parent_theme_name = $parent_theme->get('Name'); |
|
| 102 | - $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 100 | + if ( ! $addon_active and $parent_theme ){ |
|
| 101 | + $parent_theme_name = $parent_theme->get('Name'); |
|
| 102 | + $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
| 103 | 103 | |
| 104 | - } |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
| 106 | + if ( $addon_active and ! empty($this->active_plugins) ){ |
|
| 107 | 107 | |
| 108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 108 | + include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 109 | 109 | |
| 110 | - foreach ($this->active_plugins as $plugin) { |
|
| 111 | - if ( ! is_plugin_active($plugin) ) { |
|
| 112 | - $addon_active = false; |
|
| 113 | - break; |
|
| 114 | - } |
|
| 115 | - } |
|
| 116 | - } |
|
| 110 | + foreach ($this->active_plugins as $plugin) { |
|
| 111 | + if ( ! is_plugin_active($plugin) ) { |
|
| 112 | + $addon_active = false; |
|
| 113 | + break; |
|
| 114 | + } |
|
| 115 | + } |
|
| 116 | + } |
|
| 117 | 117 | |
| 118 | - } |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - if ($this->when_to_run == "always") { |
|
| 121 | - $addon_active = true; |
|
| 122 | - } |
|
| 120 | + if ($this->when_to_run == "always") { |
|
| 121 | + $addon_active = true; |
|
| 122 | + } |
|
| 123 | 123 | |
| 124 | - return apply_filters('rapid_is_active_add_on', $addon_active, $post_type, $this->slug); |
|
| 125 | - } |
|
| 124 | + return apply_filters('rapid_is_active_add_on', $addon_active, $post_type, $this->slug); |
|
| 125 | + } |
|
| 126 | 126 | |
| 127 | - /** |
|
| 128 | - * |
|
| 129 | - * Add-On Initialization |
|
| 130 | - * |
|
| 131 | - * @param array $conditions - list of supported themes and post types |
|
| 132 | - * |
|
| 133 | - */ |
|
| 134 | - function run($conditions = array()) { |
|
| 135 | - |
|
| 136 | - if (empty($conditions)) { |
|
| 137 | - $this->when_to_run = "always"; |
|
| 138 | - } |
|
| 127 | + /** |
|
| 128 | + * |
|
| 129 | + * Add-On Initialization |
|
| 130 | + * |
|
| 131 | + * @param array $conditions - list of supported themes and post types |
|
| 132 | + * |
|
| 133 | + */ |
|
| 134 | + function run($conditions = array()) { |
|
| 135 | + |
|
| 136 | + if (empty($conditions)) { |
|
| 137 | + $this->when_to_run = "always"; |
|
| 138 | + } |
|
| 139 | 139 | |
| 140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 140 | + @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | + @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | + @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 143 | 143 | |
| 144 | - add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
|
| 145 | - add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
|
| 146 | - add_filter('wp_all_import_addon_import', array($this, 'wpai_api_import')); |
|
| 147 | - add_filter('wp_all_import_addon_saved_post', array($this, 'wpai_api_post_saved')); |
|
| 148 | - add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
|
| 144 | + add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
|
| 145 | + add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
|
| 146 | + add_filter('wp_all_import_addon_import', array($this, 'wpai_api_import')); |
|
| 147 | + add_filter('wp_all_import_addon_saved_post', array($this, 'wpai_api_post_saved')); |
|
| 148 | + add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
|
| 149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
| 150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
| 151 | 151 | add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
| 152 | 152 | add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
| 153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - function parse($data) { |
|
| 157 | + function parse($data) { |
|
| 158 | 158 | |
| 159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 159 | + if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 160 | 160 | |
| 161 | - $parsedData = $this->helper_parse($data, $this->options_array()); |
|
| 162 | - return $parsedData; |
|
| 161 | + $parsedData = $this->helper_parse($data, $this->options_array()); |
|
| 162 | + return $parsedData; |
|
| 163 | 163 | |
| 164 | - } |
|
| 164 | + } |
|
| 165 | 165 | |
| 166 | 166 | |
| 167 | - function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
|
| 167 | + function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
|
| 168 | 168 | |
| 169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 170 | 170 | |
| 171 | - $this->fields[$field_slug] = $field; |
|
| 171 | + $this->fields[$field_slug] = $field; |
|
| 172 | 172 | |
| 173 | - if ( ! empty($enum_values) ){ |
|
| 174 | - foreach ($enum_values as $key => $value) { |
|
| 175 | - if (is_array($value)) |
|
| 176 | - { |
|
| 177 | - if ($field['type'] == 'accordion') |
|
| 178 | - { |
|
| 179 | - $this->fields[$value['slug']]['is_sub_field'] = true; |
|
| 180 | - } |
|
| 181 | - else |
|
| 182 | - { |
|
| 183 | - foreach ($value as $n => $param) { |
|
| 184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
| 185 | - $this->fields[$param['slug']]['is_sub_field'] = true; |
|
| 186 | - } |
|
| 187 | - } |
|
| 188 | - } |
|
| 189 | - } |
|
| 190 | - } |
|
| 191 | - } |
|
| 173 | + if ( ! empty($enum_values) ){ |
|
| 174 | + foreach ($enum_values as $key => $value) { |
|
| 175 | + if (is_array($value)) |
|
| 176 | + { |
|
| 177 | + if ($field['type'] == 'accordion') |
|
| 178 | + { |
|
| 179 | + $this->fields[$value['slug']]['is_sub_field'] = true; |
|
| 180 | + } |
|
| 181 | + else |
|
| 182 | + { |
|
| 183 | + foreach ($value as $n => $param) { |
|
| 184 | + if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
| 185 | + $this->fields[$param['slug']]['is_sub_field'] = true; |
|
| 186 | + } |
|
| 187 | + } |
|
| 188 | + } |
|
| 189 | + } |
|
| 190 | + } |
|
| 191 | + } |
|
| 192 | 192 | |
| 193 | - return $field; |
|
| 193 | + return $field; |
|
| 194 | 194 | |
| 195 | - } |
|
| 195 | + } |
|
| 196 | 196 | |
| 197 | - function add_acf_field($field){ |
|
| 198 | - $this->fields[$field->post_name] = array( |
|
| 199 | - 'type' => 'acf', |
|
| 200 | - 'field_obj' => $field |
|
| 201 | - ); |
|
| 202 | - } |
|
| 197 | + function add_acf_field($field){ |
|
| 198 | + $this->fields[$field->post_name] = array( |
|
| 199 | + 'type' => 'acf', |
|
| 200 | + 'field_obj' => $field |
|
| 201 | + ); |
|
| 202 | + } |
|
| 203 | 203 | |
| 204 | - private $acfGroups = array(); |
|
| 204 | + private $acfGroups = array(); |
|
| 205 | 205 | |
| 206 | - function use_acf_group($acf_group){ |
|
| 207 | - $this->add_text( |
|
| 208 | - '<div class="postbox acf_postbox default acf_signle_group rad4"> |
|
| 206 | + function use_acf_group($acf_group){ |
|
| 207 | + $this->add_text( |
|
| 208 | + '<div class="postbox acf_postbox default acf_signle_group rad4"> |
|
| 209 | 209 | <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
| 210 | 210 | <div class="inside">'); |
| 211 | - $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
|
| 212 | - if (!empty($acf_fields)){ |
|
| 213 | - foreach ($acf_fields as $field) { |
|
| 214 | - $this->add_acf_field($field); |
|
| 215 | - } |
|
| 216 | - } |
|
| 217 | - $this->add_text('</div></div>'); |
|
| 218 | - $this->acfGroups[] = $acf_group['ID']; |
|
| 219 | - add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - function acf_is_show_group($is_show, $acf_group){ |
|
| 223 | - return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - /** |
|
| 227 | - * |
|
| 228 | - * Add an option to WP All Import options list |
|
| 229 | - * |
|
| 230 | - * @param string $slug - option name |
|
| 231 | - * @param string $default_value - default option value |
|
| 232 | - * |
|
| 233 | - */ |
|
| 234 | - function add_option($slug, $default_value = ''){ |
|
| 235 | - $this->options[$slug] = $default_value; |
|
| 236 | - } |
|
| 211 | + $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
|
| 212 | + if (!empty($acf_fields)){ |
|
| 213 | + foreach ($acf_fields as $field) { |
|
| 214 | + $this->add_acf_field($field); |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | + $this->add_text('</div></div>'); |
|
| 218 | + $this->acfGroups[] = $acf_group['ID']; |
|
| 219 | + add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
|
| 220 | + } |
|
| 237 | 221 | |
| 238 | - function options_array() { |
|
| 222 | + function acf_is_show_group($is_show, $acf_group){ |
|
| 223 | + return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + /** |
|
| 227 | + * |
|
| 228 | + * Add an option to WP All Import options list |
|
| 229 | + * |
|
| 230 | + * @param string $slug - option name |
|
| 231 | + * @param string $default_value - default option value |
|
| 232 | + * |
|
| 233 | + */ |
|
| 234 | + function add_option($slug, $default_value = ''){ |
|
| 235 | + $this->options[$slug] = $default_value; |
|
| 236 | + } |
|
| 237 | + |
|
| 238 | + function options_array() { |
|
| 239 | 239 | |
| 240 | 240 | $options_list = array(); |
| 241 | 241 | |
@@ -255,528 +255,528 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - if ( ! empty($this->options) ){ |
|
| 259 | - foreach ($this->options as $slug => $value) { |
|
| 260 | - $options_arr[$slug] = $value; |
|
| 261 | - } |
|
| 262 | - } |
|
| 258 | + if ( ! empty($this->options) ){ |
|
| 259 | + foreach ($this->options as $slug => $value) { |
|
| 260 | + $options_arr[$slug] = $value; |
|
| 261 | + } |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - $options_arr[$this->slug] = $options_list; |
|
| 265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
| 264 | + $options_arr[$this->slug] = $options_list; |
|
| 265 | + $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
| 266 | 266 | |
| 267 | - return $options_arr; |
|
| 267 | + return $options_arr; |
|
| 268 | 268 | |
| 269 | - } |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - function wpai_api_options($all_options) { |
|
| 271 | + function wpai_api_options($all_options) { |
|
| 272 | 272 | |
| 273 | - $all_options = $all_options + $this->options_array(); |
|
| 273 | + $all_options = $all_options + $this->options_array(); |
|
| 274 | 274 | |
| 275 | - return $all_options; |
|
| 275 | + return $all_options; |
|
| 276 | 276 | |
| 277 | - } |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | 279 | |
| 280 | - function wpai_api_register($addons) { |
|
| 280 | + function wpai_api_register($addons) { |
|
| 281 | 281 | |
| 282 | - if (empty($addons[$this->slug])) { |
|
| 283 | - $addons[$this->slug] = 1; |
|
| 284 | - } |
|
| 282 | + if (empty($addons[$this->slug])) { |
|
| 283 | + $addons[$this->slug] = 1; |
|
| 284 | + } |
|
| 285 | 285 | |
| 286 | - return $addons; |
|
| 286 | + return $addons; |
|
| 287 | 287 | |
| 288 | - } |
|
| 288 | + } |
|
| 289 | 289 | |
| 290 | 290 | |
| 291 | - function wpai_api_parse($functions) { |
|
| 291 | + function wpai_api_parse($functions) { |
|
| 292 | 292 | |
| 293 | - $functions[$this->slug] = array($this, 'parse'); |
|
| 294 | - return $functions; |
|
| 293 | + $functions[$this->slug] = array($this, 'parse'); |
|
| 294 | + return $functions; |
|
| 295 | 295 | |
| 296 | - } |
|
| 296 | + } |
|
| 297 | 297 | |
| 298 | - function wpai_api_post_saved($functions){ |
|
| 299 | - $functions[$this->slug] = array($this, 'post_saved'); |
|
| 300 | - return $functions; |
|
| 301 | - } |
|
| 298 | + function wpai_api_post_saved($functions){ |
|
| 299 | + $functions[$this->slug] = array($this, 'post_saved'); |
|
| 300 | + return $functions; |
|
| 301 | + } |
|
| 302 | 302 | |
| 303 | 303 | |
| 304 | - function wpai_api_import($functions) { |
|
| 304 | + function wpai_api_import($functions) { |
|
| 305 | 305 | |
| 306 | - $functions[$this->slug] = array($this, 'import'); |
|
| 307 | - return $functions; |
|
| 306 | + $functions[$this->slug] = array($this, 'import'); |
|
| 307 | + return $functions; |
|
| 308 | 308 | |
| 309 | - } |
|
| 309 | + } |
|
| 310 | 310 | |
| 311 | - function post_saved( $importData ){ |
|
| 311 | + function post_saved( $importData ){ |
|
| 312 | 312 | |
| 313 | - if (is_callable($this->post_saved_function)) |
|
| 314 | - call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
| 313 | + if (is_callable($this->post_saved_function)) |
|
| 314 | + call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
| 315 | 315 | |
| 316 | - } |
|
| 316 | + } |
|
| 317 | 317 | |
| 318 | - function import($importData, $parsedData) { |
|
| 318 | + function import($importData, $parsedData) { |
|
| 319 | 319 | |
| 320 | - if (!$this->is_active_addon($importData['post_type'])) { |
|
| 321 | - return; |
|
| 322 | - } |
|
| 320 | + if (!$this->is_active_addon($importData['post_type'])) { |
|
| 321 | + return; |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - $import_options = $importData['import']['options'][$this->slug]; |
|
| 324 | + $import_options = $importData['import']['options'][$this->slug]; |
|
| 325 | 325 | |
| 326 | - // echo "<pre>"; |
|
| 327 | - // print_r($import_options); |
|
| 328 | - // echo "</pre>"; |
|
| 326 | + // echo "<pre>"; |
|
| 327 | + // print_r($import_options); |
|
| 328 | + // echo "</pre>"; |
|
| 329 | 329 | |
| 330 | - if ( ! empty($parsedData) ) { |
|
| 330 | + if ( ! empty($parsedData) ) { |
|
| 331 | 331 | |
| 332 | - $this->logger = $importData['logger']; |
|
| 332 | + $this->logger = $importData['logger']; |
|
| 333 | 333 | |
| 334 | - $post_id = $importData['pid']; |
|
| 335 | - $index = $importData['i']; |
|
| 336 | - $data = array(); |
|
| 337 | - if (!empty($this->fields)){ |
|
| 338 | - foreach ($this->fields as $field_slug => $field_params) { |
|
| 339 | - if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
| 340 | - switch ($field_params['type']) { |
|
| 334 | + $post_id = $importData['pid']; |
|
| 335 | + $index = $importData['i']; |
|
| 336 | + $data = array(); |
|
| 337 | + if (!empty($this->fields)){ |
|
| 338 | + foreach ($this->fields as $field_slug => $field_params) { |
|
| 339 | + if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
| 340 | + switch ($field_params['type']) { |
|
| 341 | 341 | |
| 342 | - case 'image': |
|
| 342 | + case 'image': |
|
| 343 | 343 | |
| 344 | - // import the specified image, then set the value of the field to the image ID in the media library |
|
| 344 | + // import the specified image, then set the value of the field to the image ID in the media library |
|
| 345 | 345 | |
| 346 | - $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 346 | + $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 347 | 347 | |
| 348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 349 | - continue 2; |
|
| 350 | - } |
|
| 348 | + if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 349 | + continue 2; |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - $download = $import_options['download_image'][$field_slug]; |
|
| 352 | + $download = $import_options['download_image'][$field_slug]; |
|
| 353 | 353 | |
| 354 | - $uploaded_image = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "images", true, $importData['articleData']); |
|
| 354 | + $uploaded_image = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "images", true, $importData['articleData']); |
|
| 355 | 355 | |
| 356 | - $data[$field_slug] = array( |
|
| 357 | - "attachment_id" => $uploaded_image, |
|
| 358 | - "image_url_or_path" => $image_url_or_path, |
|
| 359 | - "download" => $download |
|
| 360 | - ); |
|
| 356 | + $data[$field_slug] = array( |
|
| 357 | + "attachment_id" => $uploaded_image, |
|
| 358 | + "image_url_or_path" => $image_url_or_path, |
|
| 359 | + "download" => $download |
|
| 360 | + ); |
|
| 361 | 361 | |
| 362 | - break; |
|
| 362 | + break; |
|
| 363 | 363 | |
| 364 | - case 'file': |
|
| 364 | + case 'file': |
|
| 365 | 365 | |
| 366 | - $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 366 | + $image_url_or_path = $parsedData[$field_slug][$index]; |
|
| 367 | 367 | |
| 368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 369 | - continue 2; |
|
| 370 | - } |
|
| 368 | + if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 369 | + continue 2; |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - $download = $import_options['download_image'][$field_slug]; |
|
| 372 | + $download = $import_options['download_image'][$field_slug]; |
|
| 373 | 373 | |
| 374 | - $uploaded_file = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "files", true, $importData['articleData']); |
|
| 374 | + $uploaded_file = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "files", true, $importData['articleData']); |
|
| 375 | 375 | |
| 376 | - $data[$field_slug] = array( |
|
| 377 | - "attachment_id" => $uploaded_file, |
|
| 378 | - "image_url_or_path" => $image_url_or_path, |
|
| 379 | - "download" => $download |
|
| 380 | - ); |
|
| 376 | + $data[$field_slug] = array( |
|
| 377 | + "attachment_id" => $uploaded_file, |
|
| 378 | + "image_url_or_path" => $image_url_or_path, |
|
| 379 | + "download" => $download |
|
| 380 | + ); |
|
| 381 | 381 | |
| 382 | - break; |
|
| 382 | + break; |
|
| 383 | 383 | |
| 384 | - default: |
|
| 385 | - // set the field data to the value of the field after it's been parsed |
|
| 386 | - $data[$field_slug] = $parsedData[$field_slug][$index]; |
|
| 387 | - break; |
|
| 388 | - } |
|
| 384 | + default: |
|
| 385 | + // set the field data to the value of the field after it's been parsed |
|
| 386 | + $data[$field_slug] = $parsedData[$field_slug][$index]; |
|
| 387 | + break; |
|
| 388 | + } |
|
| 389 | + |
|
| 390 | + // apply mapping rules if they exist |
|
| 391 | + if (!empty($import_options['mapping'][$field_slug])) { |
|
| 392 | + $mapping_rules = json_decode($import_options['mapping'][$field_slug], true); |
|
| 393 | + |
|
| 394 | + if (!empty($mapping_rules) and is_array($mapping_rules)) { |
|
| 395 | + foreach ($mapping_rules as $rule_number => $map_to) { |
|
| 396 | + if (isset($map_to[trim($data[$field_slug])])){ |
|
| 397 | + $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
|
| 398 | + break; |
|
| 399 | + } |
|
| 400 | + } |
|
| 401 | + } |
|
| 402 | + } |
|
| 403 | + // -------------------- |
|
| 404 | + } |
|
| 405 | + } |
|
| 389 | 406 | |
| 390 | - // apply mapping rules if they exist |
|
| 391 | - if (!empty($import_options['mapping'][$field_slug])) { |
|
| 392 | - $mapping_rules = json_decode($import_options['mapping'][$field_slug], true); |
|
| 407 | + call_user_func($this->import_function, $post_id, $data, $importData['import'], $importData['articleData'], $importData['logger']); |
|
| 408 | + } |
|
| 393 | 409 | |
| 394 | - if (!empty($mapping_rules) and is_array($mapping_rules)) { |
|
| 395 | - foreach ($mapping_rules as $rule_number => $map_to) { |
|
| 396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
| 397 | - $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
|
| 398 | - break; |
|
| 399 | - } |
|
| 400 | - } |
|
| 401 | - } |
|
| 402 | - } |
|
| 403 | - // -------------------- |
|
| 404 | - } |
|
| 405 | - } |
|
| 410 | + } |
|
| 406 | 411 | |
| 407 | - call_user_func($this->import_function, $post_id, $data, $importData['import'], $importData['articleData'], $importData['logger']); |
|
| 408 | - } |
|
| 409 | 412 | |
| 410 | - } |
|
| 413 | + function wpai_api_metabox($post_type, $current_values) { |
|
| 411 | 414 | |
| 415 | + if (!$this->is_active_addon($post_type)) { |
|
| 416 | + return; |
|
| 417 | + } |
|
| 412 | 418 | |
| 413 | - function wpai_api_metabox($post_type, $current_values) { |
|
| 419 | + echo $this->helper_metabox_top($this->name); |
|
| 414 | 420 | |
| 415 | - if (!$this->is_active_addon($post_type)) { |
|
| 416 | - return; |
|
| 417 | - } |
|
| 421 | + $visible_fields = 0; |
|
| 418 | 422 | |
| 419 | - echo $this->helper_metabox_top($this->name); |
|
| 423 | + foreach ($this->fields as $field_slug => $field_params) { |
|
| 424 | + if ($field_params['is_sub_field']) continue; |
|
| 425 | + $visible_fields++; |
|
| 426 | + } |
|
| 420 | 427 | |
| 421 | - $visible_fields = 0; |
|
| 428 | + $counter = 0; |
|
| 422 | 429 | |
| 423 | - foreach ($this->fields as $field_slug => $field_params) { |
|
| 424 | - if ($field_params['is_sub_field']) continue; |
|
| 425 | - $visible_fields++; |
|
| 426 | - } |
|
| 430 | + foreach ($this->fields as $field_slug => $field_params) { |
|
| 427 | 431 | |
| 428 | - $counter = 0; |
|
| 432 | + // do not render sub fields |
|
| 433 | + if ($field_params['is_sub_field']) continue; |
|
| 429 | 434 | |
| 430 | - foreach ($this->fields as $field_slug => $field_params) { |
|
| 435 | + $counter++; |
|
| 431 | 436 | |
| 432 | - // do not render sub fields |
|
| 433 | - if ($field_params['is_sub_field']) continue; |
|
| 437 | + $this->render_field($field_params, $field_slug, $current_values, $visible_fields == $counter); |
|
| 434 | 438 | |
| 435 | - $counter++; |
|
| 439 | + //if ( $field_params['type'] != 'accordion' ) echo "<br />"; |
|
| 436 | 440 | |
| 437 | - $this->render_field($field_params, $field_slug, $current_values, $visible_fields == $counter); |
|
| 441 | + } |
|
| 438 | 442 | |
| 439 | - //if ( $field_params['type'] != 'accordion' ) echo "<br />"; |
|
| 443 | + echo $this->helper_metabox_bottom(); |
|
| 444 | + |
|
| 445 | + if ( ! empty($this->image_sections) ){ |
|
| 446 | + $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
|
| 447 | + foreach ($this->image_sections as $k => $section) { |
|
| 448 | + $section_options = array(); |
|
| 449 | + foreach ($this->image_options as $slug => $value) { |
|
| 450 | + $section_options[$section['slug'] . $slug] = $value; |
|
| 451 | + } |
|
| 452 | + if ( ! $is_images_section_enabled and ! $k ){ |
|
| 453 | + $section_options[$section['slug'] . 'is_featured'] = 1; |
|
| 454 | + } |
|
| 455 | + PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
|
| 456 | + } |
|
| 457 | + } |
|
| 440 | 458 | |
| 441 | - } |
|
| 459 | + } |
|
| 442 | 460 | |
| 443 | - echo $this->helper_metabox_bottom(); |
|
| 461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
| 444 | 462 | |
| 445 | - if ( ! empty($this->image_sections) ){ |
|
| 446 | - $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
|
| 447 | - foreach ($this->image_sections as $k => $section) { |
|
| 448 | - $section_options = array(); |
|
| 449 | - foreach ($this->image_options as $slug => $value) { |
|
| 450 | - $section_options[$section['slug'] . $slug] = $value; |
|
| 451 | - } |
|
| 452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
| 453 | - $section_options[$section['slug'] . 'is_featured'] = 1; |
|
| 454 | - } |
|
| 455 | - PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
|
| 456 | - } |
|
| 457 | - } |
|
| 458 | - |
|
| 459 | - } |
|
| 460 | - |
|
| 461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
| 462 | - |
|
| 463 | - if (!isset($current_values[$this->slug][$field_slug])) { |
|
| 464 | - $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
|
| 465 | - } |
|
| 466 | - |
|
| 467 | - if ($field_params['type'] == 'text') { |
|
| 468 | - |
|
| 469 | - PMXI_API::add_field( |
|
| 470 | - 'simple', |
|
| 471 | - $field_params['name'], |
|
| 472 | - array( |
|
| 473 | - 'tooltip' => $field_params['tooltip'], |
|
| 474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 476 | - ) |
|
| 477 | - ); |
|
| 478 | - |
|
| 479 | - } else if ($field_params['type'] == 'textarea') { |
|
| 480 | - |
|
| 481 | - PMXI_API::add_field( |
|
| 482 | - 'textarea', |
|
| 483 | - $field_params['name'], |
|
| 484 | - array( |
|
| 485 | - 'tooltip' => $field_params['tooltip'], |
|
| 486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 488 | - ) |
|
| 489 | - ); |
|
| 490 | - |
|
| 491 | - } else if ($field_params['type'] == 'wp_editor') { |
|
| 492 | - |
|
| 493 | - PMXI_API::add_field( |
|
| 494 | - 'wp_editor', |
|
| 495 | - $field_params['name'], |
|
| 496 | - array( |
|
| 497 | - 'tooltip' => $field_params['tooltip'], |
|
| 498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 500 | - ) |
|
| 501 | - ); |
|
| 502 | - |
|
| 503 | - } else if ($field_params['type'] == 'image' or $field_params['type'] == 'file') { |
|
| 463 | + if (!isset($current_values[$this->slug][$field_slug])) { |
|
| 464 | + $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
|
| 465 | + } |
|
| 466 | + |
|
| 467 | + if ($field_params['type'] == 'text') { |
|
| 468 | + |
|
| 469 | + PMXI_API::add_field( |
|
| 470 | + 'simple', |
|
| 471 | + $field_params['name'], |
|
| 472 | + array( |
|
| 473 | + 'tooltip' => $field_params['tooltip'], |
|
| 474 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 475 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 476 | + ) |
|
| 477 | + ); |
|
| 478 | + |
|
| 479 | + } else if ($field_params['type'] == 'textarea') { |
|
| 480 | + |
|
| 481 | + PMXI_API::add_field( |
|
| 482 | + 'textarea', |
|
| 483 | + $field_params['name'], |
|
| 484 | + array( |
|
| 485 | + 'tooltip' => $field_params['tooltip'], |
|
| 486 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 487 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 488 | + ) |
|
| 489 | + ); |
|
| 490 | + |
|
| 491 | + } else if ($field_params['type'] == 'wp_editor') { |
|
| 492 | + |
|
| 493 | + PMXI_API::add_field( |
|
| 494 | + 'wp_editor', |
|
| 495 | + $field_params['name'], |
|
| 496 | + array( |
|
| 497 | + 'tooltip' => $field_params['tooltip'], |
|
| 498 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 499 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 500 | + ) |
|
| 501 | + ); |
|
| 502 | + |
|
| 503 | + } else if ($field_params['type'] == 'image' or $field_params['type'] == 'file') { |
|
| 504 | 504 | |
| 505 | - if (!isset($current_values[$this->slug]['download_image'][$field_slug])) { $current_values[$this->slug]['download_image'][$field_slug] = ''; } |
|
| 506 | - |
|
| 507 | - PMXI_API::add_field( |
|
| 508 | - $field_params['type'], |
|
| 509 | - $field_params['name'], |
|
| 510 | - array( |
|
| 511 | - 'tooltip' => $field_params['tooltip'], |
|
| 512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 513 | - 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 514 | - 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
|
| 515 | - 'field_key' => $field_slug, |
|
| 516 | - 'addon_prefix' => $this->slug |
|
| 517 | - |
|
| 518 | - ) |
|
| 519 | - ); |
|
| 520 | - |
|
| 521 | - } else if ($field_params['type'] == 'radio') { |
|
| 505 | + if (!isset($current_values[$this->slug]['download_image'][$field_slug])) { $current_values[$this->slug]['download_image'][$field_slug] = ''; } |
|
| 506 | + |
|
| 507 | + PMXI_API::add_field( |
|
| 508 | + $field_params['type'], |
|
| 509 | + $field_params['name'], |
|
| 510 | + array( |
|
| 511 | + 'tooltip' => $field_params['tooltip'], |
|
| 512 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 513 | + 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 514 | + 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
|
| 515 | + 'field_key' => $field_slug, |
|
| 516 | + 'addon_prefix' => $this->slug |
|
| 517 | + |
|
| 518 | + ) |
|
| 519 | + ); |
|
| 520 | + |
|
| 521 | + } else if ($field_params['type'] == 'radio') { |
|
| 522 | 522 | |
| 523 | - if (!isset($current_values[$this->slug]['mapping'][$field_slug])) { $current_values[$this->slug]['mapping'][$field_slug] = array(); } |
|
| 524 | - if (!isset($current_values[$this->slug]['xpaths'][$field_slug])) { $current_values[$this->slug]['xpaths'][$field_slug] = ''; } |
|
| 525 | - |
|
| 526 | - PMXI_API::add_field( |
|
| 527 | - 'enum', |
|
| 528 | - $field_params['name'], |
|
| 529 | - array( |
|
| 530 | - 'tooltip' => $field_params['tooltip'], |
|
| 531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 532 | - 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 533 | - 'enum_values' => $field_params['enum_values'], |
|
| 534 | - 'mapping' => true, |
|
| 535 | - 'field_key' => $field_slug, |
|
| 536 | - 'mapping_rules' => $current_values[$this->slug]['mapping'][$field_slug], |
|
| 537 | - 'xpath' => $current_values[$this->slug]['xpaths'][$field_slug], |
|
| 538 | - 'addon_prefix' => $this->slug, |
|
| 539 | - 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values) |
|
| 540 | - ) |
|
| 541 | - ); |
|
| 542 | - |
|
| 543 | - } else if($field_params['type'] == 'accordion') { |
|
| 544 | - |
|
| 545 | - PMXI_API::add_field( |
|
| 546 | - 'accordion', |
|
| 547 | - $field_params['name'], |
|
| 548 | - array( |
|
| 549 | - 'tooltip' => $field_params['tooltip'], |
|
| 550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 551 | - 'field_key' => $field_slug, |
|
| 552 | - 'addon_prefix' => $this->slug, |
|
| 553 | - 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
|
| 554 | - 'in_the_bottom' => $in_the_bottom |
|
| 555 | - ) |
|
| 556 | - ); |
|
| 557 | - |
|
| 558 | - } else if($field_params['type'] == 'acf') { |
|
| 559 | - $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
|
| 560 | - $fieldData['ID'] = $field_params['field_obj']->ID; |
|
| 561 | - $fieldData['id'] = $field_params['field_obj']->ID; |
|
| 562 | - $fieldData['label'] = $field_params['field_obj']->post_title; |
|
| 563 | - $fieldData['key'] = $field_params['field_obj']->post_name; |
|
| 564 | - if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
| 565 | - if (function_exists('pmai_render_field')) { |
|
| 566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
| 567 | - } |
|
| 568 | - } else if($field_params['type'] == 'title'){ |
|
| 569 | - ?> |
|
| 523 | + if (!isset($current_values[$this->slug]['mapping'][$field_slug])) { $current_values[$this->slug]['mapping'][$field_slug] = array(); } |
|
| 524 | + if (!isset($current_values[$this->slug]['xpaths'][$field_slug])) { $current_values[$this->slug]['xpaths'][$field_slug] = ''; } |
|
| 525 | + |
|
| 526 | + PMXI_API::add_field( |
|
| 527 | + 'enum', |
|
| 528 | + $field_params['name'], |
|
| 529 | + array( |
|
| 530 | + 'tooltip' => $field_params['tooltip'], |
|
| 531 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 532 | + 'field_value' => $current_values[$this->slug][$field_slug], |
|
| 533 | + 'enum_values' => $field_params['enum_values'], |
|
| 534 | + 'mapping' => true, |
|
| 535 | + 'field_key' => $field_slug, |
|
| 536 | + 'mapping_rules' => $current_values[$this->slug]['mapping'][$field_slug], |
|
| 537 | + 'xpath' => $current_values[$this->slug]['xpaths'][$field_slug], |
|
| 538 | + 'addon_prefix' => $this->slug, |
|
| 539 | + 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values) |
|
| 540 | + ) |
|
| 541 | + ); |
|
| 542 | + |
|
| 543 | + } else if($field_params['type'] == 'accordion') { |
|
| 544 | + |
|
| 545 | + PMXI_API::add_field( |
|
| 546 | + 'accordion', |
|
| 547 | + $field_params['name'], |
|
| 548 | + array( |
|
| 549 | + 'tooltip' => $field_params['tooltip'], |
|
| 550 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
| 551 | + 'field_key' => $field_slug, |
|
| 552 | + 'addon_prefix' => $this->slug, |
|
| 553 | + 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
|
| 554 | + 'in_the_bottom' => $in_the_bottom |
|
| 555 | + ) |
|
| 556 | + ); |
|
| 557 | + |
|
| 558 | + } else if($field_params['type'] == 'acf') { |
|
| 559 | + $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
|
| 560 | + $fieldData['ID'] = $field_params['field_obj']->ID; |
|
| 561 | + $fieldData['id'] = $field_params['field_obj']->ID; |
|
| 562 | + $fieldData['label'] = $field_params['field_obj']->post_title; |
|
| 563 | + $fieldData['key'] = $field_params['field_obj']->post_name; |
|
| 564 | + if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
| 565 | + if (function_exists('pmai_render_field')) { |
|
| 566 | + echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
| 567 | + } |
|
| 568 | + } else if($field_params['type'] == 'title'){ |
|
| 569 | + ?> |
|
| 570 | 570 | <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
| 571 | 571 | <?php |
| 572 | 572 | |
| 573 | - } else if($field_params['type'] == 'plain_text'){ |
|
| 574 | - if ($field_params['is_html']): |
|
| 575 | - echo $field_params['name']; |
|
| 576 | - else: |
|
| 577 | - ?> |
|
| 573 | + } else if($field_params['type'] == 'plain_text'){ |
|
| 574 | + if ($field_params['is_html']): |
|
| 575 | + echo $field_params['name']; |
|
| 576 | + else: |
|
| 577 | + ?> |
|
| 578 | 578 | <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
| 579 | 579 | <?php |
| 580 | - endif; |
|
| 581 | - } |
|
| 580 | + endif; |
|
| 581 | + } |
|
| 582 | 582 | |
| 583 | 583 | |
| 584 | - } |
|
| 585 | - /** |
|
| 586 | - * |
|
| 587 | - * Helper function for nested radio fields |
|
| 588 | - * |
|
| 589 | - */ |
|
| 590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
| 591 | - $sub_fields = array(); |
|
| 592 | - if ( ! empty($field_params['enum_values']) ){ |
|
| 593 | - foreach ($field_params['enum_values'] as $key => $value) { |
|
| 594 | - $sub_fields[$key] = array(); |
|
| 595 | - if (is_array($value)){ |
|
| 596 | - if ($field_params['type'] == 'accordion'){ |
|
| 597 | - $sub_fields[$key][] = $this->convert_field($value, $current_values); |
|
| 598 | - } |
|
| 599 | - else |
|
| 600 | - { |
|
| 601 | - foreach ($value as $k => $sub_field) { |
|
| 602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
| 603 | - { |
|
| 604 | - $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
|
| 605 | - } |
|
| 606 | - } |
|
| 607 | - } |
|
| 608 | - } |
|
| 609 | - } |
|
| 610 | - } |
|
| 611 | - return $sub_fields; |
|
| 612 | - } |
|
| 613 | - |
|
| 614 | - function convert_field($sub_field, $current_values){ |
|
| 615 | - $field = array(); |
|
| 616 | - if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
|
| 617 | - $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
|
| 618 | - } |
|
| 619 | - switch ($this->fields[$sub_field['slug']]['type']) { |
|
| 620 | - case 'text': |
|
| 621 | - $field = array( |
|
| 622 | - 'type' => 'simple', |
|
| 623 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 624 | - 'params' => array( |
|
| 625 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 627 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 628 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 629 | - ) |
|
| 630 | - ); |
|
| 631 | - break; |
|
| 632 | - case 'textarea': |
|
| 633 | - $field = array( |
|
| 634 | - 'type' => 'textarea', |
|
| 635 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 636 | - 'params' => array( |
|
| 637 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 639 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 640 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 641 | - ) |
|
| 642 | - ); |
|
| 643 | - break; |
|
| 644 | - case 'wp_editor': |
|
| 645 | - $field = array( |
|
| 646 | - 'type' => 'wp_editor', |
|
| 647 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 648 | - 'params' => array( |
|
| 649 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 651 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 652 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 653 | - ) |
|
| 654 | - ); |
|
| 655 | - break; |
|
| 656 | - case 'image': |
|
| 657 | - $field = array( |
|
| 658 | - 'type' => 'image', |
|
| 659 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 660 | - 'params' => array( |
|
| 661 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 663 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 664 | - 'download_image' => null, |
|
| 665 | - 'field_key' => $sub_field['slug'], |
|
| 666 | - 'addon_prefix' => $this->slug, |
|
| 667 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 668 | - ) |
|
| 669 | - ); |
|
| 670 | - |
|
| 671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 672 | - $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 673 | - } |
|
| 584 | + } |
|
| 585 | + /** |
|
| 586 | + * |
|
| 587 | + * Helper function for nested radio fields |
|
| 588 | + * |
|
| 589 | + */ |
|
| 590 | + function get_sub_fields($field_params, $field_slug, $current_values){ |
|
| 591 | + $sub_fields = array(); |
|
| 592 | + if ( ! empty($field_params['enum_values']) ){ |
|
| 593 | + foreach ($field_params['enum_values'] as $key => $value) { |
|
| 594 | + $sub_fields[$key] = array(); |
|
| 595 | + if (is_array($value)){ |
|
| 596 | + if ($field_params['type'] == 'accordion'){ |
|
| 597 | + $sub_fields[$key][] = $this->convert_field($value, $current_values); |
|
| 598 | + } |
|
| 599 | + else |
|
| 600 | + { |
|
| 601 | + foreach ($value as $k => $sub_field) { |
|
| 602 | + if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
| 603 | + { |
|
| 604 | + $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
|
| 605 | + } |
|
| 606 | + } |
|
| 607 | + } |
|
| 608 | + } |
|
| 609 | + } |
|
| 610 | + } |
|
| 611 | + return $sub_fields; |
|
| 612 | + } |
|
| 613 | + |
|
| 614 | + function convert_field($sub_field, $current_values){ |
|
| 615 | + $field = array(); |
|
| 616 | + if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
|
| 617 | + $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
|
| 618 | + } |
|
| 619 | + switch ($this->fields[$sub_field['slug']]['type']) { |
|
| 620 | + case 'text': |
|
| 621 | + $field = array( |
|
| 622 | + 'type' => 'simple', |
|
| 623 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 624 | + 'params' => array( |
|
| 625 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 626 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 627 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 628 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 629 | + ) |
|
| 630 | + ); |
|
| 674 | 631 | break; |
| 675 | - case 'file': |
|
| 676 | - $field = array( |
|
| 677 | - 'type' => 'file', |
|
| 678 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 679 | - 'params' => array( |
|
| 680 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 682 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 683 | - 'download_image' => null, |
|
| 684 | - 'field_key' => $sub_field['slug'], |
|
| 685 | - 'addon_prefix' => $this->slug, |
|
| 686 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 687 | - ) |
|
| 688 | - ); |
|
| 689 | - |
|
| 690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 691 | - $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 692 | - } |
|
| 693 | - |
|
| 694 | - break; |
|
| 695 | - case 'radio': |
|
| 696 | - $field = array( |
|
| 697 | - 'type' => 'enum', |
|
| 698 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 699 | - 'params' => array( |
|
| 700 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 702 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 703 | - 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
|
| 704 | - 'mapping' => true, |
|
| 705 | - 'field_key' => $sub_field['slug'], |
|
| 706 | - 'mapping_rules' => isset($current_values[$this->slug]['mapping'][$sub_field['slug']]) ? $current_values[$this->slug]['mapping'][$sub_field['slug']] : array(), |
|
| 707 | - 'xpath' => isset($current_values[$this->slug]['xpaths'][$sub_field['slug']]) ? $current_values[$this->slug]['xpaths'][$sub_field['slug']] : '', |
|
| 708 | - 'addon_prefix' => $this->slug, |
|
| 709 | - 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 710 | - 'is_main_field' => $sub_field['is_main_field'] |
|
| 711 | - ) |
|
| 712 | - ); |
|
| 713 | - break; |
|
| 714 | - case 'accordion': |
|
| 715 | - $field = array( |
|
| 716 | - 'type' => 'accordion', |
|
| 717 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 718 | - 'params' => array( |
|
| 719 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 721 | - 'field_key' => $sub_field['slug'], |
|
| 722 | - 'addon_prefix' => $this->slug, |
|
| 723 | - 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 724 | - 'in_the_bottom' => false |
|
| 725 | - ) |
|
| 726 | - ); |
|
| 727 | - break; |
|
| 728 | - default: |
|
| 729 | - # code... |
|
| 730 | - break; |
|
| 731 | - } |
|
| 732 | - return $field; |
|
| 733 | - } |
|
| 734 | - |
|
| 735 | - /** |
|
| 736 | - * |
|
| 737 | - * Add accordion options |
|
| 738 | - * |
|
| 739 | - * |
|
| 740 | - */ |
|
| 741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
| 632 | + case 'textarea': |
|
| 633 | + $field = array( |
|
| 634 | + 'type' => 'textarea', |
|
| 635 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 636 | + 'params' => array( |
|
| 637 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 638 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 639 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 640 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 641 | + ) |
|
| 642 | + ); |
|
| 643 | + break; |
|
| 644 | + case 'wp_editor': |
|
| 645 | + $field = array( |
|
| 646 | + 'type' => 'wp_editor', |
|
| 647 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 648 | + 'params' => array( |
|
| 649 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 650 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 651 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
| 652 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 653 | + ) |
|
| 654 | + ); |
|
| 655 | + break; |
|
| 656 | + case 'image': |
|
| 657 | + $field = array( |
|
| 658 | + 'type' => 'image', |
|
| 659 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 660 | + 'params' => array( |
|
| 661 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 662 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 663 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 664 | + 'download_image' => null, |
|
| 665 | + 'field_key' => $sub_field['slug'], |
|
| 666 | + 'addon_prefix' => $this->slug, |
|
| 667 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 668 | + ) |
|
| 669 | + ); |
|
| 670 | + |
|
| 671 | + if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 672 | + $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 673 | + } |
|
| 674 | + break; |
|
| 675 | + case 'file': |
|
| 676 | + $field = array( |
|
| 677 | + 'type' => 'file', |
|
| 678 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 679 | + 'params' => array( |
|
| 680 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 681 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 682 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 683 | + 'download_image' => null, |
|
| 684 | + 'field_key' => $sub_field['slug'], |
|
| 685 | + 'addon_prefix' => $this->slug, |
|
| 686 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 687 | + ) |
|
| 688 | + ); |
|
| 689 | + |
|
| 690 | + if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 691 | + $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
| 692 | + } |
|
| 693 | + |
|
| 694 | + break; |
|
| 695 | + case 'radio': |
|
| 696 | + $field = array( |
|
| 697 | + 'type' => 'enum', |
|
| 698 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 699 | + 'params' => array( |
|
| 700 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 701 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 702 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
| 703 | + 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
|
| 704 | + 'mapping' => true, |
|
| 705 | + 'field_key' => $sub_field['slug'], |
|
| 706 | + 'mapping_rules' => isset($current_values[$this->slug]['mapping'][$sub_field['slug']]) ? $current_values[$this->slug]['mapping'][$sub_field['slug']] : array(), |
|
| 707 | + 'xpath' => isset($current_values[$this->slug]['xpaths'][$sub_field['slug']]) ? $current_values[$this->slug]['xpaths'][$sub_field['slug']] : '', |
|
| 708 | + 'addon_prefix' => $this->slug, |
|
| 709 | + 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 710 | + 'is_main_field' => $sub_field['is_main_field'] |
|
| 711 | + ) |
|
| 712 | + ); |
|
| 713 | + break; |
|
| 714 | + case 'accordion': |
|
| 715 | + $field = array( |
|
| 716 | + 'type' => 'accordion', |
|
| 717 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
| 718 | + 'params' => array( |
|
| 719 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
| 720 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 721 | + 'field_key' => $sub_field['slug'], |
|
| 722 | + 'addon_prefix' => $this->slug, |
|
| 723 | + 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
| 724 | + 'in_the_bottom' => false |
|
| 725 | + ) |
|
| 726 | + ); |
|
| 727 | + break; |
|
| 728 | + default: |
|
| 729 | + # code... |
|
| 730 | + break; |
|
| 731 | + } |
|
| 732 | + return $field; |
|
| 733 | + } |
|
| 734 | + |
|
| 735 | + /** |
|
| 736 | + * |
|
| 737 | + * Add accordion options |
|
| 738 | + * |
|
| 739 | + * |
|
| 740 | + */ |
|
| 741 | + function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
| 742 | 742 | |
| 743 | - if ( ! empty($fields) ) |
|
| 744 | - { |
|
| 743 | + if ( ! empty($fields) ) |
|
| 744 | + { |
|
| 745 | 745 | |
| 746 | - if ($main_field){ |
|
| 746 | + if ($main_field){ |
|
| 747 | 747 | |
| 748 | - $main_field['is_main_field'] = true; |
|
| 749 | - $fields[] = $main_field; |
|
| 748 | + $main_field['is_main_field'] = true; |
|
| 749 | + $fields[] = $main_field; |
|
| 750 | 750 | |
| 751 | - } |
|
| 751 | + } |
|
| 752 | 752 | |
| 753 | - return $this->add_field('accordion_' . $fields[0]['slug'], $title, 'accordion', $fields); |
|
| 753 | + return $this->add_field('accordion_' . $fields[0]['slug'], $title, 'accordion', $fields); |
|
| 754 | 754 | |
| 755 | - } |
|
| 755 | + } |
|
| 756 | 756 | |
| 757 | - } |
|
| 757 | + } |
|
| 758 | 758 | |
| 759 | - function add_title($title = '', $tooltip = ''){ |
|
| 759 | + function add_title($title = '', $tooltip = ''){ |
|
| 760 | 760 | |
| 761 | - if (empty($title)) return; |
|
| 761 | + if (empty($title)) return; |
|
| 762 | 762 | |
| 763 | - return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
|
| 763 | + return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
|
| 764 | 764 | |
| 765 | - } |
|
| 765 | + } |
|
| 766 | 766 | |
| 767 | - function add_text($text = '', $is_html = false){ |
|
| 767 | + function add_text($text = '', $is_html = false){ |
|
| 768 | 768 | |
| 769 | - if (empty($text)) return; |
|
| 769 | + if (empty($text)) return; |
|
| 770 | 770 | |
| 771 | - $count = is_array($this->fields) ? count($this->fields) : 0; |
|
| 771 | + $count = is_array($this->fields) ? count($this->fields) : 0; |
|
| 772 | 772 | |
| 773 | - return $this->add_field(sanitize_key($text) . time() . uniqid() . $count, $text, 'plain_text', null, "", $is_html); |
|
| 773 | + return $this->add_field(sanitize_key($text) . time() . uniqid() . $count, $text, 'plain_text', null, "", $is_html); |
|
| 774 | 774 | |
| 775 | - } |
|
| 775 | + } |
|
| 776 | 776 | |
| 777 | - function helper_metabox_top($name) { |
|
| 777 | + function helper_metabox_top($name) { |
|
| 778 | 778 | |
| 779 | - return ' |
|
| 779 | + return ' |
|
| 780 | 780 | <style type="text/css"> |
| 781 | 781 | .wpallimport-plugin .wpallimport-addon div.input { |
| 782 | 782 | margin-bottom: 15px; |
@@ -872,11 +872,11 @@ discard block |
||
| 872 | 872 | <table class="form-table" style="max-width:none;"> |
| 873 | 873 | <tr> |
| 874 | 874 | <td colspan="3">'; |
| 875 | - } |
|
| 875 | + } |
|
| 876 | 876 | |
| 877 | - function helper_metabox_bottom() { |
|
| 877 | + function helper_metabox_bottom() { |
|
| 878 | 878 | |
| 879 | - return ' </td> |
|
| 879 | + return ' </td> |
|
| 880 | 880 | </tr> |
| 881 | 881 | </table> |
| 882 | 882 | </div> |
@@ -884,298 +884,298 @@ discard block |
||
| 884 | 884 | </div> |
| 885 | 885 | </div>'; |
| 886 | 886 | |
| 887 | - } |
|
| 887 | + } |
|
| 888 | 888 | |
| 889 | - /** |
|
| 890 | - * |
|
| 891 | - * simply add an additional section for attachments |
|
| 892 | - * |
|
| 893 | - */ |
|
| 894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
| 895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
| 896 | - } |
|
| 889 | + /** |
|
| 890 | + * |
|
| 891 | + * simply add an additional section for attachments |
|
| 892 | + * |
|
| 893 | + */ |
|
| 894 | + function import_files( $slug, $title, $callback = NULL ){ |
|
| 895 | + $this->import_images( $slug, $title, 'files', $callback); |
|
| 896 | + } |
|
| 897 | 897 | |
| 898 | - /** |
|
| 899 | - * |
|
| 900 | - * simply add an additional section |
|
| 901 | - * |
|
| 902 | - */ |
|
| 903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
| 898 | + /** |
|
| 899 | + * |
|
| 900 | + * simply add an additional section |
|
| 901 | + * |
|
| 902 | + */ |
|
| 903 | + function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
| 904 | 904 | |
| 905 | - if ( empty($title) or empty($slug) ) return; |
|
| 905 | + if ( empty($title) or empty($slug) ) return; |
|
| 906 | 906 | |
| 907 | - if (is_array($slug)) { |
|
| 907 | + if (is_array($slug)) { |
|
| 908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
| 909 | 909 | } else { |
| 910 | 910 | $section_slug = 'pmxi_' . $slug; |
| 911 | 911 | } |
| 912 | 912 | |
| 913 | - $this->image_sections[] = array( |
|
| 914 | - 'title' => $title, |
|
| 915 | - 'slug' => $section_slug, |
|
| 916 | - 'type' => $type |
|
| 917 | - ); |
|
| 913 | + $this->image_sections[] = array( |
|
| 914 | + 'title' => $title, |
|
| 915 | + 'slug' => $section_slug, |
|
| 916 | + 'type' => $type |
|
| 917 | + ); |
|
| 918 | 918 | |
| 919 | - foreach ($this->image_options as $option_slug => $value) { |
|
| 920 | - $this->add_option($section_slug . $option_slug, $value); |
|
| 921 | - } |
|
| 919 | + foreach ($this->image_options as $option_slug => $value) { |
|
| 920 | + $this->add_option($section_slug . $option_slug, $value); |
|
| 921 | + } |
|
| 922 | 922 | |
| 923 | - if (count($this->image_sections) > 1){ |
|
| 924 | - add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
|
| 925 | - } |
|
| 923 | + if (count($this->image_sections) > 1){ |
|
| 924 | + add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
|
| 925 | + } |
|
| 926 | 926 | |
| 927 | - add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
|
| 927 | + add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
|
| 928 | 928 | |
| 929 | - if ($callback && is_callable($callback)) { |
|
| 929 | + if ($callback && is_callable($callback)) { |
|
| 930 | 930 | add_action( $section_slug, $callback, 10, 4); |
| 931 | 931 | } else { |
| 932 | 932 | if (function_exists($slug)) { |
| 933 | 933 | add_action( $section_slug, $slug, 10, 4); |
| 934 | 934 | } |
| 935 | 935 | } |
| 936 | - } |
|
| 937 | - /** |
|
| 938 | - * |
|
| 939 | - * filter to allow import images for free edition of WP All Import |
|
| 940 | - * |
|
| 941 | - */ |
|
| 942 | - function is_allow_import_images($is_allow, $post_type){ |
|
| 943 | - return ($this->is_active_addon($post_type)) ? true : $is_allow; |
|
| 944 | - } |
|
| 945 | - |
|
| 946 | - /** |
|
| 947 | - * |
|
| 948 | - * filter to control additional images sections |
|
| 949 | - * |
|
| 950 | - */ |
|
| 951 | - function additional_sections($sections){ |
|
| 952 | - if ( ! empty($this->image_sections) ){ |
|
| 953 | - foreach ($this->image_sections as $add_section) { |
|
| 954 | - $sections[] = $add_section; |
|
| 955 | - } |
|
| 956 | - } |
|
| 936 | + } |
|
| 937 | + /** |
|
| 938 | + * |
|
| 939 | + * filter to allow import images for free edition of WP All Import |
|
| 940 | + * |
|
| 941 | + */ |
|
| 942 | + function is_allow_import_images($is_allow, $post_type){ |
|
| 943 | + return ($this->is_active_addon($post_type)) ? true : $is_allow; |
|
| 944 | + } |
|
| 945 | + |
|
| 946 | + /** |
|
| 947 | + * |
|
| 948 | + * filter to control additional images sections |
|
| 949 | + * |
|
| 950 | + */ |
|
| 951 | + function additional_sections($sections){ |
|
| 952 | + if ( ! empty($this->image_sections) ){ |
|
| 953 | + foreach ($this->image_sections as $add_section) { |
|
| 954 | + $sections[] = $add_section; |
|
| 955 | + } |
|
| 956 | + } |
|
| 957 | 957 | |
| 958 | - return $sections; |
|
| 959 | - } |
|
| 960 | - /** |
|
| 961 | - * |
|
| 962 | - * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
|
| 963 | - * |
|
| 964 | - */ |
|
| 965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
| 966 | - return ($this->is_active_addon($post_type)) ? false : $is_show; |
|
| 967 | - } |
|
| 968 | - |
|
| 969 | - /** |
|
| 970 | - * |
|
| 971 | - * disable the default images section |
|
| 972 | - * |
|
| 973 | - */ |
|
| 974 | - function disable_default_images($post_type = false){ |
|
| 958 | + return $sections; |
|
| 959 | + } |
|
| 960 | + /** |
|
| 961 | + * |
|
| 962 | + * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
|
| 963 | + * |
|
| 964 | + */ |
|
| 965 | + function filter_is_show_add_new_images($is_show, $post_type){ |
|
| 966 | + return ($this->is_active_addon($post_type)) ? false : $is_show; |
|
| 967 | + } |
|
| 968 | + |
|
| 969 | + /** |
|
| 970 | + * |
|
| 971 | + * disable the default images section |
|
| 972 | + * |
|
| 973 | + */ |
|
| 974 | + function disable_default_images($post_type = false){ |
|
| 975 | 975 | |
| 976 | - add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
|
| 976 | + add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
|
| 977 | 977 | |
| 978 | - } |
|
| 979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
| 978 | + } |
|
| 979 | + function is_enable_default_images_section($is_enabled, $post_type){ |
|
| 980 | 980 | |
| 981 | - return ($this->is_active_addon($post_type)) ? false : true; |
|
| 981 | + return ($this->is_active_addon($post_type)) ? false : true; |
|
| 982 | 982 | |
| 983 | - } |
|
| 983 | + } |
|
| 984 | 984 | |
| 985 | - function helper_parse($parsingData, $options) { |
|
| 985 | + function helper_parse($parsingData, $options) { |
|
| 986 | 986 | |
| 987 | - extract($parsingData); |
|
| 987 | + extract($parsingData); |
|
| 988 | 988 | |
| 989 | - $data = array(); // parsed data |
|
| 989 | + $data = array(); // parsed data |
|
| 990 | 990 | |
| 991 | - if ( ! empty($import->options[$this->slug])){ |
|
| 991 | + if ( ! empty($import->options[$this->slug])){ |
|
| 992 | 992 | |
| 993 | - $this->logger = $parsingData['logger']; |
|
| 993 | + $this->logger = $parsingData['logger']; |
|
| 994 | 994 | |
| 995 | - $cxpath = $xpath_prefix . $import->xpath; |
|
| 995 | + $cxpath = $xpath_prefix . $import->xpath; |
|
| 996 | 996 | |
| 997 | - $tmp_files = array(); |
|
| 997 | + $tmp_files = array(); |
|
| 998 | 998 | |
| 999 | - foreach ($options[$this->slug] as $option_name => $option_value) { |
|
| 1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1001 | - if ($import->options[$this->slug][$option_name] == "xpath") { |
|
| 1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
| 1003 | - $count and $data[$option_name] = array_fill(0, $count, ""); |
|
| 1004 | - } else { |
|
| 1005 | - $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
|
| 1006 | - $tmp_files[] = $file; |
|
| 1007 | - } |
|
| 1008 | - } |
|
| 1009 | - else { |
|
| 1010 | - $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
|
| 1011 | - $tmp_files[] = $file; |
|
| 1012 | - } |
|
| 999 | + foreach ($options[$this->slug] as $option_name => $option_value) { |
|
| 1000 | + if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1001 | + if ($import->options[$this->slug][$option_name] == "xpath") { |
|
| 1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
| 1003 | + $count and $data[$option_name] = array_fill(0, $count, ""); |
|
| 1004 | + } else { |
|
| 1005 | + $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
|
| 1006 | + $tmp_files[] = $file; |
|
| 1007 | + } |
|
| 1008 | + } |
|
| 1009 | + else { |
|
| 1010 | + $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
|
| 1011 | + $tmp_files[] = $file; |
|
| 1012 | + } |
|
| 1013 | 1013 | |
| 1014 | 1014 | |
| 1015 | - } else { |
|
| 1016 | - $data[$option_name] = array_fill(0, $count, ""); |
|
| 1017 | - } |
|
| 1015 | + } else { |
|
| 1016 | + $data[$option_name] = array_fill(0, $count, ""); |
|
| 1017 | + } |
|
| 1018 | 1018 | |
| 1019 | - } |
|
| 1019 | + } |
|
| 1020 | 1020 | |
| 1021 | - foreach ($tmp_files as $file) { // remove all temporary files created |
|
| 1022 | - unlink($file); |
|
| 1023 | - } |
|
| 1021 | + foreach ($tmp_files as $file) { // remove all temporary files created |
|
| 1022 | + unlink($file); |
|
| 1023 | + } |
|
| 1024 | 1024 | |
| 1025 | - } |
|
| 1025 | + } |
|
| 1026 | 1026 | |
| 1027 | - return $data; |
|
| 1028 | - } |
|
| 1027 | + return $data; |
|
| 1028 | + } |
|
| 1029 | 1029 | |
| 1030 | 1030 | |
| 1031 | - function can_update_meta($meta_key, $import_options) { |
|
| 1031 | + function can_update_meta($meta_key, $import_options) { |
|
| 1032 | 1032 | |
| 1033 | - //echo "<pre>"; |
|
| 1034 | - //print_r($import_options['options']); |
|
| 1035 | - //echo "</pre>"; |
|
| 1033 | + //echo "<pre>"; |
|
| 1034 | + //print_r($import_options['options']); |
|
| 1035 | + //echo "</pre>"; |
|
| 1036 | 1036 | |
| 1037 | - $import_options = $import_options['options']; |
|
| 1037 | + $import_options = $import_options['options']; |
|
| 1038 | 1038 | |
| 1039 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1039 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1040 | 1040 | |
| 1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1041 | + if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1042 | 1042 | |
| 1043 | - if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
| 1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1043 | + if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
| 1044 | + if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1046 | 1046 | |
| 1047 | - return false; |
|
| 1047 | + return false; |
|
| 1048 | 1048 | |
| 1049 | - } |
|
| 1049 | + } |
|
| 1050 | 1050 | |
| 1051 | - function can_update_taxonomy($tax_name, $import_options) { |
|
| 1051 | + function can_update_taxonomy($tax_name, $import_options) { |
|
| 1052 | 1052 | |
| 1053 | - //echo "<pre>"; |
|
| 1054 | - //print_r($import_options['options']); |
|
| 1055 | - //echo "</pre>"; |
|
| 1053 | + //echo "<pre>"; |
|
| 1054 | + //print_r($import_options['options']); |
|
| 1055 | + //echo "</pre>"; |
|
| 1056 | 1056 | |
| 1057 | - $import_options = $import_options['options']; |
|
| 1057 | + $import_options = $import_options['options']; |
|
| 1058 | 1058 | |
| 1059 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1059 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1060 | 1060 | |
| 1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1061 | + if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1062 | 1062 | |
| 1063 | - if ($import_options['update_categories_logic'] == "full_update") return true; |
|
| 1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1063 | + if ($import_options['update_categories_logic'] == "full_update") return true; |
|
| 1064 | + if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | + if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1066 | 1066 | |
| 1067 | - return false; |
|
| 1067 | + return false; |
|
| 1068 | 1068 | |
| 1069 | - } |
|
| 1069 | + } |
|
| 1070 | 1070 | |
| 1071 | - function can_update_image($import_options) { |
|
| 1071 | + function can_update_image($import_options) { |
|
| 1072 | 1072 | |
| 1073 | - $import_options = $import_options['options']; |
|
| 1073 | + $import_options = $import_options['options']; |
|
| 1074 | 1074 | |
| 1075 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1075 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1076 | 1076 | |
| 1077 | - if (!$import_options['is_update_images']) return false; |
|
| 1077 | + if (!$import_options['is_update_images']) return false; |
|
| 1078 | 1078 | |
| 1079 | - if ($import_options['is_update_images']) return true; |
|
| 1079 | + if ($import_options['is_update_images']) return true; |
|
| 1080 | 1080 | |
| 1081 | - return false; |
|
| 1082 | - } |
|
| 1081 | + return false; |
|
| 1082 | + } |
|
| 1083 | 1083 | |
| 1084 | 1084 | |
| 1085 | - function admin_notice_ignore() { |
|
| 1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
| 1087 | - update_option($this->slug.'_ignore', 'true'); |
|
| 1088 | - } |
|
| 1089 | - } |
|
| 1085 | + function admin_notice_ignore() { |
|
| 1086 | + if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
| 1087 | + update_option($this->slug.'_ignore', 'true'); |
|
| 1088 | + } |
|
| 1089 | + } |
|
| 1090 | 1090 | |
| 1091 | - function display_admin_notice() { |
|
| 1091 | + function display_admin_notice() { |
|
| 1092 | 1092 | |
| 1093 | 1093 | |
| 1094 | - if ($this->notice_text) { |
|
| 1095 | - $notice_text = $this->notice_text; |
|
| 1096 | - } else { |
|
| 1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1098 | - } |
|
| 1094 | + if ($this->notice_text) { |
|
| 1095 | + $notice_text = $this->notice_text; |
|
| 1096 | + } else { |
|
| 1097 | + $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1098 | + } |
|
| 1099 | 1099 | |
| 1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
| 1100 | + if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
| 1101 | 1101 | |
| 1102 | - ?> |
|
| 1102 | + ?> |
|
| 1103 | 1103 | |
| 1104 | 1104 | <div class="error notice is-dismissible wpallimport-dismissible" style="margin-top: 10px;" rel="<?php echo sanitize_key($this->slug); ?>"> |
| 1105 | 1105 | <p><?php _e( |
| 1106 | - sprintf( |
|
| 1107 | - $notice_text, |
|
| 1108 | - '?'.$this->slug.'_ignore=0' |
|
| 1109 | - ), |
|
| 1110 | - 'rapid_addon_'.$this->slug |
|
| 1111 | - ); ?></p> |
|
| 1106 | + sprintf( |
|
| 1107 | + $notice_text, |
|
| 1108 | + '?'.$this->slug.'_ignore=0' |
|
| 1109 | + ), |
|
| 1110 | + 'rapid_addon_'.$this->slug |
|
| 1111 | + ); ?></p> |
|
| 1112 | 1112 | </div> |
| 1113 | 1113 | |
| 1114 | 1114 | <?php |
| 1115 | 1115 | |
| 1116 | - } |
|
| 1116 | + } |
|
| 1117 | 1117 | |
| 1118 | - } |
|
| 1118 | + } |
|
| 1119 | 1119 | |
| 1120 | - /* |
|
| 1120 | + /* |
|
| 1121 | 1121 | * |
| 1122 | 1122 | * $conditions - array('themes' => array('Realia'), 'plugins' => array('plugin-directory/plugin-file.php', 'plugin-directory2/plugin-file.php')) |
| 1123 | 1123 | * |
| 1124 | 1124 | */ |
| 1125 | - function admin_notice($notice_text = '', $conditions = array()) { |
|
| 1125 | + function admin_notice($notice_text = '', $conditions = array()) { |
|
| 1126 | 1126 | |
| 1127 | - $is_show_notice = false; |
|
| 1127 | + $is_show_notice = false; |
|
| 1128 | 1128 | |
| 1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 1129 | + include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 1130 | 1130 | |
| 1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 1132 | - $is_show_notice = true; |
|
| 1133 | - } |
|
| 1131 | + if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 1132 | + $is_show_notice = true; |
|
| 1133 | + } |
|
| 1134 | 1134 | |
| 1135 | - // Supported Themes |
|
| 1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
| 1135 | + // Supported Themes |
|
| 1136 | + if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
| 1137 | 1137 | |
| 1138 | - $themeInfo = wp_get_theme(); |
|
| 1139 | - $parentInfo = $themeInfo->parent(); |
|
| 1140 | - $currentTheme = $themeInfo->get('Name'); |
|
| 1138 | + $themeInfo = wp_get_theme(); |
|
| 1139 | + $parentInfo = $themeInfo->parent(); |
|
| 1140 | + $currentTheme = $themeInfo->get('Name'); |
|
| 1141 | 1141 | |
| 1142 | - $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
|
| 1142 | + $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
|
| 1143 | 1143 | |
| 1144 | - if ( $is_show_notice and $parentInfo ){ |
|
| 1145 | - $parent_theme = $parentInfo->get('Name'); |
|
| 1146 | - $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
|
| 1147 | - } |
|
| 1144 | + if ( $is_show_notice and $parentInfo ){ |
|
| 1145 | + $parent_theme = $parentInfo->get('Name'); |
|
| 1146 | + $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
|
| 1147 | + } |
|
| 1148 | 1148 | |
| 1149 | - } |
|
| 1149 | + } |
|
| 1150 | 1150 | |
| 1151 | - // Required Plugins |
|
| 1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
| 1151 | + // Required Plugins |
|
| 1152 | + if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
| 1153 | 1153 | |
| 1154 | - $requires_counter = 0; |
|
| 1155 | - foreach ($conditions['plugins'] as $plugin) { |
|
| 1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1157 | - } |
|
| 1154 | + $requires_counter = 0; |
|
| 1155 | + foreach ($conditions['plugins'] as $plugin) { |
|
| 1156 | + if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1157 | + } |
|
| 1158 | 1158 | |
| 1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
| 1160 | - $is_show_notice = true; |
|
| 1161 | - } |
|
| 1159 | + if ($requires_counter != count($conditions['plugins'])){ |
|
| 1160 | + $is_show_notice = true; |
|
| 1161 | + } |
|
| 1162 | 1162 | |
| 1163 | - } |
|
| 1163 | + } |
|
| 1164 | 1164 | |
| 1165 | - if ( $is_show_notice ){ |
|
| 1165 | + if ( $is_show_notice ){ |
|
| 1166 | 1166 | |
| 1167 | - if ( $notice_text != '' ) { |
|
| 1168 | - $this->notice_text = $notice_text; |
|
| 1169 | - } |
|
| 1167 | + if ( $notice_text != '' ) { |
|
| 1168 | + $this->notice_text = $notice_text; |
|
| 1169 | + } |
|
| 1170 | 1170 | |
| 1171 | - add_action('admin_notices', array($this, 'display_admin_notice')); |
|
| 1172 | - } |
|
| 1171 | + add_action('admin_notices', array($this, 'display_admin_notice')); |
|
| 1172 | + } |
|
| 1173 | 1173 | |
| 1174 | - } |
|
| 1174 | + } |
|
| 1175 | 1175 | |
| 1176 | - function log( $m = false){ |
|
| 1176 | + function log( $m = false){ |
|
| 1177 | 1177 | |
| 1178 | - $m and $this->logger and call_user_func($this->logger, $m); |
|
| 1178 | + $m and $this->logger and call_user_func($this->logger, $m); |
|
| 1179 | 1179 | |
| 1180 | 1180 | } |
| 1181 | 1181 | |
@@ -1293,5 +1293,5 @@ discard block |
||
| 1293 | 1293 | } |
| 1294 | 1294 | return $image; |
| 1295 | 1295 | } |
| 1296 | - } |
|
| 1296 | + } |
|
| 1297 | 1297 | } |
| 1298 | 1298 | \ No newline at end of file |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | function __construct($name, $slug) { |
| 61 | 61 | $this->name = $name; |
| 62 | 62 | $this->slug = $slug; |
| 63 | - if (!empty($_GET['id'])){ |
|
| 63 | + if (!empty($_GET['id'])) { |
|
| 64 | 64 | $this->isWizard = false; |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | function is_active_addon($post_type = null) { |
| 77 | 77 | |
| 78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 78 | + if (!class_exists('PMXI_Plugin')) { |
|
| 79 | 79 | return false; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - if ($addon_active){ |
|
| 90 | + if ($addon_active) { |
|
| 91 | 91 | |
| 92 | 92 | $current_theme = wp_get_theme(); |
| 93 | 93 | |
@@ -97,18 +97,18 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
| 99 | 99 | |
| 100 | - if ( ! $addon_active and $parent_theme ){ |
|
| 100 | + if (!$addon_active and $parent_theme) { |
|
| 101 | 101 | $parent_theme_name = $parent_theme->get('Name'); |
| 102 | 102 | $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
| 103 | 103 | |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
| 106 | + if ($addon_active and !empty($this->active_plugins)) { |
|
| 107 | 107 | |
| 108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 108 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 109 | 109 | |
| 110 | 110 | foreach ($this->active_plugins as $plugin) { |
| 111 | - if ( ! is_plugin_active($plugin) ) { |
|
| 111 | + if (!is_plugin_active($plugin)) { |
|
| 112 | 112 | $addon_active = false; |
| 113 | 113 | break; |
| 114 | 114 | } |
@@ -137,9 +137,9 @@ discard block |
||
| 137 | 137 | $this->when_to_run = "always"; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 140 | + @$this->active_post_types = (!empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
| 141 | + @$this->active_themes = (!empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
| 142 | + @$this->active_plugins = (!empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
| 143 | 143 | |
| 144 | 144 | add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
| 145 | 145 | add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
@@ -148,15 +148,15 @@ discard block |
||
| 148 | 148 | add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
| 149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
| 150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
| 151 | - add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
|
| 152 | - add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
|
| 153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 151 | + add_filter('pmxi_post_list_order', array($this, 'sort_post_types'), 10, 1); |
|
| 152 | + add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1); |
|
| 153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
| 154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | function parse($data) { |
| 158 | 158 | |
| 159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 159 | + if (!$this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 160 | 160 | |
| 161 | 161 | $parsedData = $this->helper_parse($data, $this->options_array()); |
| 162 | 162 | return $parsedData; |
@@ -166,11 +166,11 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
| 168 | 168 | |
| 169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
| 170 | 170 | |
| 171 | 171 | $this->fields[$field_slug] = $field; |
| 172 | 172 | |
| 173 | - if ( ! empty($enum_values) ){ |
|
| 173 | + if (!empty($enum_values)) { |
|
| 174 | 174 | foreach ($enum_values as $key => $value) { |
| 175 | 175 | if (is_array($value)) |
| 176 | 176 | { |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | else |
| 182 | 182 | { |
| 183 | 183 | foreach ($value as $n => $param) { |
| 184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
| 184 | + if (is_array($param) and !empty($this->fields[$param['slug']])) { |
|
| 185 | 185 | $this->fields[$param['slug']]['is_sub_field'] = true; |
| 186 | 186 | } |
| 187 | 187 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | |
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - function add_acf_field($field){ |
|
| 197 | + function add_acf_field($field) { |
|
| 198 | 198 | $this->fields[$field->post_name] = array( |
| 199 | 199 | 'type' => 'acf', |
| 200 | 200 | 'field_obj' => $field |
@@ -203,13 +203,13 @@ discard block |
||
| 203 | 203 | |
| 204 | 204 | private $acfGroups = array(); |
| 205 | 205 | |
| 206 | - function use_acf_group($acf_group){ |
|
| 206 | + function use_acf_group($acf_group) { |
|
| 207 | 207 | $this->add_text( |
| 208 | 208 | '<div class="postbox acf_postbox default acf_signle_group rad4"> |
| 209 | - <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
|
| 209 | + <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'] . '</span></h3> |
|
| 210 | 210 | <div class="inside">'); |
| 211 | 211 | $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
| 212 | - if (!empty($acf_fields)){ |
|
| 212 | + if (!empty($acf_fields)) { |
|
| 213 | 213 | foreach ($acf_fields as $field) { |
| 214 | 214 | $this->add_acf_field($field); |
| 215 | 215 | } |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - function acf_is_show_group($is_show, $acf_group){ |
|
| 222 | + function acf_is_show_group($is_show, $acf_group) { |
|
| 223 | 223 | return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
| 224 | 224 | } |
| 225 | 225 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | * @param string $default_value - default option value |
| 232 | 232 | * |
| 233 | 233 | */ |
| 234 | - function add_option($slug, $default_value = ''){ |
|
| 234 | + function add_option($slug, $default_value = '') { |
|
| 235 | 235 | $this->options[$slug] = $default_value; |
| 236 | 236 | } |
| 237 | 237 | |
@@ -239,12 +239,12 @@ discard block |
||
| 239 | 239 | |
| 240 | 240 | $options_list = array(); |
| 241 | 241 | |
| 242 | - if ( ! empty( $this->fields ) ) { |
|
| 242 | + if (!empty($this->fields)) { |
|
| 243 | 243 | |
| 244 | 244 | foreach ($this->fields as $field_slug => $field_params) { |
| 245 | 245 | if (in_array($field_params['type'], array('title', 'plain_text', 'acf'))) continue; |
| 246 | 246 | $default_value = ''; |
| 247 | - if (!empty($field_params['enum_values'])){ |
|
| 247 | + if (!empty($field_params['enum_values'])) { |
|
| 248 | 248 | foreach ($field_params['enum_values'] as $key => $value) { |
| 249 | 249 | $default_value = $key; |
| 250 | 250 | break; |
@@ -255,14 +255,14 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - if ( ! empty($this->options) ){ |
|
| 258 | + if (!empty($this->options)) { |
|
| 259 | 259 | foreach ($this->options as $slug => $value) { |
| 260 | 260 | $options_arr[$slug] = $value; |
| 261 | 261 | } |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | $options_arr[$this->slug] = $options_list; |
| 265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
| 265 | + $options_arr['rapid_addon'] = plugin_basename(__FILE__); |
|
| 266 | 266 | |
| 267 | 267 | return $options_arr; |
| 268 | 268 | |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | - function wpai_api_post_saved($functions){ |
|
| 298 | + function wpai_api_post_saved($functions) { |
|
| 299 | 299 | $functions[$this->slug] = array($this, 'post_saved'); |
| 300 | 300 | return $functions; |
| 301 | 301 | } |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | - function post_saved( $importData ){ |
|
| 311 | + function post_saved($importData) { |
|
| 312 | 312 | |
| 313 | 313 | if (is_callable($this->post_saved_function)) |
| 314 | 314 | call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
@@ -327,14 +327,14 @@ discard block |
||
| 327 | 327 | // print_r($import_options); |
| 328 | 328 | // echo "</pre>"; |
| 329 | 329 | |
| 330 | - if ( ! empty($parsedData) ) { |
|
| 330 | + if (!empty($parsedData)) { |
|
| 331 | 331 | |
| 332 | 332 | $this->logger = $importData['logger']; |
| 333 | 333 | |
| 334 | 334 | $post_id = $importData['pid']; |
| 335 | 335 | $index = $importData['i']; |
| 336 | 336 | $data = array(); |
| 337 | - if (!empty($this->fields)){ |
|
| 337 | + if (!empty($this->fields)) { |
|
| 338 | 338 | foreach ($this->fields as $field_slug => $field_params) { |
| 339 | 339 | if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
| 340 | 340 | switch ($field_params['type']) { |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | |
| 346 | 346 | $image_url_or_path = $parsedData[$field_slug][$index]; |
| 347 | 347 | |
| 348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 348 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
| 349 | 349 | continue 2; |
| 350 | 350 | } |
| 351 | 351 | |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | |
| 366 | 366 | $image_url_or_path = $parsedData[$field_slug][$index]; |
| 367 | 367 | |
| 368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
| 368 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
| 369 | 369 | continue 2; |
| 370 | 370 | } |
| 371 | 371 | |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | |
| 394 | 394 | if (!empty($mapping_rules) and is_array($mapping_rules)) { |
| 395 | 395 | foreach ($mapping_rules as $rule_number => $map_to) { |
| 396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
| 396 | + if (isset($map_to[trim($data[$field_slug])])) { |
|
| 397 | 397 | $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
| 398 | 398 | break; |
| 399 | 399 | } |
@@ -442,14 +442,14 @@ discard block |
||
| 442 | 442 | |
| 443 | 443 | echo $this->helper_metabox_bottom(); |
| 444 | 444 | |
| 445 | - if ( ! empty($this->image_sections) ){ |
|
| 445 | + if (!empty($this->image_sections)) { |
|
| 446 | 446 | $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
| 447 | 447 | foreach ($this->image_sections as $k => $section) { |
| 448 | 448 | $section_options = array(); |
| 449 | 449 | foreach ($this->image_options as $slug => $value) { |
| 450 | 450 | $section_options[$section['slug'] . $slug] = $value; |
| 451 | 451 | } |
| 452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
| 452 | + if (!$is_images_section_enabled and !$k) { |
|
| 453 | 453 | $section_options[$section['slug'] . 'is_featured'] = 1; |
| 454 | 454 | } |
| 455 | 455 | PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
@@ -458,7 +458,7 @@ discard block |
||
| 458 | 458 | |
| 459 | 459 | } |
| 460 | 460 | |
| 461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
| 461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false) { |
|
| 462 | 462 | |
| 463 | 463 | if (!isset($current_values[$this->slug][$field_slug])) { |
| 464 | 464 | $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
@@ -471,8 +471,8 @@ discard block |
||
| 471 | 471 | $field_params['name'], |
| 472 | 472 | array( |
| 473 | 473 | 'tooltip' => $field_params['tooltip'], |
| 474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 474 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 475 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 476 | 476 | ) |
| 477 | 477 | ); |
| 478 | 478 | |
@@ -483,8 +483,8 @@ discard block |
||
| 483 | 483 | $field_params['name'], |
| 484 | 484 | array( |
| 485 | 485 | 'tooltip' => $field_params['tooltip'], |
| 486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 486 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 487 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 488 | 488 | ) |
| 489 | 489 | ); |
| 490 | 490 | |
@@ -495,8 +495,8 @@ discard block |
||
| 495 | 495 | $field_params['name'], |
| 496 | 496 | array( |
| 497 | 497 | 'tooltip' => $field_params['tooltip'], |
| 498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 498 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 499 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
| 500 | 500 | ) |
| 501 | 501 | ); |
| 502 | 502 | |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | $field_params['name'], |
| 510 | 510 | array( |
| 511 | 511 | 'tooltip' => $field_params['tooltip'], |
| 512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 512 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 513 | 513 | 'field_value' => $current_values[$this->slug][$field_slug], |
| 514 | 514 | 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
| 515 | 515 | 'field_key' => $field_slug, |
@@ -528,7 +528,7 @@ discard block |
||
| 528 | 528 | $field_params['name'], |
| 529 | 529 | array( |
| 530 | 530 | 'tooltip' => $field_params['tooltip'], |
| 531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 531 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 532 | 532 | 'field_value' => $current_values[$this->slug][$field_slug], |
| 533 | 533 | 'enum_values' => $field_params['enum_values'], |
| 534 | 534 | 'mapping' => true, |
@@ -540,14 +540,14 @@ discard block |
||
| 540 | 540 | ) |
| 541 | 541 | ); |
| 542 | 542 | |
| 543 | - } else if($field_params['type'] == 'accordion') { |
|
| 543 | + } else if ($field_params['type'] == 'accordion') { |
|
| 544 | 544 | |
| 545 | 545 | PMXI_API::add_field( |
| 546 | 546 | 'accordion', |
| 547 | 547 | $field_params['name'], |
| 548 | 548 | array( |
| 549 | 549 | 'tooltip' => $field_params['tooltip'], |
| 550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
| 550 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
| 551 | 551 | 'field_key' => $field_slug, |
| 552 | 552 | 'addon_prefix' => $this->slug, |
| 553 | 553 | 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | ) |
| 556 | 556 | ); |
| 557 | 557 | |
| 558 | - } else if($field_params['type'] == 'acf') { |
|
| 558 | + } else if ($field_params['type'] == 'acf') { |
|
| 559 | 559 | $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
| 560 | 560 | $fieldData['ID'] = $field_params['field_obj']->ID; |
| 561 | 561 | $fieldData['id'] = $field_params['field_obj']->ID; |
@@ -563,19 +563,19 @@ discard block |
||
| 563 | 563 | $fieldData['key'] = $field_params['field_obj']->post_name; |
| 564 | 564 | if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
| 565 | 565 | if (function_exists('pmai_render_field')) { |
| 566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
| 566 | + echo pmai_render_field($fieldData, (!empty($current_values)) ? $current_values : array()); |
|
| 567 | 567 | } |
| 568 | - } else if($field_params['type'] == 'title'){ |
|
| 568 | + } else if ($field_params['type'] == 'title') { |
|
| 569 | 569 | ?> |
| 570 | - <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
| 570 | + <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if (!empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
| 571 | 571 | <?php |
| 572 | 572 | |
| 573 | - } else if($field_params['type'] == 'plain_text'){ |
|
| 573 | + } else if ($field_params['type'] == 'plain_text') { |
|
| 574 | 574 | if ($field_params['is_html']): |
| 575 | 575 | echo $field_params['name']; |
| 576 | 576 | else: |
| 577 | 577 | ?> |
| 578 | - <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
|
| 578 | + <p style="margin: 0 0 12px 0;"><?php echo $field_params['name']; ?></p> |
|
| 579 | 579 | <?php |
| 580 | 580 | endif; |
| 581 | 581 | } |
@@ -587,19 +587,19 @@ discard block |
||
| 587 | 587 | * Helper function for nested radio fields |
| 588 | 588 | * |
| 589 | 589 | */ |
| 590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
| 590 | + function get_sub_fields($field_params, $field_slug, $current_values) { |
|
| 591 | 591 | $sub_fields = array(); |
| 592 | - if ( ! empty($field_params['enum_values']) ){ |
|
| 592 | + if (!empty($field_params['enum_values'])) { |
|
| 593 | 593 | foreach ($field_params['enum_values'] as $key => $value) { |
| 594 | 594 | $sub_fields[$key] = array(); |
| 595 | - if (is_array($value)){ |
|
| 596 | - if ($field_params['type'] == 'accordion'){ |
|
| 595 | + if (is_array($value)) { |
|
| 596 | + if ($field_params['type'] == 'accordion') { |
|
| 597 | 597 | $sub_fields[$key][] = $this->convert_field($value, $current_values); |
| 598 | 598 | } |
| 599 | 599 | else |
| 600 | 600 | { |
| 601 | 601 | foreach ($value as $k => $sub_field) { |
| 602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
| 602 | + if (is_array($sub_field) and !empty($this->fields[$sub_field['slug']])) |
|
| 603 | 603 | { |
| 604 | 604 | $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
| 605 | 605 | } |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | return $sub_fields; |
| 612 | 612 | } |
| 613 | 613 | |
| 614 | - function convert_field($sub_field, $current_values){ |
|
| 614 | + function convert_field($sub_field, $current_values) { |
|
| 615 | 615 | $field = array(); |
| 616 | 616 | if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
| 617 | 617 | $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
@@ -623,7 +623,7 @@ discard block |
||
| 623 | 623 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 624 | 624 | 'params' => array( |
| 625 | 625 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 626 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 627 | 627 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
| 628 | 628 | 'is_main_field' => $sub_field['is_main_field'] |
| 629 | 629 | ) |
@@ -635,7 +635,7 @@ discard block |
||
| 635 | 635 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 636 | 636 | 'params' => array( |
| 637 | 637 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 638 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 639 | 639 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
| 640 | 640 | 'is_main_field' => $sub_field['is_main_field'] |
| 641 | 641 | ) |
@@ -647,7 +647,7 @@ discard block |
||
| 647 | 647 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 648 | 648 | 'params' => array( |
| 649 | 649 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 650 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 651 | 651 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
| 652 | 652 | 'is_main_field' => $sub_field['is_main_field'] |
| 653 | 653 | ) |
@@ -659,7 +659,7 @@ discard block |
||
| 659 | 659 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 660 | 660 | 'params' => array( |
| 661 | 661 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 662 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 663 | 663 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
| 664 | 664 | 'download_image' => null, |
| 665 | 665 | 'field_key' => $sub_field['slug'], |
@@ -668,7 +668,7 @@ discard block |
||
| 668 | 668 | ) |
| 669 | 669 | ); |
| 670 | 670 | |
| 671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 671 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
| 672 | 672 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
| 673 | 673 | } |
| 674 | 674 | break; |
@@ -678,7 +678,7 @@ discard block |
||
| 678 | 678 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 679 | 679 | 'params' => array( |
| 680 | 680 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 681 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 682 | 682 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
| 683 | 683 | 'download_image' => null, |
| 684 | 684 | 'field_key' => $sub_field['slug'], |
@@ -687,7 +687,7 @@ discard block |
||
| 687 | 687 | ) |
| 688 | 688 | ); |
| 689 | 689 | |
| 690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
| 690 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
| 691 | 691 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
| 692 | 692 | } |
| 693 | 693 | |
@@ -698,7 +698,7 @@ discard block |
||
| 698 | 698 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 699 | 699 | 'params' => array( |
| 700 | 700 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 701 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 702 | 702 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
| 703 | 703 | 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
| 704 | 704 | 'mapping' => true, |
@@ -717,7 +717,7 @@ discard block |
||
| 717 | 717 | 'label' => $this->fields[$sub_field['slug']]['name'], |
| 718 | 718 | 'params' => array( |
| 719 | 719 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
| 720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
| 720 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
| 721 | 721 | 'field_key' => $sub_field['slug'], |
| 722 | 722 | 'addon_prefix' => $this->slug, |
| 723 | 723 | 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
@@ -738,12 +738,12 @@ discard block |
||
| 738 | 738 | * |
| 739 | 739 | * |
| 740 | 740 | */ |
| 741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
| 741 | + function add_options($main_field = false, $title = '', $fields = array()) { |
|
| 742 | 742 | |
| 743 | - if ( ! empty($fields) ) |
|
| 743 | + if (!empty($fields)) |
|
| 744 | 744 | { |
| 745 | 745 | |
| 746 | - if ($main_field){ |
|
| 746 | + if ($main_field) { |
|
| 747 | 747 | |
| 748 | 748 | $main_field['is_main_field'] = true; |
| 749 | 749 | $fields[] = $main_field; |
@@ -756,7 +756,7 @@ discard block |
||
| 756 | 756 | |
| 757 | 757 | } |
| 758 | 758 | |
| 759 | - function add_title($title = '', $tooltip = ''){ |
|
| 759 | + function add_title($title = '', $tooltip = '') { |
|
| 760 | 760 | |
| 761 | 761 | if (empty($title)) return; |
| 762 | 762 | |
@@ -764,7 +764,7 @@ discard block |
||
| 764 | 764 | |
| 765 | 765 | } |
| 766 | 766 | |
| 767 | - function add_text($text = '', $is_html = false){ |
|
| 767 | + function add_text($text = '', $is_html = false) { |
|
| 768 | 768 | |
| 769 | 769 | if (empty($text)) return; |
| 770 | 770 | |
@@ -862,10 +862,10 @@ discard block |
||
| 862 | 862 | margin: 45px 0 15px 0; |
| 863 | 863 | } |
| 864 | 864 | </style> |
| 865 | - <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug.' closed"> |
|
| 865 | + <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug . ' closed"> |
|
| 866 | 866 | <div class="wpallimport-content-section"> |
| 867 | 867 | <div class="wpallimport-collapsed-header"> |
| 868 | - <h3>'.__($name,'pmxi_plugin').'</h3> |
|
| 868 | + <h3>'.__($name, 'pmxi_plugin') . '</h3> |
|
| 869 | 869 | </div> |
| 870 | 870 | <div class="wpallimport-collapsed-content" style="padding: 0;"> |
| 871 | 871 | <div class="wpallimport-collapsed-content-inner"> |
@@ -891,8 +891,8 @@ discard block |
||
| 891 | 891 | * simply add an additional section for attachments |
| 892 | 892 | * |
| 893 | 893 | */ |
| 894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
| 895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
| 894 | + function import_files($slug, $title, $callback = NULL) { |
|
| 895 | + $this->import_images($slug, $title, 'files', $callback); |
|
| 896 | 896 | } |
| 897 | 897 | |
| 898 | 898 | /** |
@@ -900,9 +900,9 @@ discard block |
||
| 900 | 900 | * simply add an additional section |
| 901 | 901 | * |
| 902 | 902 | */ |
| 903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
| 903 | + function import_images($slug, $title, $type = 'images', $callback = NULL) { |
|
| 904 | 904 | |
| 905 | - if ( empty($title) or empty($slug) ) return; |
|
| 905 | + if (empty($title) or empty($slug)) return; |
|
| 906 | 906 | |
| 907 | 907 | if (is_array($slug)) { |
| 908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
@@ -920,17 +920,17 @@ discard block |
||
| 920 | 920 | $this->add_option($section_slug . $option_slug, $value); |
| 921 | 921 | } |
| 922 | 922 | |
| 923 | - if (count($this->image_sections) > 1){ |
|
| 923 | + if (count($this->image_sections) > 1) { |
|
| 924 | 924 | add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
| 928 | 928 | |
| 929 | 929 | if ($callback && is_callable($callback)) { |
| 930 | - add_action( $section_slug, $callback, 10, 4); |
|
| 930 | + add_action($section_slug, $callback, 10, 4); |
|
| 931 | 931 | } else { |
| 932 | 932 | if (function_exists($slug)) { |
| 933 | - add_action( $section_slug, $slug, 10, 4); |
|
| 933 | + add_action($section_slug, $slug, 10, 4); |
|
| 934 | 934 | } |
| 935 | 935 | } |
| 936 | 936 | } |
@@ -939,7 +939,7 @@ discard block |
||
| 939 | 939 | * filter to allow import images for free edition of WP All Import |
| 940 | 940 | * |
| 941 | 941 | */ |
| 942 | - function is_allow_import_images($is_allow, $post_type){ |
|
| 942 | + function is_allow_import_images($is_allow, $post_type) { |
|
| 943 | 943 | return ($this->is_active_addon($post_type)) ? true : $is_allow; |
| 944 | 944 | } |
| 945 | 945 | |
@@ -948,8 +948,8 @@ discard block |
||
| 948 | 948 | * filter to control additional images sections |
| 949 | 949 | * |
| 950 | 950 | */ |
| 951 | - function additional_sections($sections){ |
|
| 952 | - if ( ! empty($this->image_sections) ){ |
|
| 951 | + function additional_sections($sections) { |
|
| 952 | + if (!empty($this->image_sections)) { |
|
| 953 | 953 | foreach ($this->image_sections as $add_section) { |
| 954 | 954 | $sections[] = $add_section; |
| 955 | 955 | } |
@@ -962,7 +962,7 @@ discard block |
||
| 962 | 962 | * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
| 963 | 963 | * |
| 964 | 964 | */ |
| 965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
| 965 | + function filter_is_show_add_new_images($is_show, $post_type) { |
|
| 966 | 966 | return ($this->is_active_addon($post_type)) ? false : $is_show; |
| 967 | 967 | } |
| 968 | 968 | |
@@ -971,12 +971,12 @@ discard block |
||
| 971 | 971 | * disable the default images section |
| 972 | 972 | * |
| 973 | 973 | */ |
| 974 | - function disable_default_images($post_type = false){ |
|
| 974 | + function disable_default_images($post_type = false) { |
|
| 975 | 975 | |
| 976 | 976 | add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
| 977 | 977 | |
| 978 | 978 | } |
| 979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
| 979 | + function is_enable_default_images_section($is_enabled, $post_type) { |
|
| 980 | 980 | |
| 981 | 981 | return ($this->is_active_addon($post_type)) ? false : true; |
| 982 | 982 | |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | |
| 989 | 989 | $data = array(); // parsed data |
| 990 | 990 | |
| 991 | - if ( ! empty($import->options[$this->slug])){ |
|
| 991 | + if (!empty($import->options[$this->slug])) { |
|
| 992 | 992 | |
| 993 | 993 | $this->logger = $parsingData['logger']; |
| 994 | 994 | |
@@ -997,9 +997,9 @@ discard block |
||
| 997 | 997 | $tmp_files = array(); |
| 998 | 998 | |
| 999 | 999 | foreach ($options[$this->slug] as $option_name => $option_value) { |
| 1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1000 | + if (isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
| 1001 | 1001 | if ($import->options[$this->slug][$option_name] == "xpath") { |
| 1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
| 1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == "") { |
|
| 1003 | 1003 | $count and $data[$option_name] = array_fill(0, $count, ""); |
| 1004 | 1004 | } else { |
| 1005 | 1005 | $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
@@ -1038,11 +1038,11 @@ discard block |
||
| 1038 | 1038 | |
| 1039 | 1039 | if ($import_options['update_all_data'] == 'yes') return true; |
| 1040 | 1040 | |
| 1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1041 | + if (!$import_options['is_update_custom_fields']) return false; |
|
| 1042 | 1042 | |
| 1043 | 1043 | if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
| 1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1044 | + if ($import_options['update_custom_fields_logic'] == "only" and !empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list'])) return true; |
|
| 1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and (empty($import_options['custom_fields_list']) or !in_array($meta_key, $import_options['custom_fields_list']))) return true; |
|
| 1046 | 1046 | |
| 1047 | 1047 | return false; |
| 1048 | 1048 | |
@@ -1058,11 +1058,11 @@ discard block |
||
| 1058 | 1058 | |
| 1059 | 1059 | if ($import_options['update_all_data'] == 'yes') return true; |
| 1060 | 1060 | |
| 1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1061 | + if (!$import_options['is_update_categories']) return false; |
|
| 1062 | 1062 | |
| 1063 | 1063 | if ($import_options['update_categories_logic'] == "full_update") return true; |
| 1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1064 | + if ($import_options['update_categories_logic'] == "only" and !empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list'])) return true; |
|
| 1065 | + if ($import_options['update_categories_logic'] == "all_except" and (empty($import_options['taxonomies_list']) or !in_array($tax_name, $import_options['taxonomies_list']))) return true; |
|
| 1066 | 1066 | |
| 1067 | 1067 | return false; |
| 1068 | 1068 | |
@@ -1083,8 +1083,8 @@ discard block |
||
| 1083 | 1083 | |
| 1084 | 1084 | |
| 1085 | 1085 | function admin_notice_ignore() { |
| 1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
| 1087 | - update_option($this->slug.'_ignore', 'true'); |
|
| 1086 | + if (isset($_GET[$this->slug . '_ignore']) && '0' == $_GET[$this->slug . '_ignore']) { |
|
| 1087 | + update_option($this->slug . '_ignore', 'true'); |
|
| 1088 | 1088 | } |
| 1089 | 1089 | } |
| 1090 | 1090 | |
@@ -1094,10 +1094,10 @@ discard block |
||
| 1094 | 1094 | if ($this->notice_text) { |
| 1095 | 1095 | $notice_text = $this->notice_text; |
| 1096 | 1096 | } else { |
| 1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1097 | + $notice_text = $this->name . ' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
| 1098 | 1098 | } |
| 1099 | 1099 | |
| 1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
| 1100 | + if (!get_option(sanitize_key($this->slug) . '_notice_ignore')) { |
|
| 1101 | 1101 | |
| 1102 | 1102 | ?> |
| 1103 | 1103 | |
@@ -1105,9 +1105,9 @@ discard block |
||
| 1105 | 1105 | <p><?php _e( |
| 1106 | 1106 | sprintf( |
| 1107 | 1107 | $notice_text, |
| 1108 | - '?'.$this->slug.'_ignore=0' |
|
| 1108 | + '?' . $this->slug . '_ignore=0' |
|
| 1109 | 1109 | ), |
| 1110 | - 'rapid_addon_'.$this->slug |
|
| 1110 | + 'rapid_addon_' . $this->slug |
|
| 1111 | 1111 | ); ?></p> |
| 1112 | 1112 | </div> |
| 1113 | 1113 | |
@@ -1126,14 +1126,14 @@ discard block |
||
| 1126 | 1126 | |
| 1127 | 1127 | $is_show_notice = false; |
| 1128 | 1128 | |
| 1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
| 1129 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 1130 | 1130 | |
| 1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
| 1131 | + if (!class_exists('PMXI_Plugin')) { |
|
| 1132 | 1132 | $is_show_notice = true; |
| 1133 | 1133 | } |
| 1134 | 1134 | |
| 1135 | 1135 | // Supported Themes |
| 1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
| 1136 | + if (!$is_show_notice and !empty($conditions['themes'])) { |
|
| 1137 | 1137 | |
| 1138 | 1138 | $themeInfo = wp_get_theme(); |
| 1139 | 1139 | $parentInfo = $themeInfo->parent(); |
@@ -1141,7 +1141,7 @@ discard block |
||
| 1141 | 1141 | |
| 1142 | 1142 | $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
| 1143 | 1143 | |
| 1144 | - if ( $is_show_notice and $parentInfo ){ |
|
| 1144 | + if ($is_show_notice and $parentInfo) { |
|
| 1145 | 1145 | $parent_theme = $parentInfo->get('Name'); |
| 1146 | 1146 | $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
| 1147 | 1147 | } |
@@ -1149,22 +1149,22 @@ discard block |
||
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | 1151 | // Required Plugins |
| 1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
| 1152 | + if (!$is_show_notice and !empty($conditions['plugins'])) { |
|
| 1153 | 1153 | |
| 1154 | 1154 | $requires_counter = 0; |
| 1155 | 1155 | foreach ($conditions['plugins'] as $plugin) { |
| 1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1156 | + if (is_plugin_active($plugin)) $requires_counter++; |
|
| 1157 | 1157 | } |
| 1158 | 1158 | |
| 1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
| 1159 | + if ($requires_counter != count($conditions['plugins'])) { |
|
| 1160 | 1160 | $is_show_notice = true; |
| 1161 | 1161 | } |
| 1162 | 1162 | |
| 1163 | 1163 | } |
| 1164 | 1164 | |
| 1165 | - if ( $is_show_notice ){ |
|
| 1165 | + if ($is_show_notice) { |
|
| 1166 | 1166 | |
| 1167 | - if ( $notice_text != '' ) { |
|
| 1167 | + if ($notice_text != '') { |
|
| 1168 | 1168 | $this->notice_text = $notice_text; |
| 1169 | 1169 | } |
| 1170 | 1170 | |
@@ -1173,34 +1173,34 @@ discard block |
||
| 1173 | 1173 | |
| 1174 | 1174 | } |
| 1175 | 1175 | |
| 1176 | - function log( $m = false){ |
|
| 1176 | + function log($m = false) { |
|
| 1177 | 1177 | |
| 1178 | 1178 | $m and $this->logger and call_user_func($this->logger, $m); |
| 1179 | 1179 | |
| 1180 | 1180 | } |
| 1181 | 1181 | |
| 1182 | - public function remove_post_type( $type = '' ) { |
|
| 1183 | - if ( ! empty( $type ) ) { |
|
| 1184 | - $this->add_option( 'post_types_to_remove', $type ); |
|
| 1182 | + public function remove_post_type($type = '') { |
|
| 1183 | + if (!empty($type)) { |
|
| 1184 | + $this->add_option('post_types_to_remove', $type); |
|
| 1185 | 1185 | } |
| 1186 | 1186 | } |
| 1187 | 1187 | |
| 1188 | - public function filter_post_types( $custom_types = array(), $custom_type = '' ) { |
|
| 1188 | + public function filter_post_types($custom_types = array(), $custom_type = '') { |
|
| 1189 | 1189 | $options = $this->options_array(); |
| 1190 | 1190 | $option_key = 'post_types_to_remove'; |
| 1191 | 1191 | |
| 1192 | - if ( array_key_exists( $option_key, $options ) ) { |
|
| 1193 | - $type = $options[ $option_key ]; |
|
| 1192 | + if (array_key_exists($option_key, $options)) { |
|
| 1193 | + $type = $options[$option_key]; |
|
| 1194 | 1194 | |
| 1195 | - if ( ! empty( $type ) ) { |
|
| 1196 | - if ( ! is_array( $type ) ) { |
|
| 1197 | - if ( array_key_exists( $type, $custom_types ) ) { |
|
| 1198 | - unset( $custom_types[ $type ] ); |
|
| 1195 | + if (!empty($type)) { |
|
| 1196 | + if (!is_array($type)) { |
|
| 1197 | + if (array_key_exists($type, $custom_types)) { |
|
| 1198 | + unset($custom_types[$type]); |
|
| 1199 | 1199 | } |
| 1200 | 1200 | } else { |
| 1201 | - foreach ( $type as $key => $post_type ) { |
|
| 1202 | - if ( array_key_exists( $post_type, $custom_types ) ) { |
|
| 1203 | - unset( $custom_types[ $post_type ] ); |
|
| 1201 | + foreach ($type as $key => $post_type) { |
|
| 1202 | + if (array_key_exists($post_type, $custom_types)) { |
|
| 1203 | + unset($custom_types[$post_type]); |
|
| 1204 | 1204 | } |
| 1205 | 1205 | } |
| 1206 | 1206 | } |
@@ -1209,26 +1209,26 @@ discard block |
||
| 1209 | 1209 | return $custom_types; |
| 1210 | 1210 | } |
| 1211 | 1211 | |
| 1212 | - public function sort_post_types( array $order ) { |
|
| 1212 | + public function sort_post_types(array $order) { |
|
| 1213 | 1213 | $options = $this->options_array(); |
| 1214 | 1214 | $option_key = 'post_type_move'; |
| 1215 | 1215 | |
| 1216 | - if ( array_key_exists( $option_key, $options ) ) { |
|
| 1217 | - $move_rules = maybe_unserialize( $options[ $option_key ] ); |
|
| 1216 | + if (array_key_exists($option_key, $options)) { |
|
| 1217 | + $move_rules = maybe_unserialize($options[$option_key]); |
|
| 1218 | 1218 | |
| 1219 | - foreach ( $move_rules as $rule ) { |
|
| 1219 | + foreach ($move_rules as $rule) { |
|
| 1220 | 1220 | $move_this = $rule['move_this']; |
| 1221 | 1221 | $move_to = $rule['move_to']; |
| 1222 | - if ( $move_to > count( $order ) ) { |
|
| 1223 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
| 1224 | - unset( $order[ $rm_key ] ); |
|
| 1222 | + if ($move_to > count($order)) { |
|
| 1223 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
| 1224 | + unset($order[$rm_key]); |
|
| 1225 | 1225 | } |
| 1226 | - array_push( $order, $move_this ); |
|
| 1226 | + array_push($order, $move_this); |
|
| 1227 | 1227 | } else { |
| 1228 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
| 1229 | - unset( $order[ $rm_key ] ); |
|
| 1228 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
| 1229 | + unset($order[$rm_key]); |
|
| 1230 | 1230 | } |
| 1231 | - array_splice( $order, $move_to, 0, $move_this ); |
|
| 1231 | + array_splice($order, $move_to, 0, $move_this); |
|
| 1232 | 1232 | } |
| 1233 | 1233 | } |
| 1234 | 1234 | |
@@ -1238,57 +1238,57 @@ discard block |
||
| 1238 | 1238 | return $order; |
| 1239 | 1239 | } |
| 1240 | 1240 | |
| 1241 | - public function move_post_type( $move_this = null, $move_to = null ) { |
|
| 1241 | + public function move_post_type($move_this = null, $move_to = null) { |
|
| 1242 | 1242 | $move_rules = array(); |
| 1243 | 1243 | |
| 1244 | - if ( ! is_array( $move_this ) && ! is_array( $move_to ) ) { |
|
| 1244 | + if (!is_array($move_this) && !is_array($move_to)) { |
|
| 1245 | 1245 | $move_rules[] = array( |
| 1246 | 1246 | 'move_this' => $move_this, |
| 1247 | 1247 | 'move_to' => $move_to |
| 1248 | 1248 | ); |
| 1249 | 1249 | } else { |
| 1250 | - foreach ( $move_this as $key => $move_post ) { |
|
| 1250 | + foreach ($move_this as $key => $move_post) { |
|
| 1251 | 1251 | $move_rules[] = array( |
| 1252 | 1252 | 'move_this' => $move_post, |
| 1253 | - 'move_to' => $move_to[ $key ] |
|
| 1253 | + 'move_to' => $move_to[$key] |
|
| 1254 | 1254 | ); |
| 1255 | 1255 | } |
| 1256 | 1256 | } |
| 1257 | 1257 | |
| 1258 | - $this->add_option( 'post_type_move', $move_rules ); |
|
| 1258 | + $this->add_option('post_type_move', $move_rules); |
|
| 1259 | 1259 | } |
| 1260 | 1260 | |
| 1261 | - public function set_post_type_image( $post_type = null, $image = null ) { |
|
| 1261 | + public function set_post_type_image($post_type = null, $image = null) { |
|
| 1262 | 1262 | $post_type_image_rules = array(); |
| 1263 | 1263 | |
| 1264 | - if ( ! is_array( $post_type ) ) { |
|
| 1264 | + if (!is_array($post_type)) { |
|
| 1265 | 1265 | |
| 1266 | - $post_type_image_rules[ $post_type ] = array( |
|
| 1266 | + $post_type_image_rules[$post_type] = array( |
|
| 1267 | 1267 | 'post_type' => $post_type, |
| 1268 | 1268 | 'image' => $image |
| 1269 | 1269 | ); |
| 1270 | 1270 | |
| 1271 | 1271 | } else { |
| 1272 | 1272 | |
| 1273 | - if ( count( $post_type ) == count( $image ) ) { |
|
| 1273 | + if (count($post_type) == count($image)) { |
|
| 1274 | 1274 | |
| 1275 | - foreach ( $post_type as $key => $post_name ) { |
|
| 1276 | - $post_type_image_rules[ $post_name ] = array( |
|
| 1275 | + foreach ($post_type as $key => $post_name) { |
|
| 1276 | + $post_type_image_rules[$post_name] = array( |
|
| 1277 | 1277 | 'post_type' => $post_name, |
| 1278 | - 'image' => $image[ $key ] |
|
| 1278 | + 'image' => $image[$key] |
|
| 1279 | 1279 | ); |
| 1280 | 1280 | } |
| 1281 | 1281 | } |
| 1282 | 1282 | } |
| 1283 | 1283 | |
| 1284 | - $this->add_option( 'post_type_image', $post_type_image_rules ); |
|
| 1284 | + $this->add_option('post_type_image', $post_type_image_rules); |
|
| 1285 | 1285 | } |
| 1286 | 1286 | |
| 1287 | - public function post_type_image( $image ) { |
|
| 1287 | + public function post_type_image($image) { |
|
| 1288 | 1288 | $options = $this->options_array(); |
| 1289 | 1289 | $option_key = 'post_type_image'; |
| 1290 | - if ( array_key_exists( $option_key, $options ) ) { |
|
| 1291 | - $post_type_image_rules = maybe_unserialize( $options[ $option_key ] ); |
|
| 1290 | + if (array_key_exists($option_key, $options)) { |
|
| 1291 | + $post_type_image_rules = maybe_unserialize($options[$option_key]); |
|
| 1292 | 1292 | return $post_type_image_rules; |
| 1293 | 1293 | } |
| 1294 | 1294 | return $image; |
@@ -156,7 +156,9 @@ discard block |
||
| 156 | 156 | |
| 157 | 157 | function parse($data) { |
| 158 | 158 | |
| 159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
| 159 | + if ( ! $this->is_active_addon($data['import']->options['custom_type'])) { |
|
| 160 | + return false; |
|
| 161 | + } |
|
| 160 | 162 | |
| 161 | 163 | $parsedData = $this->helper_parse($data, $this->options_array()); |
| 162 | 164 | return $parsedData; |
@@ -177,8 +179,7 @@ discard block |
||
| 177 | 179 | if ($field['type'] == 'accordion') |
| 178 | 180 | { |
| 179 | 181 | $this->fields[$value['slug']]['is_sub_field'] = true; |
| 180 | - } |
|
| 181 | - else |
|
| 182 | + } else |
|
| 182 | 183 | { |
| 183 | 184 | foreach ($value as $n => $param) { |
| 184 | 185 | if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
@@ -242,7 +243,9 @@ discard block |
||
| 242 | 243 | if ( ! empty( $this->fields ) ) { |
| 243 | 244 | |
| 244 | 245 | foreach ($this->fields as $field_slug => $field_params) { |
| 245 | - if (in_array($field_params['type'], array('title', 'plain_text', 'acf'))) continue; |
|
| 246 | + if (in_array($field_params['type'], array('title', 'plain_text', 'acf'))) { |
|
| 247 | + continue; |
|
| 248 | + } |
|
| 246 | 249 | $default_value = ''; |
| 247 | 250 | if (!empty($field_params['enum_values'])){ |
| 248 | 251 | foreach ($field_params['enum_values'] as $key => $value) { |
@@ -310,8 +313,9 @@ discard block |
||
| 310 | 313 | |
| 311 | 314 | function post_saved( $importData ){ |
| 312 | 315 | |
| 313 | - if (is_callable($this->post_saved_function)) |
|
| 314 | - call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
| 316 | + if (is_callable($this->post_saved_function)) { |
|
| 317 | + call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
| 318 | + } |
|
| 315 | 319 | |
| 316 | 320 | } |
| 317 | 321 | |
@@ -336,7 +340,9 @@ discard block |
||
| 336 | 340 | $data = array(); |
| 337 | 341 | if (!empty($this->fields)){ |
| 338 | 342 | foreach ($this->fields as $field_slug => $field_params) { |
| 339 | - if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
| 343 | + if (in_array($field_params['type'], array('title', 'plain_text'))) { |
|
| 344 | + continue; |
|
| 345 | + } |
|
| 340 | 346 | switch ($field_params['type']) { |
| 341 | 347 | |
| 342 | 348 | case 'image': |
@@ -421,7 +427,9 @@ discard block |
||
| 421 | 427 | $visible_fields = 0; |
| 422 | 428 | |
| 423 | 429 | foreach ($this->fields as $field_slug => $field_params) { |
| 424 | - if ($field_params['is_sub_field']) continue; |
|
| 430 | + if ($field_params['is_sub_field']) { |
|
| 431 | + continue; |
|
| 432 | + } |
|
| 425 | 433 | $visible_fields++; |
| 426 | 434 | } |
| 427 | 435 | |
@@ -430,7 +438,9 @@ discard block |
||
| 430 | 438 | foreach ($this->fields as $field_slug => $field_params) { |
| 431 | 439 | |
| 432 | 440 | // do not render sub fields |
| 433 | - if ($field_params['is_sub_field']) continue; |
|
| 441 | + if ($field_params['is_sub_field']) { |
|
| 442 | + continue; |
|
| 443 | + } |
|
| 434 | 444 | |
| 435 | 445 | $counter++; |
| 436 | 446 | |
@@ -561,7 +571,9 @@ discard block |
||
| 561 | 571 | $fieldData['id'] = $field_params['field_obj']->ID; |
| 562 | 572 | $fieldData['label'] = $field_params['field_obj']->post_title; |
| 563 | 573 | $fieldData['key'] = $field_params['field_obj']->post_name; |
| 564 | - if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
| 574 | + if (empty($fieldData['name'])) { |
|
| 575 | + $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
| 576 | + } |
|
| 565 | 577 | if (function_exists('pmai_render_field')) { |
| 566 | 578 | echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
| 567 | 579 | } |
@@ -573,9 +585,12 @@ discard block |
||
| 573 | 585 | } else if($field_params['type'] == 'plain_text'){ |
| 574 | 586 | if ($field_params['is_html']): |
| 575 | 587 | echo $field_params['name']; |
| 576 | - else: |
|
| 588 | + else { |
|
| 589 | + : |
|
| 577 | 590 | ?> |
| 578 | - <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
|
| 591 | + <p style="margin: 0 0 12px 0;"><?php echo $field_params['name']; |
|
| 592 | + } |
|
| 593 | + ?></p> |
|
| 579 | 594 | <?php |
| 580 | 595 | endif; |
| 581 | 596 | } |
@@ -595,8 +610,7 @@ discard block |
||
| 595 | 610 | if (is_array($value)){ |
| 596 | 611 | if ($field_params['type'] == 'accordion'){ |
| 597 | 612 | $sub_fields[$key][] = $this->convert_field($value, $current_values); |
| 598 | - } |
|
| 599 | - else |
|
| 613 | + } else |
|
| 600 | 614 | { |
| 601 | 615 | foreach ($value as $k => $sub_field) { |
| 602 | 616 | if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
@@ -758,7 +772,9 @@ discard block |
||
| 758 | 772 | |
| 759 | 773 | function add_title($title = '', $tooltip = ''){ |
| 760 | 774 | |
| 761 | - if (empty($title)) return; |
|
| 775 | + if (empty($title)) { |
|
| 776 | + return; |
|
| 777 | + } |
|
| 762 | 778 | |
| 763 | 779 | return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
| 764 | 780 | |
@@ -766,7 +782,9 @@ discard block |
||
| 766 | 782 | |
| 767 | 783 | function add_text($text = '', $is_html = false){ |
| 768 | 784 | |
| 769 | - if (empty($text)) return; |
|
| 785 | + if (empty($text)) { |
|
| 786 | + return; |
|
| 787 | + } |
|
| 770 | 788 | |
| 771 | 789 | $count = is_array($this->fields) ? count($this->fields) : 0; |
| 772 | 790 | |
@@ -902,7 +920,9 @@ discard block |
||
| 902 | 920 | */ |
| 903 | 921 | function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
| 904 | 922 | |
| 905 | - if ( empty($title) or empty($slug) ) return; |
|
| 923 | + if ( empty($title) or empty($slug) ) { |
|
| 924 | + return; |
|
| 925 | + } |
|
| 906 | 926 | |
| 907 | 927 | if (is_array($slug)) { |
| 908 | 928 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
@@ -1005,8 +1025,7 @@ discard block |
||
| 1005 | 1025 | $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
| 1006 | 1026 | $tmp_files[] = $file; |
| 1007 | 1027 | } |
| 1008 | - } |
|
| 1009 | - else { |
|
| 1028 | + } else { |
|
| 1010 | 1029 | $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
| 1011 | 1030 | $tmp_files[] = $file; |
| 1012 | 1031 | } |
@@ -1036,13 +1055,23 @@ discard block |
||
| 1036 | 1055 | |
| 1037 | 1056 | $import_options = $import_options['options']; |
| 1038 | 1057 | |
| 1039 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1058 | + if ($import_options['update_all_data'] == 'yes') { |
|
| 1059 | + return true; |
|
| 1060 | + } |
|
| 1040 | 1061 | |
| 1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
| 1062 | + if ( ! $import_options['is_update_custom_fields'] ) { |
|
| 1063 | + return false; |
|
| 1064 | + } |
|
| 1042 | 1065 | |
| 1043 | - if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
| 1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
| 1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
| 1066 | + if ($import_options['update_custom_fields_logic'] == "full_update") { |
|
| 1067 | + return true; |
|
| 1068 | + } |
|
| 1069 | + if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) { |
|
| 1070 | + return true; |
|
| 1071 | + } |
|
| 1072 | + if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) { |
|
| 1073 | + return true; |
|
| 1074 | + } |
|
| 1046 | 1075 | |
| 1047 | 1076 | return false; |
| 1048 | 1077 | |
@@ -1056,13 +1085,23 @@ discard block |
||
| 1056 | 1085 | |
| 1057 | 1086 | $import_options = $import_options['options']; |
| 1058 | 1087 | |
| 1059 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1088 | + if ($import_options['update_all_data'] == 'yes') { |
|
| 1089 | + return true; |
|
| 1090 | + } |
|
| 1060 | 1091 | |
| 1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
| 1092 | + if ( ! $import_options['is_update_categories'] ) { |
|
| 1093 | + return false; |
|
| 1094 | + } |
|
| 1062 | 1095 | |
| 1063 | - if ($import_options['update_categories_logic'] == "full_update") return true; |
|
| 1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
| 1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
| 1096 | + if ($import_options['update_categories_logic'] == "full_update") { |
|
| 1097 | + return true; |
|
| 1098 | + } |
|
| 1099 | + if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) { |
|
| 1100 | + return true; |
|
| 1101 | + } |
|
| 1102 | + if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) { |
|
| 1103 | + return true; |
|
| 1104 | + } |
|
| 1066 | 1105 | |
| 1067 | 1106 | return false; |
| 1068 | 1107 | |
@@ -1072,11 +1111,17 @@ discard block |
||
| 1072 | 1111 | |
| 1073 | 1112 | $import_options = $import_options['options']; |
| 1074 | 1113 | |
| 1075 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
| 1114 | + if ($import_options['update_all_data'] == 'yes') { |
|
| 1115 | + return true; |
|
| 1116 | + } |
|
| 1076 | 1117 | |
| 1077 | - if (!$import_options['is_update_images']) return false; |
|
| 1118 | + if (!$import_options['is_update_images']) { |
|
| 1119 | + return false; |
|
| 1120 | + } |
|
| 1078 | 1121 | |
| 1079 | - if ($import_options['is_update_images']) return true; |
|
| 1122 | + if ($import_options['is_update_images']) { |
|
| 1123 | + return true; |
|
| 1124 | + } |
|
| 1080 | 1125 | |
| 1081 | 1126 | return false; |
| 1082 | 1127 | } |
@@ -1153,7 +1198,9 @@ discard block |
||
| 1153 | 1198 | |
| 1154 | 1199 | $requires_counter = 0; |
| 1155 | 1200 | foreach ($conditions['plugins'] as $plugin) { |
| 1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
| 1201 | + if ( is_plugin_active($plugin) ) { |
|
| 1202 | + $requires_counter++; |
|
| 1203 | + } |
|
| 1157 | 1204 | } |
| 1158 | 1205 | |
| 1159 | 1206 | if ($requires_counter != count($conditions['plugins'])){ |
@@ -14,133 +14,133 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | class GetPaid_WP_All_Import { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @var RapidAddon[] |
|
| 19 | - */ |
|
| 20 | - protected $add_ons; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * @var array |
|
| 24 | - */ |
|
| 25 | - protected $datastores = array( |
|
| 26 | - 'item' =>'WPInv_Item', |
|
| 27 | - 'invoice' =>'WPInv_Invoice', |
|
| 28 | - 'discount' =>'WPInv_Discount', |
|
| 29 | - ); |
|
| 17 | + /** |
|
| 18 | + * @var RapidAddon[] |
|
| 19 | + */ |
|
| 20 | + protected $add_ons; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * @var array |
|
| 24 | + */ |
|
| 25 | + protected $datastores = array( |
|
| 26 | + 'item' =>'WPInv_Item', |
|
| 27 | + 'invoice' =>'WPInv_Invoice', |
|
| 28 | + 'discount' =>'WPInv_Discount', |
|
| 29 | + ); |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | - * Class constructor. |
|
| 33 | - */ |
|
| 32 | + * Class constructor. |
|
| 33 | + */ |
|
| 34 | 34 | public function __construct() { |
| 35 | 35 | |
| 36 | - // Init each store separately. |
|
| 37 | - foreach ( array_keys( $this->datastores ) as $key ) { |
|
| 38 | - $this->init_store( $key ); |
|
| 39 | - } |
|
| 36 | + // Init each store separately. |
|
| 37 | + foreach ( array_keys( $this->datastores ) as $key ) { |
|
| 38 | + $this->init_store( $key ); |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - } |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Inits a store. |
|
| 45 | - */ |
|
| 43 | + /** |
|
| 44 | + * Inits a store. |
|
| 45 | + */ |
|
| 46 | 46 | public function init_store( $key ) { |
| 47 | 47 | |
| 48 | - // Register the add-on. |
|
| 49 | - $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
| 48 | + // Register the add-on. |
|
| 49 | + $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
| 50 | 50 | |
| 51 | - // Create import function. |
|
| 52 | - $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
| 53 | - $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
| 51 | + // Create import function. |
|
| 52 | + $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
| 53 | + $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
| 54 | 54 | }; |
| 55 | 55 | |
| 56 | - $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
| 56 | + $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
| 57 | 57 | |
| 58 | - // Register store fields. |
|
| 59 | - $this->add_store_fields( $key ); |
|
| 58 | + // Register store fields. |
|
| 59 | + $this->add_store_fields( $key ); |
|
| 60 | 60 | |
| 61 | - // Only load on the correct post type. |
|
| 62 | - $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
| 61 | + // Only load on the correct post type. |
|
| 62 | + $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
| 63 | 63 | |
| 64 | - // Disable images. |
|
| 65 | - $this->add_ons[ $key ]->disable_default_images(); |
|
| 64 | + // Disable images. |
|
| 65 | + $this->add_ons[ $key ]->disable_default_images(); |
|
| 66 | 66 | |
| 67 | - } |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - /** |
|
| 70 | - * Retrieves store fields. |
|
| 71 | - */ |
|
| 69 | + /** |
|
| 70 | + * Retrieves store fields. |
|
| 71 | + */ |
|
| 72 | 72 | public function get_store_fields( $key ) { |
| 73 | 73 | |
| 74 | - // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
|
| 75 | - $fields = wpinv_get_data( $key . '-schema' ); |
|
| 74 | + // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
|
| 75 | + $fields = wpinv_get_data( $key . '-schema' ); |
|
| 76 | 76 | |
| 77 | - if ( empty( $fields ) ) { |
|
| 78 | - return array(); |
|
| 79 | - } |
|
| 77 | + if ( empty( $fields ) ) { |
|
| 78 | + return array(); |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - // Clean the fields. |
|
| 82 | - $prepared = array(); |
|
| 83 | - foreach ( $fields as $id => $field ) { |
|
| 81 | + // Clean the fields. |
|
| 82 | + $prepared = array(); |
|
| 83 | + foreach ( $fields as $id => $field ) { |
|
| 84 | 84 | |
| 85 | - // Skip read only fields. |
|
| 86 | - if ( ! empty( $field['readonly'] ) ) { |
|
| 87 | - continue; |
|
| 88 | - } |
|
| 85 | + // Skip read only fields. |
|
| 86 | + if ( ! empty( $field['readonly'] ) ) { |
|
| 87 | + continue; |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - $prepared[ $id ] = $field; |
|
| 90 | + $prepared[ $id ] = $field; |
|
| 91 | 91 | |
| 92 | - } |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - return $prepared; |
|
| 94 | + return $prepared; |
|
| 95 | 95 | |
| 96 | - } |
|
| 96 | + } |
|
| 97 | 97 | |
| 98 | - /** |
|
| 99 | - * Registers store fields. |
|
| 100 | - */ |
|
| 98 | + /** |
|
| 99 | + * Registers store fields. |
|
| 100 | + */ |
|
| 101 | 101 | public function add_store_fields( $key ) { |
| 102 | 102 | |
| 103 | - foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
| 104 | - $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
| 105 | - } |
|
| 103 | + foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
| 104 | + $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - /** |
|
| 110 | - * Handles store imports. |
|
| 111 | - */ |
|
| 109 | + /** |
|
| 110 | + * Handles store imports. |
|
| 111 | + */ |
|
| 112 | 112 | public function import_store( $key, $post_id, $data, $import_options, $_post ) { |
| 113 | 113 | |
| 114 | - // Is the store class set? |
|
| 115 | - if ( ! isset( $this->datastores[ $key ] ) ) { |
|
| 116 | - return; |
|
| 117 | - } |
|
| 114 | + // Is the store class set? |
|
| 115 | + if ( ! isset( $this->datastores[ $key ] ) ) { |
|
| 116 | + return; |
|
| 117 | + } |
|
| 118 | 118 | |
| 119 | - /**@var GetPaid_Data */ |
|
| 120 | - $data_store = new $this->datastores[ $key ]( $post_id ); |
|
| 119 | + /**@var GetPaid_Data */ |
|
| 120 | + $data_store = new $this->datastores[ $key ]( $post_id ); |
|
| 121 | 121 | |
| 122 | - // Abort if the invoice/item/discount does not exist. |
|
| 123 | - if ( ! $data_store->exists() ) { |
|
| 124 | - return; |
|
| 125 | - } |
|
| 122 | + // Abort if the invoice/item/discount does not exist. |
|
| 123 | + if ( ! $data_store->exists() ) { |
|
| 124 | + return; |
|
| 125 | + } |
|
| 126 | 126 | |
| 127 | - // Prepare data props. |
|
| 128 | - $prepared = array(); |
|
| 127 | + // Prepare data props. |
|
| 128 | + $prepared = array(); |
|
| 129 | 129 | |
| 130 | - foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
| 131 | - // Make sure the user has allowed this field to be updated. |
|
| 132 | - if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
| 130 | + foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
| 131 | + // Make sure the user has allowed this field to be updated. |
|
| 132 | + if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
| 133 | 133 | |
| 134 | - // Update the custom field with the imported data. |
|
| 135 | - $prepared[ $field ] = $data[ $field ]; |
|
| 136 | - } |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - // Only update if we have something to update. |
|
| 140 | - if ( ! empty( $prepared ) ) { |
|
| 141 | - $data_store->set_props( $prepared ); |
|
| 142 | - $data_store->save(); |
|
| 143 | - } |
|
| 134 | + // Update the custom field with the imported data. |
|
| 135 | + $prepared[ $field ] = $data[ $field ]; |
|
| 136 | + } |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + // Only update if we have something to update. |
|
| 140 | + if ( ! empty( $prepared ) ) { |
|
| 141 | + $data_store->set_props( $prepared ); |
|
| 142 | + $data_store->save(); |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | 145 | } |
| 146 | 146 | |
@@ -5,9 +5,9 @@ discard block |
||
| 5 | 5 | * @package GetPaid |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | -include plugin_dir_path( __FILE__ ) . 'rapid-addon.php'; |
|
| 10 | +include plugin_dir_path(__FILE__) . 'rapid-addon.php'; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * WP All Import class. |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | public function __construct() { |
| 35 | 35 | |
| 36 | 36 | // Init each store separately. |
| 37 | - foreach ( array_keys( $this->datastores ) as $key ) { |
|
| 38 | - $this->init_store( $key ); |
|
| 37 | + foreach (array_keys($this->datastores) as $key) { |
|
| 38 | + $this->init_store($key); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | } |
@@ -43,51 +43,51 @@ discard block |
||
| 43 | 43 | /** |
| 44 | 44 | * Inits a store. |
| 45 | 45 | */ |
| 46 | - public function init_store( $key ) { |
|
| 46 | + public function init_store($key) { |
|
| 47 | 47 | |
| 48 | 48 | // Register the add-on. |
| 49 | - $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
| 49 | + $this->add_ons[$key] = new RapidAddon('GetPaid', 'getpaid_wp_al_import_' . $key); |
|
| 50 | 50 | |
| 51 | 51 | // Create import function. |
| 52 | - $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
| 53 | - $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
| 52 | + $import_function = function($post_id, $data, $import_options, $_post) use ($key) { |
|
| 53 | + $this->import_store($key, $post_id, $data, $import_options, $_post); |
|
| 54 | 54 | }; |
| 55 | 55 | |
| 56 | - $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
| 56 | + $this->add_ons[$key]->set_import_function($import_function); |
|
| 57 | 57 | |
| 58 | 58 | // Register store fields. |
| 59 | - $this->add_store_fields( $key ); |
|
| 59 | + $this->add_store_fields($key); |
|
| 60 | 60 | |
| 61 | 61 | // Only load on the correct post type. |
| 62 | - $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
| 62 | + $this->add_ons[$key]->run(array('post_types' => array('wpi_' . $key))); |
|
| 63 | 63 | |
| 64 | 64 | // Disable images. |
| 65 | - $this->add_ons[ $key ]->disable_default_images(); |
|
| 65 | + $this->add_ons[$key]->disable_default_images(); |
|
| 66 | 66 | |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * Retrieves store fields. |
| 71 | 71 | */ |
| 72 | - public function get_store_fields( $key ) { |
|
| 72 | + public function get_store_fields($key) { |
|
| 73 | 73 | |
| 74 | 74 | // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
| 75 | - $fields = wpinv_get_data( $key . '-schema' ); |
|
| 75 | + $fields = wpinv_get_data($key . '-schema'); |
|
| 76 | 76 | |
| 77 | - if ( empty( $fields ) ) { |
|
| 77 | + if (empty($fields)) { |
|
| 78 | 78 | return array(); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | // Clean the fields. |
| 82 | 82 | $prepared = array(); |
| 83 | - foreach ( $fields as $id => $field ) { |
|
| 83 | + foreach ($fields as $id => $field) { |
|
| 84 | 84 | |
| 85 | 85 | // Skip read only fields. |
| 86 | - if ( ! empty( $field['readonly'] ) ) { |
|
| 86 | + if (!empty($field['readonly'])) { |
|
| 87 | 87 | continue; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $prepared[ $id ] = $field; |
|
| 90 | + $prepared[$id] = $field; |
|
| 91 | 91 | |
| 92 | 92 | } |
| 93 | 93 | |
@@ -98,10 +98,10 @@ discard block |
||
| 98 | 98 | /** |
| 99 | 99 | * Registers store fields. |
| 100 | 100 | */ |
| 101 | - public function add_store_fields( $key ) { |
|
| 101 | + public function add_store_fields($key) { |
|
| 102 | 102 | |
| 103 | - foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
| 104 | - $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
| 103 | + foreach ($this->get_store_fields($key) as $field_id => $data) { |
|
| 104 | + $this->add_ons[$key]->add_field($field_id, $data['description'], 'text'); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | } |
@@ -109,36 +109,36 @@ discard block |
||
| 109 | 109 | /** |
| 110 | 110 | * Handles store imports. |
| 111 | 111 | */ |
| 112 | - public function import_store( $key, $post_id, $data, $import_options, $_post ) { |
|
| 112 | + public function import_store($key, $post_id, $data, $import_options, $_post) { |
|
| 113 | 113 | |
| 114 | 114 | // Is the store class set? |
| 115 | - if ( ! isset( $this->datastores[ $key ] ) ) { |
|
| 115 | + if (!isset($this->datastores[$key])) { |
|
| 116 | 116 | return; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /**@var GetPaid_Data */ |
| 120 | - $data_store = new $this->datastores[ $key ]( $post_id ); |
|
| 120 | + $data_store = new $this->datastores[$key]($post_id); |
|
| 121 | 121 | |
| 122 | 122 | // Abort if the invoice/item/discount does not exist. |
| 123 | - if ( ! $data_store->exists() ) { |
|
| 123 | + if (!$data_store->exists()) { |
|
| 124 | 124 | return; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | // Prepare data props. |
| 128 | 128 | $prepared = array(); |
| 129 | 129 | |
| 130 | - foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
| 130 | + foreach (array_keys($this->get_store_fields($key)) as $field) { |
|
| 131 | 131 | // Make sure the user has allowed this field to be updated. |
| 132 | - if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
| 132 | + if (empty($_post['ID']) || $this->add_ons[$key]->can_update_meta($field, $import_options)) { |
|
| 133 | 133 | |
| 134 | 134 | // Update the custom field with the imported data. |
| 135 | - $prepared[ $field ] = $data[ $field ]; |
|
| 135 | + $prepared[$field] = $data[$field]; |
|
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | // Only update if we have something to update. |
| 140 | - if ( ! empty( $prepared ) ) { |
|
| 141 | - $data_store->set_props( $prepared ); |
|
| 140 | + if (!empty($prepared)) { |
|
| 141 | + $data_store->set_props($prepared); |
|
| 142 | 142 | $data_store->save(); |
| 143 | 143 | } |
| 144 | 144 | |
@@ -12,75 +12,75 @@ discard block |
||
| 12 | 12 | * @var GetPaid_Payment_Form $form |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -defined( 'ABSPATH' ) || exit; |
|
| 15 | +defined('ABSPATH') || exit; |
|
| 16 | 16 | |
| 17 | -$field_type = sanitize_key( $field_type ); |
|
| 17 | +$field_type = sanitize_key($field_type); |
|
| 18 | 18 | |
| 19 | 19 | echo "<div class='row $field_type'>"; |
| 20 | 20 | |
| 21 | 21 | // Prepare current user. |
| 22 | -if ( ! empty( $form->invoice ) ) { |
|
| 22 | +if (!empty($form->invoice)) { |
|
| 23 | 23 | $user_id = $form->invoice->get_user_id(); |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | -if ( empty( $user_id ) && is_user_logged_in() ) { |
|
| 26 | +if (empty($user_id) && is_user_logged_in()) { |
|
| 27 | 27 | $user_id = get_current_user_id(); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | -if ( ! empty( $user_id ) ) { |
|
| 31 | - $user = wp_get_current_user(); |
|
| 30 | +if (!empty($user_id)) { |
|
| 31 | + $user = wp_get_current_user(); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | -foreach ( $fields as $address_field ) { |
|
| 34 | +foreach ($fields as $address_field) { |
|
| 35 | 35 | |
| 36 | 36 | // Skip if it is hidden. |
| 37 | - if ( empty( $address_field['visible'] ) ) { |
|
| 37 | + if (empty($address_field['visible'])) { |
|
| 38 | 38 | continue; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - do_action( 'getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field ); |
|
| 41 | + do_action('getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field); |
|
| 42 | 42 | |
| 43 | 43 | // Prepare variables. |
| 44 | 44 | $field_name = $address_field['name']; |
| 45 | 45 | $field_name = "{$field_type}[$field_name]"; |
| 46 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
| 47 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
| 48 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
| 49 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
| 50 | - $value = ! empty( $user_id ) ? get_user_meta( $user_id, '_' . $address_field['name'], true ) : ''; |
|
| 51 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
| 52 | - |
|
| 53 | - $method_name = 'get_' . str_replace( 'wpinv_', '', $address_field['name'] ); |
|
| 54 | - if ( ! empty( $form->invoice ) && is_callable( array( $form->invoice, $method_name ) ) ) { |
|
| 55 | - $value = call_user_func( array( $form->invoice, $method_name ) ); |
|
| 46 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
| 47 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
| 48 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
| 49 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
| 50 | + $value = !empty($user_id) ? get_user_meta($user_id, '_' . $address_field['name'], true) : ''; |
|
| 51 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
| 52 | + |
|
| 53 | + $method_name = 'get_' . str_replace('wpinv_', '', $address_field['name']); |
|
| 54 | + if (!empty($form->invoice) && is_callable(array($form->invoice, $method_name))) { |
|
| 55 | + $value = call_user_func(array($form->invoice, $method_name)); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if ( empty( $value ) && 'wpinv_first_name' == $address_field['name'] && ! empty( $user ) ) { |
|
| 58 | + if (empty($value) && 'wpinv_first_name' == $address_field['name'] && !empty($user)) { |
|
| 59 | 59 | $value = $user->first_name; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - if ( empty( $value ) && 'wpinv_last_name' == $address_field['name'] && ! empty( $user ) ) { |
|
| 62 | + if (empty($value) && 'wpinv_last_name' == $address_field['name'] && !empty($user)) { |
|
| 63 | 63 | $value = $user->last_name; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - if ( ! empty( $address_field['required'] ) ) { |
|
| 66 | + if (!empty($address_field['required'])) { |
|
| 67 | 67 | $label .= "<span class='text-danger'> *</span>"; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | // Display the country. |
| 71 | - if ( 'wpinv_country' == $address_field['name'] ) { |
|
| 71 | + if ('wpinv_country' == $address_field['name']) { |
|
| 72 | 72 | |
| 73 | 73 | echo "<div class='form-group $wrap_class getpaid-address-field-wrapper__country'"; |
| 74 | 74 | |
| 75 | 75 | echo aui()->select( |
| 76 | 76 | array( |
| 77 | 77 | 'options' => wpinv_get_country_list(), |
| 78 | - 'name' => esc_attr( $field_name ), |
|
| 79 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 80 | - 'value' => esc_attr( $country ), |
|
| 78 | + 'name' => esc_attr($field_name), |
|
| 79 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 80 | + 'value' => esc_attr($country), |
|
| 81 | 81 | 'placeholder' => $placeholder, |
| 82 | - 'required' => ! empty( $address_field['required'] ), |
|
| 83 | - 'label' => wp_kses_post( $label ), |
|
| 82 | + 'required' => !empty($address_field['required']), |
|
| 83 | + 'label' => wp_kses_post($label), |
|
| 84 | 84 | 'label_type' => 'vertical', |
| 85 | 85 | 'help_text' => $description, |
| 86 | 86 | 'class' => 'getpaid-address-field wpinv_country', |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | ) |
| 94 | 94 | ); |
| 95 | 95 | |
| 96 | - if ( wpinv_should_validate_vat_number() ) { |
|
| 96 | + if (wpinv_should_validate_vat_number()) { |
|
| 97 | 97 | |
| 98 | 98 | echo aui()->input( |
| 99 | 99 | array( |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | 'id' => "shipping-toggle$uniqid", |
| 103 | 103 | 'wrap_class' => "getpaid-address-field-wrapper__address-confirm mt-1 d-none", |
| 104 | 104 | 'required' => false, |
| 105 | - 'label' => __( 'I certify that I live in the country selected above', 'invoicing' ) . "<span class='text-danger'> *</span>", |
|
| 105 | + 'label' => __('I certify that I live in the country selected above', 'invoicing') . "<span class='text-danger'> *</span>", |
|
| 106 | 106 | 'value' => 1, |
| 107 | 107 | 'checked' => true, |
| 108 | 108 | 'class' => 'w-auto', |
@@ -116,27 +116,27 @@ discard block |
||
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | // Display the state. |
| 119 | - else if ( 'wpinv_state' == $address_field['name'] ) { |
|
| 119 | + else if ('wpinv_state' == $address_field['name']) { |
|
| 120 | 120 | |
| 121 | - if ( empty( $value ) ) { |
|
| 121 | + if (empty($value)) { |
|
| 122 | 122 | $value = wpinv_get_default_state(); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - echo getpaid_get_states_select_markup ( |
|
| 125 | + echo getpaid_get_states_select_markup( |
|
| 126 | 126 | $country, |
| 127 | 127 | $value, |
| 128 | 128 | $placeholder, |
| 129 | 129 | $label, |
| 130 | 130 | $description, |
| 131 | - ! empty( $address_field['required'] ), |
|
| 131 | + !empty($address_field['required']), |
|
| 132 | 132 | $wrap_class, |
| 133 | 133 | $field_name |
| 134 | 134 | ); |
| 135 | 135 | |
| 136 | 136 | } else { |
| 137 | 137 | |
| 138 | - $key = str_replace( 'wpinv_', '', $address_field['name'] ); |
|
| 139 | - $key = esc_attr( str_replace( '_', '-', $key ) ); |
|
| 138 | + $key = str_replace('wpinv_', '', $address_field['name']); |
|
| 139 | + $key = esc_attr(str_replace('_', '-', $key)); |
|
| 140 | 140 | $autocomplete = ''; |
| 141 | 141 | $replacements = array( |
| 142 | 142 | 'zip' => 'postal-code', |
@@ -149,37 +149,37 @@ discard block |
||
| 149 | 149 | ); |
| 150 | 150 | |
| 151 | 151 | |
| 152 | - if ( isset( $replacements[ $key ] ) ) { |
|
| 152 | + if (isset($replacements[$key])) { |
|
| 153 | 153 | $autocomplete = array( |
| 154 | - 'autocomplete' => "$field_type {$replacements[ $key ]}", |
|
| 154 | + 'autocomplete' => "$field_type {$replacements[$key]}", |
|
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | $append = ''; |
| 159 | 159 | |
| 160 | - if ( 'billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key ) { |
|
| 161 | - $valid = esc_attr__( 'Valid', 'invoicing' ); |
|
| 162 | - $invalid = esc_attr__( 'Invalid', 'invoicing' ); |
|
| 163 | - $validate = esc_attr__( 'Validate', 'invoicing' ); |
|
| 160 | + if ('billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key) { |
|
| 161 | + $valid = esc_attr__('Valid', 'invoicing'); |
|
| 162 | + $invalid = esc_attr__('Invalid', 'invoicing'); |
|
| 163 | + $validate = esc_attr__('Validate', 'invoicing'); |
|
| 164 | 164 | $append = "<span class='btn btn-primary getpaid-vat-number-validate' data-valid='$valid' data-invalid='$invalid' data-validate='$validate'>$validate</span>"; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | - if ( 'billing' === $field_type ) { |
|
| 168 | - $description .= '<div class="getpaid-error-' . sanitize_html_class( $field_name ) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
| 167 | + if ('billing' === $field_type) { |
|
| 168 | + $description .= '<div class="getpaid-error-' . sanitize_html_class($field_name) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | echo aui()->input( |
| 172 | 172 | array( |
| 173 | - 'name' => esc_attr( $field_name ), |
|
| 174 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 175 | - 'required' => ! empty( $address_field['required'] ), |
|
| 173 | + 'name' => esc_attr($field_name), |
|
| 174 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
| 175 | + 'required' => !empty($address_field['required']), |
|
| 176 | 176 | 'placeholder' => $placeholder, |
| 177 | - 'label' => wp_kses_post( $label ), |
|
| 177 | + 'label' => wp_kses_post($label), |
|
| 178 | 178 | 'label_type' => 'vertical', |
| 179 | 179 | 'help_text' => $description, |
| 180 | 180 | 'type' => 'text', |
| 181 | - 'value' => esc_attr( $value ), |
|
| 182 | - 'class' => 'getpaid-address-field ' . esc_attr( $address_field['name'] ), |
|
| 181 | + 'value' => esc_attr($value), |
|
| 182 | + 'class' => 'getpaid-address-field ' . esc_attr($address_field['name']), |
|
| 183 | 183 | 'wrap_class' => "$wrap_class getpaid-address-field-wrapper__$key", |
| 184 | 184 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__' . $key, |
| 185 | 185 | 'extra_attributes' => $autocomplete, |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - do_action( 'getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field ); |
|
| 192 | + do_action('getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | echo "</div>"; |