@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | - exit; // Exit if accessed directly |
|
| 10 | + exit; // Exit if accessed directly |
|
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | /** |
@@ -15,22 +15,22 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | class GetPaid_Meta_Box_Invoice_Shipping_Address { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Output the metabox. |
|
| 20 | - * |
|
| 21 | - * @param WP_Post $post |
|
| 22 | - */ |
|
| 23 | - public static function output( $post ) { |
|
| 18 | + /** |
|
| 19 | + * Output the metabox. |
|
| 20 | + * |
|
| 21 | + * @param WP_Post $post |
|
| 22 | + */ |
|
| 23 | + public static function output( $post ) { |
|
| 24 | 24 | |
| 25 | - // Retrieve shipping address. |
|
| 26 | - $shipping_address = get_post_meta( $post->ID, 'shipping_address', true ); |
|
| 25 | + // Retrieve shipping address. |
|
| 26 | + $shipping_address = get_post_meta( $post->ID, 'shipping_address', true ); |
|
| 27 | 27 | |
| 28 | - // Abort if it is invalid. |
|
| 29 | - if ( ! is_array( $shipping_address ) ) { |
|
| 30 | - return; |
|
| 31 | - } |
|
| 28 | + // Abort if it is invalid. |
|
| 29 | + if ( ! is_array( $shipping_address ) ) { |
|
| 30 | + return; |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | - ?> |
|
| 33 | + ?> |
|
| 34 | 34 | |
| 35 | 35 | <div class="bsui"> |
| 36 | 36 | |
@@ -55,31 +55,31 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | <?php |
| 57 | 57 | |
| 58 | - } |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * Prepares a value. |
|
| 62 | - * |
|
| 63 | - * @param array $address |
|
| 64 | - * @param string $key |
|
| 65 | - * @return string |
|
| 66 | - */ |
|
| 67 | - public static function prepare_for_display( $address, $key ) { |
|
| 60 | + /** |
|
| 61 | + * Prepares a value. |
|
| 62 | + * |
|
| 63 | + * @param array $address |
|
| 64 | + * @param string $key |
|
| 65 | + * @return string |
|
| 66 | + */ |
|
| 67 | + public static function prepare_for_display( $address, $key ) { |
|
| 68 | 68 | |
| 69 | - // Prepare the value. |
|
| 70 | - $value = $address[ $key ]; |
|
| 69 | + // Prepare the value. |
|
| 70 | + $value = $address[ $key ]; |
|
| 71 | 71 | |
| 72 | - if ( $key == 'country' ) { |
|
| 73 | - $value = wpinv_country_name( $value ); |
|
| 74 | - } |
|
| 72 | + if ( $key == 'country' ) { |
|
| 73 | + $value = wpinv_country_name( $value ); |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | - if ( $key == 'state' ) { |
|
| 77 | - $country = isset( $address[ 'country' ] ) ? $address[ 'country' ] : wpinv_get_default_country(); |
|
| 78 | - $value = wpinv_state_name( $value, $country ); |
|
| 79 | - } |
|
| 76 | + if ( $key == 'state' ) { |
|
| 77 | + $country = isset( $address[ 'country' ] ) ? $address[ 'country' ] : wpinv_get_default_country(); |
|
| 78 | + $value = wpinv_state_name( $value, $country ); |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - return sanitize_text_field( $value ); |
|
| 81 | + return sanitize_text_field( $value ); |
|
| 82 | 82 | |
| 83 | - } |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | 85 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | +if (!defined('ABSPATH')) { |
|
| 10 | 10 | exit; // Exit if accessed directly |
| 11 | 11 | } |
| 12 | 12 | |
@@ -20,13 +20,13 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * @param WP_Post $post |
| 22 | 22 | */ |
| 23 | - public static function output( $post ) { |
|
| 23 | + public static function output($post) { |
|
| 24 | 24 | |
| 25 | 25 | // Retrieve shipping address. |
| 26 | - $shipping_address = get_post_meta( $post->ID, 'shipping_address', true ); |
|
| 26 | + $shipping_address = get_post_meta($post->ID, 'shipping_address', true); |
|
| 27 | 27 | |
| 28 | 28 | // Abort if it is invalid. |
| 29 | - if ( ! is_array( $shipping_address ) ) { |
|
| 29 | + if (!is_array($shipping_address)) { |
|
| 30 | 30 | return; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -34,16 +34,16 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | <div class="bsui"> |
| 36 | 36 | |
| 37 | - <?php foreach ( getpaid_user_address_fields() as $key => $label ) : ?> |
|
| 37 | + <?php foreach (getpaid_user_address_fields() as $key => $label) : ?> |
|
| 38 | 38 | |
| 39 | - <?php if ( ! empty( $shipping_address[ $key ] ) ) : ?> |
|
| 39 | + <?php if (!empty($shipping_address[$key])) : ?> |
|
| 40 | 40 | |
| 41 | 41 | <div class="form-group form-row"> |
| 42 | 42 | <div class="col"> |
| 43 | - <span style="font-weight: 600"><?php echo sanitize_text_field( $label ); ?>:</span> |
|
| 43 | + <span style="font-weight: 600"><?php echo sanitize_text_field($label); ?>:</span> |
|
| 44 | 44 | </div> |
| 45 | 45 | <div class="col"> |
| 46 | - <?php echo self::prepare_for_display( $shipping_address, $key ); ?> |
|
| 46 | + <?php echo self::prepare_for_display($shipping_address, $key); ?> |
|
| 47 | 47 | </div> |
| 48 | 48 | </div> |
| 49 | 49 | |
@@ -64,21 +64,21 @@ discard block |
||
| 64 | 64 | * @param string $key |
| 65 | 65 | * @return string |
| 66 | 66 | */ |
| 67 | - public static function prepare_for_display( $address, $key ) { |
|
| 67 | + public static function prepare_for_display($address, $key) { |
|
| 68 | 68 | |
| 69 | 69 | // Prepare the value. |
| 70 | - $value = $address[ $key ]; |
|
| 70 | + $value = $address[$key]; |
|
| 71 | 71 | |
| 72 | - if ( $key == 'country' ) { |
|
| 73 | - $value = wpinv_country_name( $value ); |
|
| 72 | + if ($key == 'country') { |
|
| 73 | + $value = wpinv_country_name($value); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - if ( $key == 'state' ) { |
|
| 77 | - $country = isset( $address[ 'country' ] ) ? $address[ 'country' ] : wpinv_get_default_country(); |
|
| 78 | - $value = wpinv_state_name( $value, $country ); |
|
| 76 | + if ($key == 'state') { |
|
| 77 | + $country = isset($address['country']) ? $address['country'] : wpinv_get_default_country(); |
|
| 78 | + $value = wpinv_state_name($value, $country); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - return sanitize_text_field( $value ); |
|
| 81 | + return sanitize_text_field($value); |
|
| 82 | 82 | |
| 83 | 83 | } |
| 84 | 84 | |
@@ -9,41 +9,41 @@ discard block |
||
| 9 | 9 | * @version 1.0.19 |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | 14 | return array( |
| 15 | 15 | |
| 16 | 16 | array( |
| 17 | 17 | 'type' => 'heading', |
| 18 | - 'name' => __( 'Heading', 'invoicing' ), |
|
| 18 | + 'name' => __('Heading', 'invoicing'), |
|
| 19 | 19 | 'defaults' => array( |
| 20 | 20 | 'level' => 'h2', |
| 21 | - 'text' => __( 'Heading', 'invoicing' ), |
|
| 21 | + 'text' => __('Heading', 'invoicing'), |
|
| 22 | 22 | ) |
| 23 | 23 | ), |
| 24 | 24 | |
| 25 | 25 | array( |
| 26 | 26 | 'type' => 'paragraph', |
| 27 | - 'name' => __( 'Paragraph', 'invoicing' ), |
|
| 27 | + 'name' => __('Paragraph', 'invoicing'), |
|
| 28 | 28 | 'defaults' => array( |
| 29 | - 'text' => __( 'Paragraph text', 'invoicing' ), |
|
| 29 | + 'text' => __('Paragraph text', 'invoicing'), |
|
| 30 | 30 | ) |
| 31 | 31 | ), |
| 32 | 32 | |
| 33 | 33 | array( |
| 34 | 34 | 'type' => 'alert', |
| 35 | - 'name' => __( 'Alert', 'invoicing' ), |
|
| 35 | + 'name' => __('Alert', 'invoicing'), |
|
| 36 | 36 | 'defaults' => array( |
| 37 | 37 | 'value' => '', |
| 38 | 38 | 'class' => 'alert-warning', |
| 39 | - 'text' => __( 'Alert', 'invoicing' ), |
|
| 39 | + 'text' => __('Alert', 'invoicing'), |
|
| 40 | 40 | 'dismissible' => false, |
| 41 | 41 | ) |
| 42 | 42 | ), |
| 43 | 43 | |
| 44 | 44 | array( |
| 45 | 45 | 'type' => 'separator', |
| 46 | - 'name' => __( 'Separator', 'invoicing' ), |
|
| 46 | + 'name' => __('Separator', 'invoicing'), |
|
| 47 | 47 | 'defaults' => array( |
| 48 | 48 | 'value' => '', |
| 49 | 49 | ), |
@@ -51,11 +51,11 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | array( |
| 53 | 53 | 'type' => 'text', |
| 54 | - 'name' => __( 'Text Input', 'invoicing' ), |
|
| 54 | + 'name' => __('Text Input', 'invoicing'), |
|
| 55 | 55 | 'defaults' => array( |
| 56 | - 'placeholder' => __( 'Enter some text', 'invoicing' ), |
|
| 56 | + 'placeholder' => __('Enter some text', 'invoicing'), |
|
| 57 | 57 | 'value' => '', |
| 58 | - 'label' => __( 'Field Label', 'invoicing' ), |
|
| 58 | + 'label' => __('Field Label', 'invoicing'), |
|
| 59 | 59 | 'description' => '', |
| 60 | 60 | 'required' => false, |
| 61 | 61 | ) |
@@ -63,11 +63,11 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | array( |
| 65 | 65 | 'type' => 'textarea', |
| 66 | - 'name' => __( 'Textarea', 'invoicing' ), |
|
| 66 | + 'name' => __('Textarea', 'invoicing'), |
|
| 67 | 67 | 'defaults' => array( |
| 68 | - 'placeholder' => __( 'Enter your text hear', 'invoicing' ), |
|
| 68 | + 'placeholder' => __('Enter your text hear', 'invoicing'), |
|
| 69 | 69 | 'value' => '', |
| 70 | - 'label' => __( 'Textarea Label', 'invoicing' ), |
|
| 70 | + 'label' => __('Textarea Label', 'invoicing'), |
|
| 71 | 71 | 'description' => '', |
| 72 | 72 | 'required' => false, |
| 73 | 73 | ) |
@@ -75,27 +75,27 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | array( |
| 77 | 77 | 'type' => 'select', |
| 78 | - 'name' => __( 'Dropdown', 'invoicing' ), |
|
| 78 | + 'name' => __('Dropdown', 'invoicing'), |
|
| 79 | 79 | 'defaults' => array( |
| 80 | - 'placeholder' => __( 'Select a value', 'invoicing' ), |
|
| 80 | + 'placeholder' => __('Select a value', 'invoicing'), |
|
| 81 | 81 | 'value' => '', |
| 82 | - 'label' => __( 'Dropdown Label', 'invoicing' ), |
|
| 82 | + 'label' => __('Dropdown Label', 'invoicing'), |
|
| 83 | 83 | 'description' => '', |
| 84 | 84 | 'required' => false, |
| 85 | 85 | 'options' => array( |
| 86 | - esc_attr__( 'Option One', 'invoicing' ), |
|
| 87 | - esc_attr__( 'Option Two', 'invoicing' ), |
|
| 88 | - esc_attr__( 'Option Three', 'invoicing' ) |
|
| 86 | + esc_attr__('Option One', 'invoicing'), |
|
| 87 | + esc_attr__('Option Two', 'invoicing'), |
|
| 88 | + esc_attr__('Option Three', 'invoicing') |
|
| 89 | 89 | ), |
| 90 | 90 | ) |
| 91 | 91 | ), |
| 92 | 92 | |
| 93 | 93 | array( |
| 94 | 94 | 'type' => 'checkbox', |
| 95 | - 'name' => __( 'Checkbox', 'invoicing' ), |
|
| 95 | + 'name' => __('Checkbox', 'invoicing'), |
|
| 96 | 96 | 'defaults' => array( |
| 97 | 97 | 'value' => '', |
| 98 | - 'label' => __( 'Checkbox Label', 'invoicing' ), |
|
| 98 | + 'label' => __('Checkbox Label', 'invoicing'), |
|
| 99 | 99 | 'description' => '', |
| 100 | 100 | 'required' => false, |
| 101 | 101 | ) |
@@ -103,23 +103,23 @@ discard block |
||
| 103 | 103 | |
| 104 | 104 | array( |
| 105 | 105 | 'type' => 'radio', |
| 106 | - 'name' => __( 'Radio', 'invoicing' ), |
|
| 106 | + 'name' => __('Radio', 'invoicing'), |
|
| 107 | 107 | 'defaults' => array( |
| 108 | - 'label' => __( 'Select one choice', 'invoicing' ), |
|
| 108 | + 'label' => __('Select one choice', 'invoicing'), |
|
| 109 | 109 | 'options' => array( |
| 110 | - esc_attr__( 'Choice One', 'invoicing' ), |
|
| 111 | - esc_attr__( 'Choice Two', 'invoicing' ), |
|
| 112 | - esc_attr__( 'Choice Three', 'invoicing' ) |
|
| 110 | + esc_attr__('Choice One', 'invoicing'), |
|
| 111 | + esc_attr__('Choice Two', 'invoicing'), |
|
| 112 | + esc_attr__('Choice Three', 'invoicing') |
|
| 113 | 113 | ), |
| 114 | 114 | ) |
| 115 | 115 | ), |
| 116 | 116 | |
| 117 | 117 | array( |
| 118 | 118 | 'type' => 'date', |
| 119 | - 'name' => __( 'Date', 'invoicing' ), |
|
| 119 | + 'name' => __('Date', 'invoicing'), |
|
| 120 | 120 | 'defaults' => array( |
| 121 | 121 | 'value' => '', |
| 122 | - 'label' => __( 'Date', 'invoicing' ), |
|
| 122 | + 'label' => __('Date', 'invoicing'), |
|
| 123 | 123 | 'description' => '', |
| 124 | 124 | 'required' => false, |
| 125 | 125 | ) |
@@ -127,10 +127,10 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | array( |
| 129 | 129 | 'type' => 'time', |
| 130 | - 'name' => __( 'Time', 'invoicing' ), |
|
| 130 | + 'name' => __('Time', 'invoicing'), |
|
| 131 | 131 | 'defaults' => array( |
| 132 | 132 | 'value' => '', |
| 133 | - 'label' => __( 'Time', 'invoicing' ), |
|
| 133 | + 'label' => __('Time', 'invoicing'), |
|
| 134 | 134 | 'description' => '', |
| 135 | 135 | 'required' => false, |
| 136 | 136 | ) |
@@ -138,11 +138,11 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | array( |
| 140 | 140 | 'type' => 'number', |
| 141 | - 'name' => __( 'Number', 'invoicing' ), |
|
| 141 | + 'name' => __('Number', 'invoicing'), |
|
| 142 | 142 | 'defaults' => array( |
| 143 | 143 | 'placeholder' => '', |
| 144 | 144 | 'value' => '', |
| 145 | - 'label' => __( 'Number', 'invoicing' ), |
|
| 145 | + 'label' => __('Number', 'invoicing'), |
|
| 146 | 146 | 'description' => '', |
| 147 | 147 | 'required' => false, |
| 148 | 148 | ) |
@@ -150,11 +150,11 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | array( |
| 152 | 152 | 'type' => 'website', |
| 153 | - 'name' => __( 'Website', 'invoicing' ), |
|
| 153 | + 'name' => __('Website', 'invoicing'), |
|
| 154 | 154 | 'defaults' => array( |
| 155 | 155 | 'placeholder' => 'http://example.com', |
| 156 | 156 | 'value' => '', |
| 157 | - 'label' => __( 'Website', 'invoicing' ), |
|
| 157 | + 'label' => __('Website', 'invoicing'), |
|
| 158 | 158 | 'description' => '', |
| 159 | 159 | 'required' => false, |
| 160 | 160 | ) |
@@ -162,11 +162,11 @@ discard block |
||
| 162 | 162 | |
| 163 | 163 | array( |
| 164 | 164 | 'type' => 'email', |
| 165 | - 'name' => __( 'Email', 'invoicing' ), |
|
| 165 | + 'name' => __('Email', 'invoicing'), |
|
| 166 | 166 | 'defaults' => array( |
| 167 | 167 | 'placeholder' => '[email protected]', |
| 168 | 168 | 'value' => '', |
| 169 | - 'label' => __( 'Email Address', 'invoicing' ), |
|
| 169 | + 'label' => __('Email Address', 'invoicing'), |
|
| 170 | 170 | 'description' => '', |
| 171 | 171 | 'required' => false, |
| 172 | 172 | ) |
@@ -174,18 +174,18 @@ discard block |
||
| 174 | 174 | |
| 175 | 175 | array( |
| 176 | 176 | 'type' => 'address', |
| 177 | - 'name' => __( 'Address', 'invoicing' ), |
|
| 177 | + 'name' => __('Address', 'invoicing'), |
|
| 178 | 178 | 'defaults' => array( |
| 179 | 179 | |
| 180 | 180 | 'address_type' => 'billing', |
| 181 | - 'billing_address_title' => __( 'Billing Address', 'invoicing' ), |
|
| 182 | - 'shipping_address_title' => __( 'Shipping Address', 'invoicing' ), |
|
| 183 | - 'shipping_address_toggle' => __( 'Same billing & shipping address.', 'invoicing' ), |
|
| 181 | + 'billing_address_title' => __('Billing Address', 'invoicing'), |
|
| 182 | + 'shipping_address_title' => __('Shipping Address', 'invoicing'), |
|
| 183 | + 'shipping_address_toggle' => __('Same billing & shipping address.', 'invoicing'), |
|
| 184 | 184 | 'fields' => array( |
| 185 | 185 | array( |
| 186 | 186 | 'placeholder' => 'Jon', |
| 187 | 187 | 'value' => '', |
| 188 | - 'label' => __( 'First Name', 'invoicing' ), |
|
| 188 | + 'label' => __('First Name', 'invoicing'), |
|
| 189 | 189 | 'description' => '', |
| 190 | 190 | 'required' => false, |
| 191 | 191 | 'visible' => true, |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | array( |
| 197 | 197 | 'placeholder' => 'Snow', |
| 198 | 198 | 'value' => '', |
| 199 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
| 199 | + 'label' => __('Last Name', 'invoicing'), |
|
| 200 | 200 | 'description' => '', |
| 201 | 201 | 'required' => false, |
| 202 | 202 | 'visible' => true, |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | array( |
| 208 | 208 | 'placeholder' => '', |
| 209 | 209 | 'value' => '', |
| 210 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 210 | + 'label' => __('Address', 'invoicing'), |
|
| 211 | 211 | 'description' => '', |
| 212 | 212 | 'required' => false, |
| 213 | 213 | 'visible' => true, |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | array( |
| 219 | 219 | 'placeholder' => '', |
| 220 | 220 | 'value' => '', |
| 221 | - 'label' => __( 'City', 'invoicing' ), |
|
| 221 | + 'label' => __('City', 'invoicing'), |
|
| 222 | 222 | 'description' => '', |
| 223 | 223 | 'required' => false, |
| 224 | 224 | 'visible' => true, |
@@ -227,9 +227,9 @@ discard block |
||
| 227 | 227 | ), |
| 228 | 228 | |
| 229 | 229 | array( |
| 230 | - 'placeholder' => __( 'Select your country' ), |
|
| 230 | + 'placeholder' => __('Select your country'), |
|
| 231 | 231 | 'value' => '', |
| 232 | - 'label' => __( 'Country', 'invoicing' ), |
|
| 232 | + 'label' => __('Country', 'invoicing'), |
|
| 233 | 233 | 'description' => '', |
| 234 | 234 | 'required' => false, |
| 235 | 235 | 'visible' => true, |
@@ -238,9 +238,9 @@ discard block |
||
| 238 | 238 | ), |
| 239 | 239 | |
| 240 | 240 | array( |
| 241 | - 'placeholder' => __( 'Choose a state', 'invoicing' ), |
|
| 241 | + 'placeholder' => __('Choose a state', 'invoicing'), |
|
| 242 | 242 | 'value' => '', |
| 243 | - 'label' => __( 'State / Province', 'invoicing' ), |
|
| 243 | + 'label' => __('State / Province', 'invoicing'), |
|
| 244 | 244 | 'description' => '', |
| 245 | 245 | 'required' => false, |
| 246 | 246 | 'visible' => true, |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | array( |
| 252 | 252 | 'placeholder' => '', |
| 253 | 253 | 'value' => '', |
| 254 | - 'label' => __( 'ZIP / Postcode', 'invoicing' ), |
|
| 254 | + 'label' => __('ZIP / Postcode', 'invoicing'), |
|
| 255 | 255 | 'description' => '', |
| 256 | 256 | 'required' => false, |
| 257 | 257 | 'visible' => true, |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | array( |
| 263 | 263 | 'placeholder' => '', |
| 264 | 264 | 'value' => '', |
| 265 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 265 | + 'label' => __('Phone', 'invoicing'), |
|
| 266 | 266 | 'description' => '', |
| 267 | 267 | 'required' => false, |
| 268 | 268 | 'visible' => true, |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | array( |
| 274 | 274 | 'placeholder' => '', |
| 275 | 275 | 'value' => '', |
| 276 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 276 | + 'label' => __('Company', 'invoicing'), |
|
| 277 | 277 | 'description' => '', |
| 278 | 278 | 'required' => false, |
| 279 | 279 | 'visible' => false, |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | array( |
| 285 | 285 | 'placeholder' => '', |
| 286 | 286 | 'value' => '', |
| 287 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 287 | + 'label' => __('VAT Number', 'invoicing'), |
|
| 288 | 288 | 'description' => '', |
| 289 | 289 | 'required' => false, |
| 290 | 290 | 'visible' => false, |
@@ -297,11 +297,11 @@ discard block |
||
| 297 | 297 | |
| 298 | 298 | array( |
| 299 | 299 | 'type' => 'billing_email', |
| 300 | - 'name' => __( 'Billing Email', 'invoicing' ), |
|
| 300 | + 'name' => __('Billing Email', 'invoicing'), |
|
| 301 | 301 | 'defaults' => array( |
| 302 | 302 | 'placeholder' => '[email protected]', |
| 303 | 303 | 'value' => '', |
| 304 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
| 304 | + 'label' => __('Billing Email', 'invoicing'), |
|
| 305 | 305 | 'description' => '', |
| 306 | 306 | 'premade' => true, |
| 307 | 307 | ) |
@@ -309,18 +309,18 @@ discard block |
||
| 309 | 309 | |
| 310 | 310 | array( |
| 311 | 311 | 'type' => 'discount', |
| 312 | - 'name' => __( 'Discount Input', 'invoicing' ), |
|
| 312 | + 'name' => __('Discount Input', 'invoicing'), |
|
| 313 | 313 | 'defaults' => array( |
| 314 | 314 | 'value' => '', |
| 315 | - 'input_label' => __( 'Coupon Code', 'invoicing' ), |
|
| 316 | - 'button_label' => __( 'Apply Coupon', 'invoicing' ), |
|
| 317 | - 'description' => __( 'Have a discount code? Enter it above.', 'invoicing' ), |
|
| 315 | + 'input_label' => __('Coupon Code', 'invoicing'), |
|
| 316 | + 'button_label' => __('Apply Coupon', 'invoicing'), |
|
| 317 | + 'description' => __('Have a discount code? Enter it above.', 'invoicing'), |
|
| 318 | 318 | ) |
| 319 | 319 | ), |
| 320 | 320 | |
| 321 | 321 | array( |
| 322 | 322 | 'type' => 'items', |
| 323 | - 'name' => __( 'Items', 'invoicing' ), |
|
| 323 | + 'name' => __('Items', 'invoicing'), |
|
| 324 | 324 | 'defaults' => array( |
| 325 | 325 | 'value' => '', |
| 326 | 326 | 'items_type' => 'total', |
@@ -332,22 +332,22 @@ discard block |
||
| 332 | 332 | |
| 333 | 333 | array( |
| 334 | 334 | 'type' => 'price_input', |
| 335 | - 'name' => __( 'Price Input', 'invoicing' ), |
|
| 335 | + 'name' => __('Price Input', 'invoicing'), |
|
| 336 | 336 | 'defaults' => array( |
| 337 | 337 | 'placeholder' => wpinv_format_amount(0), |
| 338 | 338 | 'value' => wpinv_format_amount(0), |
| 339 | 339 | 'minimum' => wpinv_format_amount(0), |
| 340 | - 'label' => __( 'Enter Amount', 'invoicing' ), |
|
| 340 | + 'label' => __('Enter Amount', 'invoicing'), |
|
| 341 | 341 | 'description' => '', |
| 342 | 342 | ) |
| 343 | 343 | ), |
| 344 | 344 | |
| 345 | 345 | array( |
| 346 | 346 | 'type' => 'price_select', |
| 347 | - 'name' => __( 'Price Select', 'invoicing' ), |
|
| 347 | + 'name' => __('Price Select', 'invoicing'), |
|
| 348 | 348 | 'defaults' => array( |
| 349 | 349 | 'description' => '', |
| 350 | - 'label' => __( 'Select Amount', 'invoicing' ), |
|
| 350 | + 'label' => __('Select Amount', 'invoicing'), |
|
| 351 | 351 | 'options' => 'Option 1|10, Option 2|20', |
| 352 | 352 | 'placeholder' => '', |
| 353 | 353 | 'select_type' => 'select', |
@@ -356,39 +356,39 @@ discard block |
||
| 356 | 356 | |
| 357 | 357 | array( |
| 358 | 358 | 'type' => 'pay_button', |
| 359 | - 'name' => __( 'Payment Button', 'invoicing' ), |
|
| 359 | + 'name' => __('Payment Button', 'invoicing'), |
|
| 360 | 360 | 'defaults' => array( |
| 361 | 361 | 'value' => '', |
| 362 | 362 | 'class' => 'btn-primary', |
| 363 | - 'label' => __( 'Pay %price% »', 'invoicing' ), |
|
| 364 | - 'free' => __( 'Continue »', 'invoicing' ), |
|
| 365 | - 'description' => __( 'By continuing with our payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
| 363 | + 'label' => __('Pay %price% »', 'invoicing'), |
|
| 364 | + 'free' => __('Continue »', 'invoicing'), |
|
| 365 | + 'description' => __('By continuing with our payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
| 366 | 366 | 'premade' => true, |
| 367 | 367 | ) |
| 368 | 368 | ), |
| 369 | 369 | |
| 370 | 370 | array( |
| 371 | 371 | 'type' => 'gateway_select', |
| 372 | - 'name' => __( 'Gateway Select', 'invoicing' ), |
|
| 372 | + 'name' => __('Gateway Select', 'invoicing'), |
|
| 373 | 373 | 'defaults' => array( |
| 374 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 374 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 375 | 375 | 'premade' => true, |
| 376 | 376 | ) |
| 377 | 377 | ), |
| 378 | 378 | |
| 379 | 379 | array( |
| 380 | 380 | 'type' => 'total_payable', |
| 381 | - 'name' => __( 'Total Payable', 'invoicing' ), |
|
| 381 | + 'name' => __('Total Payable', 'invoicing'), |
|
| 382 | 382 | 'defaults' => array( |
| 383 | - 'text' => __( 'Total to pay:', 'invoicing' ), |
|
| 383 | + 'text' => __('Total to pay:', 'invoicing'), |
|
| 384 | 384 | ) |
| 385 | 385 | ), |
| 386 | 386 | |
| 387 | 387 | array( |
| 388 | 388 | 'type' => 'ip_address', |
| 389 | - 'name' => __( 'IP Address', 'invoicing' ), |
|
| 389 | + 'name' => __('IP Address', 'invoicing'), |
|
| 390 | 390 | 'defaults' => array( |
| 391 | - 'text' => __( 'Your IP address is:', 'invoicing' ), |
|
| 391 | + 'text' => __('Your IP address is:', 'invoicing'), |
|
| 392 | 392 | ) |
| 393 | 393 | ) |
| 394 | 394 | ); |
@@ -7,13 +7,13 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | ?> |
| 13 | 13 | |
| 14 | 14 | <div class='wpinv-address-wrapper row'> |
| 15 | 15 | |
| 16 | - <h4 v-if="form_element.address_type == 'both'" class="col-12 mb-3"><?php _e( 'Billing / Shipping Address', 'invoicing' ); ?></h4> |
|
| 16 | + <h4 v-if="form_element.address_type == 'both'" class="col-12 mb-3"><?php _e('Billing / Shipping Address', 'invoicing'); ?></h4> |
|
| 17 | 17 | |
| 18 | 18 | <div class='form-group address-field-preview wpinv-payment-form-field-preview' v-for='(field, index) in visible_fields( form_element.fields )' :class='grid_class( field )' :key='field.name'> |
| 19 | 19 | <label class="d-block w-100"> |
@@ -12,72 +12,72 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | abstract class GetPaid_Reports_Abstract_Report { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var array |
|
| 17 | - */ |
|
| 18 | - public $stats; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Class constructor. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function __construct() { |
|
| 25 | - $this->prepare_stats(); |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * Retrieves the current range. |
|
| 30 | - * |
|
| 31 | - */ |
|
| 32 | - public function get_range() { |
|
| 33 | - $valid_ranges = $this->get_periods(); |
|
| 34 | - |
|
| 35 | - if ( isset( $_GET['date_range'] ) && array_key_exists( $_GET['date_range'], $valid_ranges ) ) { |
|
| 36 | - return sanitize_key( $_GET['date_range'] ); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - return '7_days'; |
|
| 40 | - } |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * Returns an array of date ranges. |
|
| 44 | - * |
|
| 45 | - * @return array |
|
| 46 | - */ |
|
| 47 | - public function get_periods() { |
|
| 48 | - |
|
| 49 | - $periods = array( |
|
| 15 | + /** |
|
| 16 | + * @var array |
|
| 17 | + */ |
|
| 18 | + public $stats; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Class constructor. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function __construct() { |
|
| 25 | + $this->prepare_stats(); |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * Retrieves the current range. |
|
| 30 | + * |
|
| 31 | + */ |
|
| 32 | + public function get_range() { |
|
| 33 | + $valid_ranges = $this->get_periods(); |
|
| 34 | + |
|
| 35 | + if ( isset( $_GET['date_range'] ) && array_key_exists( $_GET['date_range'], $valid_ranges ) ) { |
|
| 36 | + return sanitize_key( $_GET['date_range'] ); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + return '7_days'; |
|
| 40 | + } |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * Returns an array of date ranges. |
|
| 44 | + * |
|
| 45 | + * @return array |
|
| 46 | + */ |
|
| 47 | + public function get_periods() { |
|
| 48 | + |
|
| 49 | + $periods = array( |
|
| 50 | 50 | 'today' => __( 'Today', 'invoicing' ), |
| 51 | 51 | 'yesterday' => __( 'Yesterday', 'invoicing' ), |
| 52 | 52 | '7_days' => __( 'Last 7 days', 'invoicing' ), |
| 53 | - '30_days' => __( 'Last 30 days', 'invoicing' ), |
|
| 54 | - '60_days' => __( 'Last 60 days', 'invoicing' ), |
|
| 55 | - '90_days' => __( 'Last 90 days', 'invoicing' ), |
|
| 56 | - '180_days' => __( 'Last 180 days', 'invoicing' ), |
|
| 57 | - '360_days' => __( 'Last 360 days', 'invoicing' ), |
|
| 58 | - ); |
|
| 59 | - |
|
| 60 | - return apply_filters( 'getpaid_earning_periods', $periods ); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * Retrieves the current range's sql. |
|
| 65 | - * |
|
| 66 | - */ |
|
| 67 | - public function get_range_sql( $range ) { |
|
| 68 | - |
|
| 69 | - $date = 'CAST(meta.completed_date AS DATE)'; |
|
| 53 | + '30_days' => __( 'Last 30 days', 'invoicing' ), |
|
| 54 | + '60_days' => __( 'Last 60 days', 'invoicing' ), |
|
| 55 | + '90_days' => __( 'Last 90 days', 'invoicing' ), |
|
| 56 | + '180_days' => __( 'Last 180 days', 'invoicing' ), |
|
| 57 | + '360_days' => __( 'Last 360 days', 'invoicing' ), |
|
| 58 | + ); |
|
| 59 | + |
|
| 60 | + return apply_filters( 'getpaid_earning_periods', $periods ); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * Retrieves the current range's sql. |
|
| 65 | + * |
|
| 66 | + */ |
|
| 67 | + public function get_range_sql( $range ) { |
|
| 68 | + |
|
| 69 | + $date = 'CAST(meta.completed_date AS DATE)'; |
|
| 70 | 70 | $datetime = 'meta.completed_date'; |
| 71 | 71 | |
| 72 | 72 | // Prepare durations. |
| 73 | 73 | $today = current_time( 'Y-m-d' ); |
| 74 | - $yesterday = date( 'Y-m-d', strtotime( '-1 day', current_time( 'timestamp' ) ) ); |
|
| 75 | - $seven_days_ago = date( 'Y-m-d', strtotime( '-7 days', current_time( 'timestamp' ) ) ); |
|
| 76 | - $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days', current_time( 'timestamp' ) ) ); |
|
| 77 | - $ninety_days_ago = date( 'Y-m-d', strtotime( '-90 days', current_time( 'timestamp' ) ) ); |
|
| 78 | - $sixty_days_ago = date( 'Y-m-d', strtotime( '-60 days', current_time( 'timestamp' ) ) ); |
|
| 79 | - $one_eighty_days_ago = date( 'Y-m-d', strtotime( '-180 days', current_time( 'timestamp' ) ) ); |
|
| 80 | - $three_sixty_days_ago = date( 'Y-m-d', strtotime( '-360 days', current_time( 'timestamp' ) ) ); |
|
| 74 | + $yesterday = date( 'Y-m-d', strtotime( '-1 day', current_time( 'timestamp' ) ) ); |
|
| 75 | + $seven_days_ago = date( 'Y-m-d', strtotime( '-7 days', current_time( 'timestamp' ) ) ); |
|
| 76 | + $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days', current_time( 'timestamp' ) ) ); |
|
| 77 | + $ninety_days_ago = date( 'Y-m-d', strtotime( '-90 days', current_time( 'timestamp' ) ) ); |
|
| 78 | + $sixty_days_ago = date( 'Y-m-d', strtotime( '-60 days', current_time( 'timestamp' ) ) ); |
|
| 79 | + $one_eighty_days_ago = date( 'Y-m-d', strtotime( '-180 days', current_time( 'timestamp' ) ) ); |
|
| 80 | + $three_sixty_days_ago = date( 'Y-m-d', strtotime( '-360 days', current_time( 'timestamp' ) ) ); |
|
| 81 | 81 | |
| 82 | 82 | $ranges = array( |
| 83 | 83 | |
@@ -94,130 +94,130 @@ discard block |
||
| 94 | 94 | '7_days' => array( |
| 95 | 95 | "DATE($datetime)", |
| 96 | 96 | "$date BETWEEN '$seven_days_ago' AND '$today'" |
| 97 | - ), |
|
| 97 | + ), |
|
| 98 | 98 | |
| 99 | - '30_days' => array( |
|
| 99 | + '30_days' => array( |
|
| 100 | 100 | "DATE($datetime)", |
| 101 | 101 | "$date BETWEEN '$thirty_days_ago' AND '$today'" |
| 102 | - ), |
|
| 102 | + ), |
|
| 103 | 103 | |
| 104 | - '60_days' => array( |
|
| 104 | + '60_days' => array( |
|
| 105 | 105 | "DATE($datetime)", |
| 106 | 106 | "$date BETWEEN '$sixty_days_ago' AND '$today'" |
| 107 | - ), |
|
| 107 | + ), |
|
| 108 | 108 | |
| 109 | - '90_days' => array( |
|
| 109 | + '90_days' => array( |
|
| 110 | 110 | "WEEK($datetime)", |
| 111 | 111 | "$date BETWEEN '$ninety_days_ago' AND '$today'" |
| 112 | - ), |
|
| 112 | + ), |
|
| 113 | 113 | |
| 114 | - '180_days' => array( |
|
| 114 | + '180_days' => array( |
|
| 115 | 115 | "WEEK($datetime)", |
| 116 | 116 | "$date BETWEEN '$one_eighty_days_ago' AND '$today'" |
| 117 | - ), |
|
| 117 | + ), |
|
| 118 | 118 | |
| 119 | - '360_days' => array( |
|
| 119 | + '360_days' => array( |
|
| 120 | 120 | "WEEK($datetime)", |
| 121 | 121 | "$date BETWEEN '$three_sixty_days_ago' AND '$today'" |
| 122 | 122 | ), |
| 123 | 123 | |
| 124 | 124 | ); |
| 125 | 125 | |
| 126 | - $sql = isset( $ranges[ $range ] ) ? $ranges[ $range ] : $ranges[ '7_days' ]; |
|
| 127 | - return apply_filters( 'getpaid_earning_graphs_get_range_sql', $sql, $range ); |
|
| 128 | - |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Retrieves the hours in a day |
|
| 133 | - * |
|
| 134 | - */ |
|
| 135 | - public function get_hours_in_a_day() { |
|
| 136 | - |
|
| 137 | - return array( |
|
| 138 | - '12AM' => __( '12 AM', 'invoicing'), |
|
| 139 | - '1AM' => __( '1 AM', 'invoicing'), |
|
| 140 | - '2AM' => __( '2 AM', 'invoicing'), |
|
| 141 | - '3AM' => __( '3 AM', 'invoicing'), |
|
| 142 | - '4AM' => __( '4 AM', 'invoicing'), |
|
| 143 | - '5AM' => __( '5 AM', 'invoicing'), |
|
| 144 | - '6AM' => __( '6 AM', 'invoicing'), |
|
| 145 | - '7AM' => __( '7 AM', 'invoicing'), |
|
| 146 | - '8AM' => __( '8 AM', 'invoicing'), |
|
| 147 | - '9AM' => __( '9 AM', 'invoicing'), |
|
| 148 | - '10AM' => __( '10 AM', 'invoicing'), |
|
| 149 | - '11AM' => __( '11 AM', 'invoicing'), |
|
| 150 | - '12pm' => __( '12 PM', 'invoicing'), |
|
| 151 | - '1PM' => __( '1 PM', 'invoicing'), |
|
| 152 | - '2PM' => __( '2 PM', 'invoicing'), |
|
| 153 | - '3PM' => __( '3 PM', 'invoicing'), |
|
| 154 | - '4PM' => __( '4 PM', 'invoicing'), |
|
| 155 | - '5PM' => __( '5 PM', 'invoicing'), |
|
| 156 | - '6PM' => __( '6 PM', 'invoicing'), |
|
| 157 | - '7PM' => __( '7 PM', 'invoicing'), |
|
| 158 | - '8PM' => __( '8 PM', 'invoicing'), |
|
| 159 | - '9PM' => __( '9 PM', 'invoicing'), |
|
| 160 | - '10PM' => __( '10 PM', 'invoicing'), |
|
| 161 | - '11PM' => __( '11 PM', 'invoicing'), |
|
| 162 | - ); |
|
| 163 | - |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * Retrieves the days in a period |
|
| 168 | - * |
|
| 169 | - */ |
|
| 170 | - public function get_days_in_period( $days ) { |
|
| 171 | - |
|
| 172 | - $return = array(); |
|
| 173 | - $format = 'Y-m-d'; |
|
| 174 | - |
|
| 175 | - if ( $days < 8 ) { |
|
| 176 | - $format = 'D'; |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - if ( $days < 32 ) { |
|
| 180 | - $format = 'M j'; |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - while ( $days > 0 ) { |
|
| 184 | - |
|
| 185 | - $key = date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 186 | - $label = date_i18n( $format, strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 187 | - $return[ $key ] = $label; |
|
| 188 | - $days--; |
|
| 189 | - |
|
| 190 | - } |
|
| 191 | - |
|
| 192 | - return $return; |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - /** |
|
| 196 | - * Retrieves the weeks in a period |
|
| 197 | - * |
|
| 198 | - */ |
|
| 199 | - public function get_weeks_in_period( $days ) { |
|
| 200 | - |
|
| 201 | - $return = array(); |
|
| 202 | - |
|
| 203 | - while ( $days > 0 ) { |
|
| 204 | - |
|
| 205 | - $key = date( 'W', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 206 | - $label = date_i18n( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 207 | - $return[ $key ] = $label; |
|
| 208 | - $days--; |
|
| 209 | - |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - return $return; |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - /** |
|
| 216 | - * Displays the report card. |
|
| 217 | - * |
|
| 218 | - */ |
|
| 219 | - public function display() { |
|
| 220 | - ?> |
|
| 126 | + $sql = isset( $ranges[ $range ] ) ? $ranges[ $range ] : $ranges[ '7_days' ]; |
|
| 127 | + return apply_filters( 'getpaid_earning_graphs_get_range_sql', $sql, $range ); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * Retrieves the hours in a day |
|
| 133 | + * |
|
| 134 | + */ |
|
| 135 | + public function get_hours_in_a_day() { |
|
| 136 | + |
|
| 137 | + return array( |
|
| 138 | + '12AM' => __( '12 AM', 'invoicing'), |
|
| 139 | + '1AM' => __( '1 AM', 'invoicing'), |
|
| 140 | + '2AM' => __( '2 AM', 'invoicing'), |
|
| 141 | + '3AM' => __( '3 AM', 'invoicing'), |
|
| 142 | + '4AM' => __( '4 AM', 'invoicing'), |
|
| 143 | + '5AM' => __( '5 AM', 'invoicing'), |
|
| 144 | + '6AM' => __( '6 AM', 'invoicing'), |
|
| 145 | + '7AM' => __( '7 AM', 'invoicing'), |
|
| 146 | + '8AM' => __( '8 AM', 'invoicing'), |
|
| 147 | + '9AM' => __( '9 AM', 'invoicing'), |
|
| 148 | + '10AM' => __( '10 AM', 'invoicing'), |
|
| 149 | + '11AM' => __( '11 AM', 'invoicing'), |
|
| 150 | + '12pm' => __( '12 PM', 'invoicing'), |
|
| 151 | + '1PM' => __( '1 PM', 'invoicing'), |
|
| 152 | + '2PM' => __( '2 PM', 'invoicing'), |
|
| 153 | + '3PM' => __( '3 PM', 'invoicing'), |
|
| 154 | + '4PM' => __( '4 PM', 'invoicing'), |
|
| 155 | + '5PM' => __( '5 PM', 'invoicing'), |
|
| 156 | + '6PM' => __( '6 PM', 'invoicing'), |
|
| 157 | + '7PM' => __( '7 PM', 'invoicing'), |
|
| 158 | + '8PM' => __( '8 PM', 'invoicing'), |
|
| 159 | + '9PM' => __( '9 PM', 'invoicing'), |
|
| 160 | + '10PM' => __( '10 PM', 'invoicing'), |
|
| 161 | + '11PM' => __( '11 PM', 'invoicing'), |
|
| 162 | + ); |
|
| 163 | + |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * Retrieves the days in a period |
|
| 168 | + * |
|
| 169 | + */ |
|
| 170 | + public function get_days_in_period( $days ) { |
|
| 171 | + |
|
| 172 | + $return = array(); |
|
| 173 | + $format = 'Y-m-d'; |
|
| 174 | + |
|
| 175 | + if ( $days < 8 ) { |
|
| 176 | + $format = 'D'; |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + if ( $days < 32 ) { |
|
| 180 | + $format = 'M j'; |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + while ( $days > 0 ) { |
|
| 184 | + |
|
| 185 | + $key = date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 186 | + $label = date_i18n( $format, strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 187 | + $return[ $key ] = $label; |
|
| 188 | + $days--; |
|
| 189 | + |
|
| 190 | + } |
|
| 191 | + |
|
| 192 | + return $return; |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + /** |
|
| 196 | + * Retrieves the weeks in a period |
|
| 197 | + * |
|
| 198 | + */ |
|
| 199 | + public function get_weeks_in_period( $days ) { |
|
| 200 | + |
|
| 201 | + $return = array(); |
|
| 202 | + |
|
| 203 | + while ( $days > 0 ) { |
|
| 204 | + |
|
| 205 | + $key = date( 'W', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 206 | + $label = date_i18n( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 207 | + $return[ $key ] = $label; |
|
| 208 | + $days--; |
|
| 209 | + |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + return $return; |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + /** |
|
| 216 | + * Displays the report card. |
|
| 217 | + * |
|
| 218 | + */ |
|
| 219 | + public function display() { |
|
| 220 | + ?> |
|
| 221 | 221 | |
| 222 | 222 | <div class="row"> |
| 223 | 223 | <div class="col-12"> |
@@ -231,20 +231,20 @@ discard block |
||
| 231 | 231 | |
| 232 | 232 | <?php |
| 233 | 233 | |
| 234 | - } |
|
| 235 | - |
|
| 236 | - /** |
|
| 237 | - * Prepares the report stats. |
|
| 238 | - * |
|
| 239 | - * Extend this in child classes. |
|
| 240 | - */ |
|
| 241 | - abstract public function prepare_stats(); |
|
| 242 | - |
|
| 243 | - /** |
|
| 244 | - * Displays the actual report. |
|
| 245 | - * |
|
| 246 | - * Extend this in child classes. |
|
| 247 | - */ |
|
| 248 | - abstract public function display_stats(); |
|
| 234 | + } |
|
| 235 | + |
|
| 236 | + /** |
|
| 237 | + * Prepares the report stats. |
|
| 238 | + * |
|
| 239 | + * Extend this in child classes. |
|
| 240 | + */ |
|
| 241 | + abstract public function prepare_stats(); |
|
| 242 | + |
|
| 243 | + /** |
|
| 244 | + * Displays the actual report. |
|
| 245 | + * |
|
| 246 | + * Extend this in child classes. |
|
| 247 | + */ |
|
| 248 | + abstract public function display_stats(); |
|
| 249 | 249 | |
| 250 | 250 | } |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Reports_Abstract_Report Class. |
@@ -32,8 +32,8 @@ discard block |
||
| 32 | 32 | public function get_range() { |
| 33 | 33 | $valid_ranges = $this->get_periods(); |
| 34 | 34 | |
| 35 | - if ( isset( $_GET['date_range'] ) && array_key_exists( $_GET['date_range'], $valid_ranges ) ) { |
|
| 36 | - return sanitize_key( $_GET['date_range'] ); |
|
| 35 | + if (isset($_GET['date_range']) && array_key_exists($_GET['date_range'], $valid_ranges)) { |
|
| 36 | + return sanitize_key($_GET['date_range']); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | return '7_days'; |
@@ -47,37 +47,37 @@ discard block |
||
| 47 | 47 | public function get_periods() { |
| 48 | 48 | |
| 49 | 49 | $periods = array( |
| 50 | - 'today' => __( 'Today', 'invoicing' ), |
|
| 51 | - 'yesterday' => __( 'Yesterday', 'invoicing' ), |
|
| 52 | - '7_days' => __( 'Last 7 days', 'invoicing' ), |
|
| 53 | - '30_days' => __( 'Last 30 days', 'invoicing' ), |
|
| 54 | - '60_days' => __( 'Last 60 days', 'invoicing' ), |
|
| 55 | - '90_days' => __( 'Last 90 days', 'invoicing' ), |
|
| 56 | - '180_days' => __( 'Last 180 days', 'invoicing' ), |
|
| 57 | - '360_days' => __( 'Last 360 days', 'invoicing' ), |
|
| 50 | + 'today' => __('Today', 'invoicing'), |
|
| 51 | + 'yesterday' => __('Yesterday', 'invoicing'), |
|
| 52 | + '7_days' => __('Last 7 days', 'invoicing'), |
|
| 53 | + '30_days' => __('Last 30 days', 'invoicing'), |
|
| 54 | + '60_days' => __('Last 60 days', 'invoicing'), |
|
| 55 | + '90_days' => __('Last 90 days', 'invoicing'), |
|
| 56 | + '180_days' => __('Last 180 days', 'invoicing'), |
|
| 57 | + '360_days' => __('Last 360 days', 'invoicing'), |
|
| 58 | 58 | ); |
| 59 | 59 | |
| 60 | - return apply_filters( 'getpaid_earning_periods', $periods ); |
|
| 60 | + return apply_filters('getpaid_earning_periods', $periods); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Retrieves the current range's sql. |
| 65 | 65 | * |
| 66 | 66 | */ |
| 67 | - public function get_range_sql( $range ) { |
|
| 67 | + public function get_range_sql($range) { |
|
| 68 | 68 | |
| 69 | - $date = 'CAST(meta.completed_date AS DATE)'; |
|
| 69 | + $date = 'CAST(meta.completed_date AS DATE)'; |
|
| 70 | 70 | $datetime = 'meta.completed_date'; |
| 71 | 71 | |
| 72 | 72 | // Prepare durations. |
| 73 | - $today = current_time( 'Y-m-d' ); |
|
| 74 | - $yesterday = date( 'Y-m-d', strtotime( '-1 day', current_time( 'timestamp' ) ) ); |
|
| 75 | - $seven_days_ago = date( 'Y-m-d', strtotime( '-7 days', current_time( 'timestamp' ) ) ); |
|
| 76 | - $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days', current_time( 'timestamp' ) ) ); |
|
| 77 | - $ninety_days_ago = date( 'Y-m-d', strtotime( '-90 days', current_time( 'timestamp' ) ) ); |
|
| 78 | - $sixty_days_ago = date( 'Y-m-d', strtotime( '-60 days', current_time( 'timestamp' ) ) ); |
|
| 79 | - $one_eighty_days_ago = date( 'Y-m-d', strtotime( '-180 days', current_time( 'timestamp' ) ) ); |
|
| 80 | - $three_sixty_days_ago = date( 'Y-m-d', strtotime( '-360 days', current_time( 'timestamp' ) ) ); |
|
| 73 | + $today = current_time('Y-m-d'); |
|
| 74 | + $yesterday = date('Y-m-d', strtotime('-1 day', current_time('timestamp'))); |
|
| 75 | + $seven_days_ago = date('Y-m-d', strtotime('-7 days', current_time('timestamp'))); |
|
| 76 | + $thirty_days_ago = date('Y-m-d', strtotime('-30 days', current_time('timestamp'))); |
|
| 77 | + $ninety_days_ago = date('Y-m-d', strtotime('-90 days', current_time('timestamp'))); |
|
| 78 | + $sixty_days_ago = date('Y-m-d', strtotime('-60 days', current_time('timestamp'))); |
|
| 79 | + $one_eighty_days_ago = date('Y-m-d', strtotime('-180 days', current_time('timestamp'))); |
|
| 80 | + $three_sixty_days_ago = date('Y-m-d', strtotime('-360 days', current_time('timestamp'))); |
|
| 81 | 81 | |
| 82 | 82 | $ranges = array( |
| 83 | 83 | |
@@ -123,8 +123,8 @@ discard block |
||
| 123 | 123 | |
| 124 | 124 | ); |
| 125 | 125 | |
| 126 | - $sql = isset( $ranges[ $range ] ) ? $ranges[ $range ] : $ranges[ '7_days' ]; |
|
| 127 | - return apply_filters( 'getpaid_earning_graphs_get_range_sql', $sql, $range ); |
|
| 126 | + $sql = isset($ranges[$range]) ? $ranges[$range] : $ranges['7_days']; |
|
| 127 | + return apply_filters('getpaid_earning_graphs_get_range_sql', $sql, $range); |
|
| 128 | 128 | |
| 129 | 129 | } |
| 130 | 130 | |
@@ -135,30 +135,30 @@ discard block |
||
| 135 | 135 | public function get_hours_in_a_day() { |
| 136 | 136 | |
| 137 | 137 | return array( |
| 138 | - '12AM' => __( '12 AM', 'invoicing'), |
|
| 139 | - '1AM' => __( '1 AM', 'invoicing'), |
|
| 140 | - '2AM' => __( '2 AM', 'invoicing'), |
|
| 141 | - '3AM' => __( '3 AM', 'invoicing'), |
|
| 142 | - '4AM' => __( '4 AM', 'invoicing'), |
|
| 143 | - '5AM' => __( '5 AM', 'invoicing'), |
|
| 144 | - '6AM' => __( '6 AM', 'invoicing'), |
|
| 145 | - '7AM' => __( '7 AM', 'invoicing'), |
|
| 146 | - '8AM' => __( '8 AM', 'invoicing'), |
|
| 147 | - '9AM' => __( '9 AM', 'invoicing'), |
|
| 148 | - '10AM' => __( '10 AM', 'invoicing'), |
|
| 149 | - '11AM' => __( '11 AM', 'invoicing'), |
|
| 150 | - '12pm' => __( '12 PM', 'invoicing'), |
|
| 151 | - '1PM' => __( '1 PM', 'invoicing'), |
|
| 152 | - '2PM' => __( '2 PM', 'invoicing'), |
|
| 153 | - '3PM' => __( '3 PM', 'invoicing'), |
|
| 154 | - '4PM' => __( '4 PM', 'invoicing'), |
|
| 155 | - '5PM' => __( '5 PM', 'invoicing'), |
|
| 156 | - '6PM' => __( '6 PM', 'invoicing'), |
|
| 157 | - '7PM' => __( '7 PM', 'invoicing'), |
|
| 158 | - '8PM' => __( '8 PM', 'invoicing'), |
|
| 159 | - '9PM' => __( '9 PM', 'invoicing'), |
|
| 160 | - '10PM' => __( '10 PM', 'invoicing'), |
|
| 161 | - '11PM' => __( '11 PM', 'invoicing'), |
|
| 138 | + '12AM' => __('12 AM', 'invoicing'), |
|
| 139 | + '1AM' => __('1 AM', 'invoicing'), |
|
| 140 | + '2AM' => __('2 AM', 'invoicing'), |
|
| 141 | + '3AM' => __('3 AM', 'invoicing'), |
|
| 142 | + '4AM' => __('4 AM', 'invoicing'), |
|
| 143 | + '5AM' => __('5 AM', 'invoicing'), |
|
| 144 | + '6AM' => __('6 AM', 'invoicing'), |
|
| 145 | + '7AM' => __('7 AM', 'invoicing'), |
|
| 146 | + '8AM' => __('8 AM', 'invoicing'), |
|
| 147 | + '9AM' => __('9 AM', 'invoicing'), |
|
| 148 | + '10AM' => __('10 AM', 'invoicing'), |
|
| 149 | + '11AM' => __('11 AM', 'invoicing'), |
|
| 150 | + '12pm' => __('12 PM', 'invoicing'), |
|
| 151 | + '1PM' => __('1 PM', 'invoicing'), |
|
| 152 | + '2PM' => __('2 PM', 'invoicing'), |
|
| 153 | + '3PM' => __('3 PM', 'invoicing'), |
|
| 154 | + '4PM' => __('4 PM', 'invoicing'), |
|
| 155 | + '5PM' => __('5 PM', 'invoicing'), |
|
| 156 | + '6PM' => __('6 PM', 'invoicing'), |
|
| 157 | + '7PM' => __('7 PM', 'invoicing'), |
|
| 158 | + '8PM' => __('8 PM', 'invoicing'), |
|
| 159 | + '9PM' => __('9 PM', 'invoicing'), |
|
| 160 | + '10PM' => __('10 PM', 'invoicing'), |
|
| 161 | + '11PM' => __('11 PM', 'invoicing'), |
|
| 162 | 162 | ); |
| 163 | 163 | |
| 164 | 164 | } |
@@ -167,24 +167,24 @@ discard block |
||
| 167 | 167 | * Retrieves the days in a period |
| 168 | 168 | * |
| 169 | 169 | */ |
| 170 | - public function get_days_in_period( $days ) { |
|
| 170 | + public function get_days_in_period($days) { |
|
| 171 | 171 | |
| 172 | 172 | $return = array(); |
| 173 | 173 | $format = 'Y-m-d'; |
| 174 | 174 | |
| 175 | - if ( $days < 8 ) { |
|
| 175 | + if ($days < 8) { |
|
| 176 | 176 | $format = 'D'; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( $days < 32 ) { |
|
| 179 | + if ($days < 32) { |
|
| 180 | 180 | $format = 'M j'; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - while ( $days > 0 ) { |
|
| 183 | + while ($days > 0) { |
|
| 184 | 184 | |
| 185 | - $key = date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 186 | - $label = date_i18n( $format, strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 187 | - $return[ $key ] = $label; |
|
| 185 | + $key = date('Y-m-d', strtotime("-$days days", current_time('timestamp'))); |
|
| 186 | + $label = date_i18n($format, strtotime("-$days days", current_time('timestamp'))); |
|
| 187 | + $return[$key] = $label; |
|
| 188 | 188 | $days--; |
| 189 | 189 | |
| 190 | 190 | } |
@@ -196,15 +196,15 @@ discard block |
||
| 196 | 196 | * Retrieves the weeks in a period |
| 197 | 197 | * |
| 198 | 198 | */ |
| 199 | - public function get_weeks_in_period( $days ) { |
|
| 199 | + public function get_weeks_in_period($days) { |
|
| 200 | 200 | |
| 201 | 201 | $return = array(); |
| 202 | 202 | |
| 203 | - while ( $days > 0 ) { |
|
| 203 | + while ($days > 0) { |
|
| 204 | 204 | |
| 205 | - $key = date( 'W', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 206 | - $label = date_i18n( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ); |
|
| 207 | - $return[ $key ] = $label; |
|
| 205 | + $key = date('W', strtotime("-$days days", current_time('timestamp'))); |
|
| 206 | + $label = date_i18n('Y-m-d', strtotime("-$days days", current_time('timestamp'))); |
|
| 207 | + $return[$key] = $label; |
|
| 208 | 208 | $days--; |
| 209 | 209 | |
| 210 | 210 | } |
@@ -13,154 +13,154 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | class GetPaid_MaxMind_Database_Service { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * The name of the MaxMind database to utilize. |
|
| 18 | - */ |
|
| 19 | - const DATABASE = 'GeoLite2-Country'; |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * The extension for the MaxMind database. |
|
| 23 | - */ |
|
| 24 | - const DATABASE_EXTENSION = '.mmdb'; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * A prefix for the MaxMind database filename. |
|
| 28 | - * |
|
| 29 | - * @var string |
|
| 30 | - */ |
|
| 31 | - private $database_prefix; |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * Class constructor. |
|
| 35 | - * |
|
| 36 | - * @param string|null $database_prefix A prefix for the MaxMind database filename. |
|
| 37 | - */ |
|
| 38 | - public function __construct( $database_prefix ) { |
|
| 39 | - $this->database_prefix = $database_prefix; |
|
| 40 | - } |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * Fetches the path that the database should be stored. |
|
| 44 | - * |
|
| 45 | - * @return string The local database path. |
|
| 46 | - */ |
|
| 47 | - public function get_database_path() { |
|
| 48 | - $uploads_dir = wp_upload_dir(); |
|
| 49 | - |
|
| 50 | - $database_path = trailingslashit( $uploads_dir['basedir'] ) . 'invoicing/'; |
|
| 51 | - if ( ! empty( $this->database_prefix ) ) { |
|
| 52 | - $database_path .= $this->database_prefix . '-'; |
|
| 53 | - } |
|
| 54 | - $database_path .= self::DATABASE . self::DATABASE_EXTENSION; |
|
| 55 | - |
|
| 56 | - // Filter the geolocation database storage path. |
|
| 57 | - return apply_filters( 'getpaid_maxmind_geolocation_database_path', $database_path ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * Fetches the database from the MaxMind service. |
|
| 62 | - * |
|
| 63 | - * @param string $license_key The license key to be used when downloading the database. |
|
| 64 | - * @return string|WP_Error The path to the database file or an error if invalid. |
|
| 65 | - */ |
|
| 66 | - public function download_database( $license_key ) { |
|
| 67 | - |
|
| 68 | - $download_uri = add_query_arg( |
|
| 69 | - array( |
|
| 70 | - 'edition_id' => self::DATABASE, |
|
| 71 | - 'license_key' => urlencode( wpinv_clean( $license_key ) ), |
|
| 72 | - 'suffix' => 'tar.gz', |
|
| 73 | - ), |
|
| 74 | - 'https://download.maxmind.com/app/geoip_download' |
|
| 75 | - ); |
|
| 76 | - |
|
| 77 | - // Needed for the download_url call right below. |
|
| 78 | - require_once ABSPATH . 'wp-admin/includes/file.php'; |
|
| 79 | - |
|
| 80 | - $tmp_archive_path = download_url( esc_url_raw( $download_uri ) ); |
|
| 81 | - |
|
| 82 | - if ( is_wp_error( $tmp_archive_path ) ) { |
|
| 83 | - // Transform the error into something more informative. |
|
| 84 | - $error_data = $tmp_archive_path->get_error_data(); |
|
| 85 | - if ( isset( $error_data['code'] ) && $error_data['code'] == 401 ) { |
|
| 86 | - return new WP_Error( |
|
| 87 | - 'getpaid_maxmind_geolocation_database_license_key', |
|
| 88 | - __( 'The MaxMind license key is invalid. If you have recently created this key, you may need to wait for it to become active.', 'invoicing' ) |
|
| 89 | - ); |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - return new WP_Error( 'getpaid_maxmind_geolocation_database_download', __( 'Failed to download the MaxMind database.', 'invoicing' ) ); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - // Extract the database from the archive. |
|
| 96 | - return $this->extract_downloaded_database( $tmp_archive_path ); |
|
| 97 | - |
|
| 98 | - } |
|
| 99 | - |
|
| 100 | - /** |
|
| 101 | - * Extracts the downloaded database. |
|
| 102 | - * |
|
| 103 | - * @param string $tmp_archive_path The database archive path. |
|
| 104 | - * @return string|WP_Error The path to the database file or an error if invalid. |
|
| 105 | - */ |
|
| 106 | - protected function extract_downloaded_database( $tmp_archive_path ) { |
|
| 107 | - |
|
| 108 | - // Extract the database from the archive. |
|
| 109 | - $tmp_database_path = ''; |
|
| 110 | - |
|
| 111 | - try { |
|
| 112 | - |
|
| 113 | - $file = new PharData( $tmp_archive_path ); |
|
| 114 | - $tmp_database_path = trailingslashit( dirname( $tmp_archive_path ) ) . trailingslashit( $file->current()->getFilename() ) . self::DATABASE . self::DATABASE_EXTENSION; |
|
| 115 | - |
|
| 116 | - $file->extractTo( |
|
| 117 | - dirname( $tmp_archive_path ), |
|
| 118 | - trailingslashit( $file->current()->getFilename() ) . self::DATABASE . self::DATABASE_EXTENSION, |
|
| 119 | - true |
|
| 120 | - ); |
|
| 121 | - |
|
| 122 | - } catch ( Exception $exception ) { |
|
| 123 | - return new WP_Error( 'invoicing_maxmind_geolocation_database_archive', $exception->getMessage() ); |
|
| 124 | - } finally { |
|
| 125 | - // Remove the archive since we only care about a single file in it. |
|
| 126 | - unlink( $tmp_archive_path ); |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - return $tmp_database_path; |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - /** |
|
| 133 | - * Fetches the ISO country code associated with an IP address. |
|
| 134 | - * |
|
| 135 | - * @param string $ip_address The IP address to find the country code for. |
|
| 136 | - * @return string The country code for the IP address, or empty if not found. |
|
| 137 | - */ |
|
| 138 | - public function get_iso_country_code_for_ip( $ip_address ) { |
|
| 139 | - $country_code = ''; |
|
| 140 | - |
|
| 141 | - if ( ! class_exists( 'MaxMind\Db\Reader' ) ) { |
|
| 142 | - return $country_code; |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - $database_path = $this->get_database_path(); |
|
| 146 | - if ( ! file_exists( $database_path ) ) { |
|
| 147 | - return $country_code; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - try { |
|
| 151 | - $reader = new MaxMind\Db\Reader( $database_path ); |
|
| 152 | - $data = $reader->get( $ip_address ); |
|
| 153 | - |
|
| 154 | - if ( isset( $data['country']['iso_code'] ) ) { |
|
| 155 | - $country_code = $data['country']['iso_code']; |
|
| 156 | - } |
|
| 157 | - |
|
| 158 | - $reader->close(); |
|
| 159 | - } catch ( Exception $e ) { |
|
| 160 | - wpinv_error_log( $e->getMessage(), 'SOURCE: MaxMind GeoLocation' ); |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - return $country_code; |
|
| 164 | - } |
|
| 16 | + /** |
|
| 17 | + * The name of the MaxMind database to utilize. |
|
| 18 | + */ |
|
| 19 | + const DATABASE = 'GeoLite2-Country'; |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * The extension for the MaxMind database. |
|
| 23 | + */ |
|
| 24 | + const DATABASE_EXTENSION = '.mmdb'; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * A prefix for the MaxMind database filename. |
|
| 28 | + * |
|
| 29 | + * @var string |
|
| 30 | + */ |
|
| 31 | + private $database_prefix; |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * Class constructor. |
|
| 35 | + * |
|
| 36 | + * @param string|null $database_prefix A prefix for the MaxMind database filename. |
|
| 37 | + */ |
|
| 38 | + public function __construct( $database_prefix ) { |
|
| 39 | + $this->database_prefix = $database_prefix; |
|
| 40 | + } |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * Fetches the path that the database should be stored. |
|
| 44 | + * |
|
| 45 | + * @return string The local database path. |
|
| 46 | + */ |
|
| 47 | + public function get_database_path() { |
|
| 48 | + $uploads_dir = wp_upload_dir(); |
|
| 49 | + |
|
| 50 | + $database_path = trailingslashit( $uploads_dir['basedir'] ) . 'invoicing/'; |
|
| 51 | + if ( ! empty( $this->database_prefix ) ) { |
|
| 52 | + $database_path .= $this->database_prefix . '-'; |
|
| 53 | + } |
|
| 54 | + $database_path .= self::DATABASE . self::DATABASE_EXTENSION; |
|
| 55 | + |
|
| 56 | + // Filter the geolocation database storage path. |
|
| 57 | + return apply_filters( 'getpaid_maxmind_geolocation_database_path', $database_path ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * Fetches the database from the MaxMind service. |
|
| 62 | + * |
|
| 63 | + * @param string $license_key The license key to be used when downloading the database. |
|
| 64 | + * @return string|WP_Error The path to the database file or an error if invalid. |
|
| 65 | + */ |
|
| 66 | + public function download_database( $license_key ) { |
|
| 67 | + |
|
| 68 | + $download_uri = add_query_arg( |
|
| 69 | + array( |
|
| 70 | + 'edition_id' => self::DATABASE, |
|
| 71 | + 'license_key' => urlencode( wpinv_clean( $license_key ) ), |
|
| 72 | + 'suffix' => 'tar.gz', |
|
| 73 | + ), |
|
| 74 | + 'https://download.maxmind.com/app/geoip_download' |
|
| 75 | + ); |
|
| 76 | + |
|
| 77 | + // Needed for the download_url call right below. |
|
| 78 | + require_once ABSPATH . 'wp-admin/includes/file.php'; |
|
| 79 | + |
|
| 80 | + $tmp_archive_path = download_url( esc_url_raw( $download_uri ) ); |
|
| 81 | + |
|
| 82 | + if ( is_wp_error( $tmp_archive_path ) ) { |
|
| 83 | + // Transform the error into something more informative. |
|
| 84 | + $error_data = $tmp_archive_path->get_error_data(); |
|
| 85 | + if ( isset( $error_data['code'] ) && $error_data['code'] == 401 ) { |
|
| 86 | + return new WP_Error( |
|
| 87 | + 'getpaid_maxmind_geolocation_database_license_key', |
|
| 88 | + __( 'The MaxMind license key is invalid. If you have recently created this key, you may need to wait for it to become active.', 'invoicing' ) |
|
| 89 | + ); |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + return new WP_Error( 'getpaid_maxmind_geolocation_database_download', __( 'Failed to download the MaxMind database.', 'invoicing' ) ); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + // Extract the database from the archive. |
|
| 96 | + return $this->extract_downloaded_database( $tmp_archive_path ); |
|
| 97 | + |
|
| 98 | + } |
|
| 99 | + |
|
| 100 | + /** |
|
| 101 | + * Extracts the downloaded database. |
|
| 102 | + * |
|
| 103 | + * @param string $tmp_archive_path The database archive path. |
|
| 104 | + * @return string|WP_Error The path to the database file or an error if invalid. |
|
| 105 | + */ |
|
| 106 | + protected function extract_downloaded_database( $tmp_archive_path ) { |
|
| 107 | + |
|
| 108 | + // Extract the database from the archive. |
|
| 109 | + $tmp_database_path = ''; |
|
| 110 | + |
|
| 111 | + try { |
|
| 112 | + |
|
| 113 | + $file = new PharData( $tmp_archive_path ); |
|
| 114 | + $tmp_database_path = trailingslashit( dirname( $tmp_archive_path ) ) . trailingslashit( $file->current()->getFilename() ) . self::DATABASE . self::DATABASE_EXTENSION; |
|
| 115 | + |
|
| 116 | + $file->extractTo( |
|
| 117 | + dirname( $tmp_archive_path ), |
|
| 118 | + trailingslashit( $file->current()->getFilename() ) . self::DATABASE . self::DATABASE_EXTENSION, |
|
| 119 | + true |
|
| 120 | + ); |
|
| 121 | + |
|
| 122 | + } catch ( Exception $exception ) { |
|
| 123 | + return new WP_Error( 'invoicing_maxmind_geolocation_database_archive', $exception->getMessage() ); |
|
| 124 | + } finally { |
|
| 125 | + // Remove the archive since we only care about a single file in it. |
|
| 126 | + unlink( $tmp_archive_path ); |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + return $tmp_database_path; |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + /** |
|
| 133 | + * Fetches the ISO country code associated with an IP address. |
|
| 134 | + * |
|
| 135 | + * @param string $ip_address The IP address to find the country code for. |
|
| 136 | + * @return string The country code for the IP address, or empty if not found. |
|
| 137 | + */ |
|
| 138 | + public function get_iso_country_code_for_ip( $ip_address ) { |
|
| 139 | + $country_code = ''; |
|
| 140 | + |
|
| 141 | + if ( ! class_exists( 'MaxMind\Db\Reader' ) ) { |
|
| 142 | + return $country_code; |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + $database_path = $this->get_database_path(); |
|
| 146 | + if ( ! file_exists( $database_path ) ) { |
|
| 147 | + return $country_code; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + try { |
|
| 151 | + $reader = new MaxMind\Db\Reader( $database_path ); |
|
| 152 | + $data = $reader->get( $ip_address ); |
|
| 153 | + |
|
| 154 | + if ( isset( $data['country']['iso_code'] ) ) { |
|
| 155 | + $country_code = $data['country']['iso_code']; |
|
| 156 | + } |
|
| 157 | + |
|
| 158 | + $reader->close(); |
|
| 159 | + } catch ( Exception $e ) { |
|
| 160 | + wpinv_error_log( $e->getMessage(), 'SOURCE: MaxMind GeoLocation' ); |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + return $country_code; |
|
| 164 | + } |
|
| 165 | 165 | |
| 166 | 166 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * The service class responsible for interacting with MaxMind databases. |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | * |
| 36 | 36 | * @param string|null $database_prefix A prefix for the MaxMind database filename. |
| 37 | 37 | */ |
| 38 | - public function __construct( $database_prefix ) { |
|
| 38 | + public function __construct($database_prefix) { |
|
| 39 | 39 | $this->database_prefix = $database_prefix; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -47,14 +47,14 @@ discard block |
||
| 47 | 47 | public function get_database_path() { |
| 48 | 48 | $uploads_dir = wp_upload_dir(); |
| 49 | 49 | |
| 50 | - $database_path = trailingslashit( $uploads_dir['basedir'] ) . 'invoicing/'; |
|
| 51 | - if ( ! empty( $this->database_prefix ) ) { |
|
| 50 | + $database_path = trailingslashit($uploads_dir['basedir']) . 'invoicing/'; |
|
| 51 | + if (!empty($this->database_prefix)) { |
|
| 52 | 52 | $database_path .= $this->database_prefix . '-'; |
| 53 | 53 | } |
| 54 | 54 | $database_path .= self::DATABASE . self::DATABASE_EXTENSION; |
| 55 | 55 | |
| 56 | 56 | // Filter the geolocation database storage path. |
| 57 | - return apply_filters( 'getpaid_maxmind_geolocation_database_path', $database_path ); |
|
| 57 | + return apply_filters('getpaid_maxmind_geolocation_database_path', $database_path); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
@@ -63,12 +63,12 @@ discard block |
||
| 63 | 63 | * @param string $license_key The license key to be used when downloading the database. |
| 64 | 64 | * @return string|WP_Error The path to the database file or an error if invalid. |
| 65 | 65 | */ |
| 66 | - public function download_database( $license_key ) { |
|
| 66 | + public function download_database($license_key) { |
|
| 67 | 67 | |
| 68 | 68 | $download_uri = add_query_arg( |
| 69 | 69 | array( |
| 70 | 70 | 'edition_id' => self::DATABASE, |
| 71 | - 'license_key' => urlencode( wpinv_clean( $license_key ) ), |
|
| 71 | + 'license_key' => urlencode(wpinv_clean($license_key)), |
|
| 72 | 72 | 'suffix' => 'tar.gz', |
| 73 | 73 | ), |
| 74 | 74 | 'https://download.maxmind.com/app/geoip_download' |
@@ -77,23 +77,23 @@ discard block |
||
| 77 | 77 | // Needed for the download_url call right below. |
| 78 | 78 | require_once ABSPATH . 'wp-admin/includes/file.php'; |
| 79 | 79 | |
| 80 | - $tmp_archive_path = download_url( esc_url_raw( $download_uri ) ); |
|
| 80 | + $tmp_archive_path = download_url(esc_url_raw($download_uri)); |
|
| 81 | 81 | |
| 82 | - if ( is_wp_error( $tmp_archive_path ) ) { |
|
| 82 | + if (is_wp_error($tmp_archive_path)) { |
|
| 83 | 83 | // Transform the error into something more informative. |
| 84 | 84 | $error_data = $tmp_archive_path->get_error_data(); |
| 85 | - if ( isset( $error_data['code'] ) && $error_data['code'] == 401 ) { |
|
| 85 | + if (isset($error_data['code']) && $error_data['code'] == 401) { |
|
| 86 | 86 | return new WP_Error( |
| 87 | 87 | 'getpaid_maxmind_geolocation_database_license_key', |
| 88 | - __( 'The MaxMind license key is invalid. If you have recently created this key, you may need to wait for it to become active.', 'invoicing' ) |
|
| 88 | + __('The MaxMind license key is invalid. If you have recently created this key, you may need to wait for it to become active.', 'invoicing') |
|
| 89 | 89 | ); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - return new WP_Error( 'getpaid_maxmind_geolocation_database_download', __( 'Failed to download the MaxMind database.', 'invoicing' ) ); |
|
| 92 | + return new WP_Error('getpaid_maxmind_geolocation_database_download', __('Failed to download the MaxMind database.', 'invoicing')); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // Extract the database from the archive. |
| 96 | - return $this->extract_downloaded_database( $tmp_archive_path ); |
|
| 96 | + return $this->extract_downloaded_database($tmp_archive_path); |
|
| 97 | 97 | |
| 98 | 98 | } |
| 99 | 99 | |
@@ -103,27 +103,27 @@ discard block |
||
| 103 | 103 | * @param string $tmp_archive_path The database archive path. |
| 104 | 104 | * @return string|WP_Error The path to the database file or an error if invalid. |
| 105 | 105 | */ |
| 106 | - protected function extract_downloaded_database( $tmp_archive_path ) { |
|
| 106 | + protected function extract_downloaded_database($tmp_archive_path) { |
|
| 107 | 107 | |
| 108 | 108 | // Extract the database from the archive. |
| 109 | 109 | $tmp_database_path = ''; |
| 110 | 110 | |
| 111 | 111 | try { |
| 112 | 112 | |
| 113 | - $file = new PharData( $tmp_archive_path ); |
|
| 114 | - $tmp_database_path = trailingslashit( dirname( $tmp_archive_path ) ) . trailingslashit( $file->current()->getFilename() ) . self::DATABASE . self::DATABASE_EXTENSION; |
|
| 113 | + $file = new PharData($tmp_archive_path); |
|
| 114 | + $tmp_database_path = trailingslashit(dirname($tmp_archive_path)) . trailingslashit($file->current()->getFilename()) . self::DATABASE . self::DATABASE_EXTENSION; |
|
| 115 | 115 | |
| 116 | 116 | $file->extractTo( |
| 117 | - dirname( $tmp_archive_path ), |
|
| 118 | - trailingslashit( $file->current()->getFilename() ) . self::DATABASE . self::DATABASE_EXTENSION, |
|
| 117 | + dirname($tmp_archive_path), |
|
| 118 | + trailingslashit($file->current()->getFilename()) . self::DATABASE . self::DATABASE_EXTENSION, |
|
| 119 | 119 | true |
| 120 | 120 | ); |
| 121 | 121 | |
| 122 | - } catch ( Exception $exception ) { |
|
| 123 | - return new WP_Error( 'invoicing_maxmind_geolocation_database_archive', $exception->getMessage() ); |
|
| 122 | + } catch (Exception $exception) { |
|
| 123 | + return new WP_Error('invoicing_maxmind_geolocation_database_archive', $exception->getMessage()); |
|
| 124 | 124 | } finally { |
| 125 | 125 | // Remove the archive since we only care about a single file in it. |
| 126 | - unlink( $tmp_archive_path ); |
|
| 126 | + unlink($tmp_archive_path); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | return $tmp_database_path; |
@@ -135,29 +135,29 @@ discard block |
||
| 135 | 135 | * @param string $ip_address The IP address to find the country code for. |
| 136 | 136 | * @return string The country code for the IP address, or empty if not found. |
| 137 | 137 | */ |
| 138 | - public function get_iso_country_code_for_ip( $ip_address ) { |
|
| 138 | + public function get_iso_country_code_for_ip($ip_address) { |
|
| 139 | 139 | $country_code = ''; |
| 140 | 140 | |
| 141 | - if ( ! class_exists( 'MaxMind\Db\Reader' ) ) { |
|
| 141 | + if (!class_exists('MaxMind\Db\Reader')) { |
|
| 142 | 142 | return $country_code; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | $database_path = $this->get_database_path(); |
| 146 | - if ( ! file_exists( $database_path ) ) { |
|
| 146 | + if (!file_exists($database_path)) { |
|
| 147 | 147 | return $country_code; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | try { |
| 151 | - $reader = new MaxMind\Db\Reader( $database_path ); |
|
| 152 | - $data = $reader->get( $ip_address ); |
|
| 151 | + $reader = new MaxMind\Db\Reader($database_path); |
|
| 152 | + $data = $reader->get($ip_address); |
|
| 153 | 153 | |
| 154 | - if ( isset( $data['country']['iso_code'] ) ) { |
|
| 154 | + if (isset($data['country']['iso_code'])) { |
|
| 155 | 155 | $country_code = $data['country']['iso_code']; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | $reader->close(); |
| 159 | - } catch ( Exception $e ) { |
|
| 160 | - wpinv_error_log( $e->getMessage(), 'SOURCE: MaxMind GeoLocation' ); |
|
| 159 | + } catch (Exception $e) { |
|
| 160 | + wpinv_error_log($e->getMessage(), 'SOURCE: MaxMind GeoLocation'); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | return $country_code; |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Reports_Report_Items Class. |
@@ -16,11 +16,11 @@ discard block |
||
| 16 | 16 | * Retrieves the earning sql. |
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | - public function get_sql( $range ) { |
|
| 19 | + public function get_sql($range) { |
|
| 20 | 20 | global $wpdb; |
| 21 | 21 | |
| 22 | 22 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 23 | - $clauses = $this->get_range_sql( $range ); |
|
| 23 | + $clauses = $this->get_range_sql($range); |
|
| 24 | 24 | |
| 25 | 25 | $sql = "SELECT |
| 26 | 26 | meta.gateway AS gateway, |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | ORDER BY total DESC |
| 36 | 36 | "; |
| 37 | 37 | |
| 38 | - return apply_filters( 'getpaid_gateways_graphs_get_sql', $sql, $range ); |
|
| 38 | + return apply_filters('getpaid_gateways_graphs_get_sql', $sql, $range); |
|
| 39 | 39 | |
| 40 | 40 | } |
| 41 | 41 | |
@@ -45,30 +45,30 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | public function prepare_stats() { |
| 47 | 47 | global $wpdb; |
| 48 | - $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 49 | - $this->stats = $this->normalize_stats( $this->stats ); |
|
| 48 | + $this->stats = $wpdb->get_results($this->get_sql($this->get_range())); |
|
| 49 | + $this->stats = $this->normalize_stats($this->stats); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * Normalizes the report stats. |
| 54 | 54 | * |
| 55 | 55 | */ |
| 56 | - public function normalize_stats( $stats ) { |
|
| 56 | + public function normalize_stats($stats) { |
|
| 57 | 57 | $normalized = array(); |
| 58 | 58 | $others = 0; |
| 59 | 59 | $did = 0; |
| 60 | 60 | |
| 61 | - foreach ( $stats as $stat ) { |
|
| 61 | + foreach ($stats as $stat) { |
|
| 62 | 62 | |
| 63 | - if ( $did > 4 ) { |
|
| 63 | + if ($did > 4) { |
|
| 64 | 64 | |
| 65 | - $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 65 | + $others += wpinv_round_amount(wpinv_sanitize_amount($stat->total)); |
|
| 66 | 66 | |
| 67 | 67 | } else { |
| 68 | 68 | |
| 69 | 69 | $normalized[] = array( |
| 70 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 71 | - 'gateway' => strip_tags( wpinv_get_gateway_admin_label( $stat->gateway ) ), |
|
| 70 | + 'total' => wpinv_round_amount(wpinv_sanitize_amount($stat->total)), |
|
| 71 | + 'gateway' => strip_tags(wpinv_get_gateway_admin_label($stat->gateway)), |
|
| 72 | 72 | ); |
| 73 | 73 | |
| 74 | 74 | } |
@@ -76,11 +76,11 @@ discard block |
||
| 76 | 76 | $did++; |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - if ( $others > 0 ) { |
|
| 79 | + if ($others > 0) { |
|
| 80 | 80 | |
| 81 | 81 | $normalized[] = array( |
| 82 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 83 | - 'gateway' => esc_html__( 'Others', 'invoicing' ), |
|
| 82 | + 'total' => wpinv_round_amount(wpinv_sanitize_amount($others)), |
|
| 83 | + 'gateway' => esc_html__('Others', 'invoicing'), |
|
| 84 | 84 | ); |
| 85 | 85 | |
| 86 | 86 | } |
@@ -94,10 +94,10 @@ discard block |
||
| 94 | 94 | */ |
| 95 | 95 | public function get_data() { |
| 96 | 96 | |
| 97 | - $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 98 | - $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 97 | + $data = wp_list_pluck($this->stats, 'total'); |
|
| 98 | + $colors = array('#009688', '#4caf50', '#8bc34a', '#00bcd4', '#03a9f4', '#2196f3'); |
|
| 99 | 99 | |
| 100 | - shuffle( $colors ); |
|
| 100 | + shuffle($colors); |
|
| 101 | 101 | |
| 102 | 102 | return array( |
| 103 | 103 | 'data' => $data, |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * |
| 112 | 112 | */ |
| 113 | 113 | public function get_labels() { |
| 114 | - return wp_list_pluck( $this->stats, 'gateway' ); |
|
| 114 | + return wp_list_pluck($this->stats, 'gateway'); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
@@ -132,8 +132,8 @@ discard block |
||
| 132 | 132 | { |
| 133 | 133 | type: 'doughnut', |
| 134 | 134 | data: { |
| 135 | - 'labels': <?php echo wp_json_encode( $this->get_labels() ); ?>, |
|
| 136 | - 'datasets': [ <?php echo wp_json_encode( $this->get_data() ); ?> ] |
|
| 135 | + 'labels': <?php echo wp_json_encode($this->get_labels()); ?>, |
|
| 136 | + 'datasets': [ <?php echo wp_json_encode($this->get_data()); ?> ] |
|
| 137 | 137 | }, |
| 138 | 138 | options: { |
| 139 | 139 | legend: { |
@@ -12,22 +12,22 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Report_Gateways extends GetPaid_Reports_Abstract_Report { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var string |
|
| 17 | - */ |
|
| 18 | - public $field = 'gateway'; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Retrieves the earning sql. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function get_sql( $range ) { |
|
| 25 | - global $wpdb; |
|
| 26 | - |
|
| 27 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 28 | - $clauses = $this->get_range_sql( $range ); |
|
| 29 | - |
|
| 30 | - $sql = "SELECT |
|
| 15 | + /** |
|
| 16 | + * @var string |
|
| 17 | + */ |
|
| 18 | + public $field = 'gateway'; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Retrieves the earning sql. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function get_sql( $range ) { |
|
| 25 | + global $wpdb; |
|
| 26 | + |
|
| 27 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 28 | + $clauses = $this->get_range_sql( $range ); |
|
| 29 | + |
|
| 30 | + $sql = "SELECT |
|
| 31 | 31 | meta.gateway AS gateway, |
| 32 | 32 | SUM(total) as total |
| 33 | 33 | FROM $wpdb->posts |
@@ -40,91 +40,91 @@ discard block |
||
| 40 | 40 | ORDER BY total DESC |
| 41 | 41 | "; |
| 42 | 42 | |
| 43 | - return apply_filters( 'getpaid_gateways_graphs_get_sql', $sql, $range ); |
|
| 43 | + return apply_filters( 'getpaid_gateways_graphs_get_sql', $sql, $range ); |
|
| 44 | 44 | |
| 45 | - } |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - /** |
|
| 48 | - * Prepares the report stats. |
|
| 49 | - * |
|
| 50 | - */ |
|
| 51 | - public function prepare_stats() { |
|
| 52 | - global $wpdb; |
|
| 53 | - $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 54 | - $this->stats = $this->normalize_stats( $this->stats ); |
|
| 55 | - } |
|
| 47 | + /** |
|
| 48 | + * Prepares the report stats. |
|
| 49 | + * |
|
| 50 | + */ |
|
| 51 | + public function prepare_stats() { |
|
| 52 | + global $wpdb; |
|
| 53 | + $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 54 | + $this->stats = $this->normalize_stats( $this->stats ); |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * Normalizes the report stats. |
|
| 59 | - * |
|
| 60 | - */ |
|
| 61 | - public function normalize_stats( $stats ) { |
|
| 62 | - $normalized = array(); |
|
| 63 | - $others = 0; |
|
| 64 | - $did = 0; |
|
| 57 | + /** |
|
| 58 | + * Normalizes the report stats. |
|
| 59 | + * |
|
| 60 | + */ |
|
| 61 | + public function normalize_stats( $stats ) { |
|
| 62 | + $normalized = array(); |
|
| 63 | + $others = 0; |
|
| 64 | + $did = 0; |
|
| 65 | 65 | |
| 66 | - foreach ( $stats as $stat ) { |
|
| 66 | + foreach ( $stats as $stat ) { |
|
| 67 | 67 | |
| 68 | - if ( $did > 4 ) { |
|
| 68 | + if ( $did > 4 ) { |
|
| 69 | 69 | |
| 70 | - $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 70 | + $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 71 | 71 | |
| 72 | - } else { |
|
| 72 | + } else { |
|
| 73 | 73 | |
| 74 | - $normalized[] = array( |
|
| 75 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 76 | - 'gateway' => strip_tags( wpinv_get_gateway_admin_label( $stat->gateway ) ), |
|
| 77 | - ); |
|
| 74 | + $normalized[] = array( |
|
| 75 | + 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 76 | + 'gateway' => strip_tags( wpinv_get_gateway_admin_label( $stat->gateway ) ), |
|
| 77 | + ); |
|
| 78 | 78 | |
| 79 | - } |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - $did++; |
|
| 82 | - } |
|
| 81 | + $did++; |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | - if ( $others > 0 ) { |
|
| 84 | + if ( $others > 0 ) { |
|
| 85 | 85 | |
| 86 | - $normalized[] = array( |
|
| 87 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 88 | - 'gateway' => esc_html__( 'Others', 'invoicing' ), |
|
| 89 | - ); |
|
| 86 | + $normalized[] = array( |
|
| 87 | + 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 88 | + 'gateway' => esc_html__( 'Others', 'invoicing' ), |
|
| 89 | + ); |
|
| 90 | 90 | |
| 91 | - } |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - return $normalized; |
|
| 94 | - } |
|
| 93 | + return $normalized; |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - /** |
|
| 97 | - * Retrieves report data. |
|
| 98 | - * |
|
| 99 | - */ |
|
| 100 | - public function get_data() { |
|
| 96 | + /** |
|
| 97 | + * Retrieves report data. |
|
| 98 | + * |
|
| 99 | + */ |
|
| 100 | + public function get_data() { |
|
| 101 | 101 | |
| 102 | - $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 103 | - $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 102 | + $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 103 | + $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 104 | 104 | |
| 105 | - shuffle( $colors ); |
|
| 105 | + shuffle( $colors ); |
|
| 106 | 106 | |
| 107 | - return array( |
|
| 108 | - 'data' => $data, |
|
| 109 | - 'backgroundColor' => $colors, |
|
| 110 | - ); |
|
| 107 | + return array( |
|
| 108 | + 'data' => $data, |
|
| 109 | + 'backgroundColor' => $colors, |
|
| 110 | + ); |
|
| 111 | 111 | |
| 112 | - } |
|
| 112 | + } |
|
| 113 | 113 | |
| 114 | - /** |
|
| 115 | - * Retrieves report labels. |
|
| 116 | - * |
|
| 117 | - */ |
|
| 118 | - public function get_labels() { |
|
| 119 | - return wp_list_pluck( $this->stats, 'gateway' ); |
|
| 120 | - } |
|
| 114 | + /** |
|
| 115 | + * Retrieves report labels. |
|
| 116 | + * |
|
| 117 | + */ |
|
| 118 | + public function get_labels() { |
|
| 119 | + return wp_list_pluck( $this->stats, 'gateway' ); |
|
| 120 | + } |
|
| 121 | 121 | |
| 122 | - /** |
|
| 123 | - * Displays the actual report. |
|
| 124 | - * |
|
| 125 | - */ |
|
| 126 | - public function display_stats() { |
|
| 127 | - ?> |
|
| 122 | + /** |
|
| 123 | + * Displays the actual report. |
|
| 124 | + * |
|
| 125 | + */ |
|
| 126 | + public function display_stats() { |
|
| 127 | + ?> |
|
| 128 | 128 | |
| 129 | 129 | <canvas id="getpaid-chartjs-earnings-gateways"></canvas> |
| 130 | 130 | |
@@ -153,6 +153,6 @@ discard block |
||
| 153 | 153 | </script> |
| 154 | 154 | |
| 155 | 155 | <?php |
| 156 | - } |
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | 158 | } |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Reports_Report_Discounts Class. |
@@ -16,11 +16,11 @@ discard block |
||
| 16 | 16 | * Retrieves the discounts sql. |
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | - public function get_sql( $range ) { |
|
| 19 | + public function get_sql($range) { |
|
| 20 | 20 | global $wpdb; |
| 21 | 21 | |
| 22 | 22 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 23 | - $clauses = $this->get_range_sql( $range ); |
|
| 23 | + $clauses = $this->get_range_sql($range); |
|
| 24 | 24 | |
| 25 | 25 | $sql = "SELECT |
| 26 | 26 | meta.discount_code AS discount_code, |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | ORDER BY total DESC |
| 37 | 37 | "; |
| 38 | 38 | |
| 39 | - return apply_filters( 'getpaid_discounts_graphs_get_sql', $sql, $range ); |
|
| 39 | + return apply_filters('getpaid_discounts_graphs_get_sql', $sql, $range); |
|
| 40 | 40 | |
| 41 | 41 | } |
| 42 | 42 | |
@@ -46,30 +46,30 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function prepare_stats() { |
| 48 | 48 | global $wpdb; |
| 49 | - $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 50 | - $this->stats = $this->normalize_stats( $this->stats ); |
|
| 49 | + $this->stats = $wpdb->get_results($this->get_sql($this->get_range())); |
|
| 50 | + $this->stats = $this->normalize_stats($this->stats); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
| 54 | 54 | * Normalizes the report stats. |
| 55 | 55 | * |
| 56 | 56 | */ |
| 57 | - public function normalize_stats( $stats ) { |
|
| 57 | + public function normalize_stats($stats) { |
|
| 58 | 58 | $normalized = array(); |
| 59 | 59 | $others = 0; |
| 60 | 60 | $did = 0; |
| 61 | 61 | |
| 62 | - foreach ( $stats as $stat ) { |
|
| 62 | + foreach ($stats as $stat) { |
|
| 63 | 63 | |
| 64 | - if ( $did > 4 ) { |
|
| 64 | + if ($did > 4) { |
|
| 65 | 65 | |
| 66 | - $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 66 | + $others += wpinv_round_amount(wpinv_sanitize_amount($stat->total)); |
|
| 67 | 67 | |
| 68 | 68 | } else { |
| 69 | 69 | |
| 70 | 70 | $normalized[] = array( |
| 71 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 72 | - 'discount_code' => strip_tags( $stat->discount_code ), |
|
| 71 | + 'total' => wpinv_round_amount(wpinv_sanitize_amount($stat->total)), |
|
| 72 | + 'discount_code' => strip_tags($stat->discount_code), |
|
| 73 | 73 | ); |
| 74 | 74 | |
| 75 | 75 | } |
@@ -77,11 +77,11 @@ discard block |
||
| 77 | 77 | $did++; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if ( $others > 0 ) { |
|
| 80 | + if ($others > 0) { |
|
| 81 | 81 | |
| 82 | 82 | $normalized[] = array( |
| 83 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 84 | - 'discount_code' => esc_html__( 'Others', 'invoicing' ), |
|
| 83 | + 'total' => wpinv_round_amount(wpinv_sanitize_amount($others)), |
|
| 84 | + 'discount_code' => esc_html__('Others', 'invoicing'), |
|
| 85 | 85 | ); |
| 86 | 86 | |
| 87 | 87 | } |
@@ -95,10 +95,10 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | public function get_data() { |
| 97 | 97 | |
| 98 | - $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 99 | - $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 98 | + $data = wp_list_pluck($this->stats, 'total'); |
|
| 99 | + $colors = array('#009688', '#4caf50', '#8bc34a', '#00bcd4', '#03a9f4', '#2196f3'); |
|
| 100 | 100 | |
| 101 | - shuffle( $colors ); |
|
| 101 | + shuffle($colors); |
|
| 102 | 102 | |
| 103 | 103 | return array( |
| 104 | 104 | 'data' => $data, |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | */ |
| 114 | 114 | public function get_labels() { |
| 115 | - return wp_list_pluck( $this->stats, 'discount_code' ); |
|
| 115 | + return wp_list_pluck($this->stats, 'discount_code'); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -133,8 +133,8 @@ discard block |
||
| 133 | 133 | { |
| 134 | 134 | type: 'doughnut', |
| 135 | 135 | data: { |
| 136 | - 'labels': <?php echo wp_json_encode( $this->get_labels() ); ?>, |
|
| 137 | - 'datasets': [ <?php echo wp_json_encode( $this->get_data() ); ?> ] |
|
| 136 | + 'labels': <?php echo wp_json_encode($this->get_labels()); ?>, |
|
| 137 | + 'datasets': [ <?php echo wp_json_encode($this->get_data()); ?> ] |
|
| 138 | 138 | }, |
| 139 | 139 | options: { |
| 140 | 140 | legend: { |
@@ -12,22 +12,22 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Report_Discounts extends GetPaid_Reports_Abstract_Report { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var string |
|
| 17 | - */ |
|
| 18 | - public $field = 'discount_code'; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Retrieves the discounts sql. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function get_sql( $range ) { |
|
| 25 | - global $wpdb; |
|
| 26 | - |
|
| 27 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 28 | - $clauses = $this->get_range_sql( $range ); |
|
| 29 | - |
|
| 30 | - $sql = "SELECT |
|
| 15 | + /** |
|
| 16 | + * @var string |
|
| 17 | + */ |
|
| 18 | + public $field = 'discount_code'; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Retrieves the discounts sql. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function get_sql( $range ) { |
|
| 25 | + global $wpdb; |
|
| 26 | + |
|
| 27 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 28 | + $clauses = $this->get_range_sql( $range ); |
|
| 29 | + |
|
| 30 | + $sql = "SELECT |
|
| 31 | 31 | meta.discount_code AS discount_code, |
| 32 | 32 | SUM(total) as total |
| 33 | 33 | FROM $wpdb->posts |
@@ -41,91 +41,91 @@ discard block |
||
| 41 | 41 | ORDER BY total DESC |
| 42 | 42 | "; |
| 43 | 43 | |
| 44 | - return apply_filters( 'getpaid_discounts_graphs_get_sql', $sql, $range ); |
|
| 44 | + return apply_filters( 'getpaid_discounts_graphs_get_sql', $sql, $range ); |
|
| 45 | 45 | |
| 46 | - } |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * Prepares the report stats. |
|
| 50 | - * |
|
| 51 | - */ |
|
| 52 | - public function prepare_stats() { |
|
| 53 | - global $wpdb; |
|
| 54 | - $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 55 | - $this->stats = $this->normalize_stats( $this->stats ); |
|
| 56 | - } |
|
| 48 | + /** |
|
| 49 | + * Prepares the report stats. |
|
| 50 | + * |
|
| 51 | + */ |
|
| 52 | + public function prepare_stats() { |
|
| 53 | + global $wpdb; |
|
| 54 | + $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 55 | + $this->stats = $this->normalize_stats( $this->stats ); |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - /** |
|
| 59 | - * Normalizes the report stats. |
|
| 60 | - * |
|
| 61 | - */ |
|
| 62 | - public function normalize_stats( $stats ) { |
|
| 63 | - $normalized = array(); |
|
| 64 | - $others = 0; |
|
| 65 | - $did = 0; |
|
| 58 | + /** |
|
| 59 | + * Normalizes the report stats. |
|
| 60 | + * |
|
| 61 | + */ |
|
| 62 | + public function normalize_stats( $stats ) { |
|
| 63 | + $normalized = array(); |
|
| 64 | + $others = 0; |
|
| 65 | + $did = 0; |
|
| 66 | 66 | |
| 67 | - foreach ( $stats as $stat ) { |
|
| 67 | + foreach ( $stats as $stat ) { |
|
| 68 | 68 | |
| 69 | - if ( $did > 4 ) { |
|
| 69 | + if ( $did > 4 ) { |
|
| 70 | 70 | |
| 71 | - $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 71 | + $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 72 | 72 | |
| 73 | - } else { |
|
| 73 | + } else { |
|
| 74 | 74 | |
| 75 | - $normalized[] = array( |
|
| 76 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 77 | - 'discount_code' => strip_tags( $stat->discount_code ), |
|
| 78 | - ); |
|
| 75 | + $normalized[] = array( |
|
| 76 | + 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 77 | + 'discount_code' => strip_tags( $stat->discount_code ), |
|
| 78 | + ); |
|
| 79 | 79 | |
| 80 | - } |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - $did++; |
|
| 83 | - } |
|
| 82 | + $did++; |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | - if ( $others > 0 ) { |
|
| 85 | + if ( $others > 0 ) { |
|
| 86 | 86 | |
| 87 | - $normalized[] = array( |
|
| 88 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 89 | - 'discount_code' => esc_html__( 'Others', 'invoicing' ), |
|
| 90 | - ); |
|
| 87 | + $normalized[] = array( |
|
| 88 | + 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 89 | + 'discount_code' => esc_html__( 'Others', 'invoicing' ), |
|
| 90 | + ); |
|
| 91 | 91 | |
| 92 | - } |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - return $normalized; |
|
| 95 | - } |
|
| 94 | + return $normalized; |
|
| 95 | + } |
|
| 96 | 96 | |
| 97 | - /** |
|
| 98 | - * Retrieves report data. |
|
| 99 | - * |
|
| 100 | - */ |
|
| 101 | - public function get_data() { |
|
| 97 | + /** |
|
| 98 | + * Retrieves report data. |
|
| 99 | + * |
|
| 100 | + */ |
|
| 101 | + public function get_data() { |
|
| 102 | 102 | |
| 103 | - $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 104 | - $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 103 | + $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 104 | + $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 105 | 105 | |
| 106 | - shuffle( $colors ); |
|
| 106 | + shuffle( $colors ); |
|
| 107 | 107 | |
| 108 | - return array( |
|
| 109 | - 'data' => $data, |
|
| 110 | - 'backgroundColor' => $colors, |
|
| 111 | - ); |
|
| 108 | + return array( |
|
| 109 | + 'data' => $data, |
|
| 110 | + 'backgroundColor' => $colors, |
|
| 111 | + ); |
|
| 112 | 112 | |
| 113 | - } |
|
| 113 | + } |
|
| 114 | 114 | |
| 115 | - /** |
|
| 116 | - * Retrieves report labels. |
|
| 117 | - * |
|
| 118 | - */ |
|
| 119 | - public function get_labels() { |
|
| 120 | - return wp_list_pluck( $this->stats, 'discount_code' ); |
|
| 121 | - } |
|
| 115 | + /** |
|
| 116 | + * Retrieves report labels. |
|
| 117 | + * |
|
| 118 | + */ |
|
| 119 | + public function get_labels() { |
|
| 120 | + return wp_list_pluck( $this->stats, 'discount_code' ); |
|
| 121 | + } |
|
| 122 | 122 | |
| 123 | - /** |
|
| 124 | - * Displays the actual report. |
|
| 125 | - * |
|
| 126 | - */ |
|
| 127 | - public function display_stats() { |
|
| 128 | - ?> |
|
| 123 | + /** |
|
| 124 | + * Displays the actual report. |
|
| 125 | + * |
|
| 126 | + */ |
|
| 127 | + public function display_stats() { |
|
| 128 | + ?> |
|
| 129 | 129 | |
| 130 | 130 | <canvas id="getpaid-chartjs-earnings-discount_code"></canvas> |
| 131 | 131 | |
@@ -154,6 +154,6 @@ discard block |
||
| 154 | 154 | </script> |
| 155 | 155 | |
| 156 | 156 | <?php |
| 157 | - } |
|
| 157 | + } |
|
| 158 | 158 | |
| 159 | 159 | } |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Reports_Report_Items Class. |
@@ -16,12 +16,12 @@ discard block |
||
| 16 | 16 | * Retrieves the earning sql. |
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | - public function get_sql( $range ) { |
|
| 19 | + public function get_sql($range) { |
|
| 20 | 20 | global $wpdb; |
| 21 | 21 | |
| 22 | 22 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 23 | 23 | $table2 = $wpdb->prefix . 'getpaid_invoice_items'; |
| 24 | - $clauses = $this->get_range_sql( $range ); |
|
| 24 | + $clauses = $this->get_range_sql($range); |
|
| 25 | 25 | |
| 26 | 26 | $sql = "SELECT |
| 27 | 27 | item.item_name AS item_name, |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | ORDER BY total DESC |
| 39 | 39 | "; |
| 40 | 40 | |
| 41 | - return apply_filters( 'getpaid_items_graphs_get_sql', $sql, $range ); |
|
| 41 | + return apply_filters('getpaid_items_graphs_get_sql', $sql, $range); |
|
| 42 | 42 | |
| 43 | 43 | } |
| 44 | 44 | |
@@ -48,30 +48,30 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | public function prepare_stats() { |
| 50 | 50 | global $wpdb; |
| 51 | - $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 52 | - $this->stats = $this->normalize_stats( $this->stats ); |
|
| 51 | + $this->stats = $wpdb->get_results($this->get_sql($this->get_range())); |
|
| 52 | + $this->stats = $this->normalize_stats($this->stats); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * Normalizes the report stats. |
| 57 | 57 | * |
| 58 | 58 | */ |
| 59 | - public function normalize_stats( $stats ) { |
|
| 59 | + public function normalize_stats($stats) { |
|
| 60 | 60 | $normalized = array(); |
| 61 | 61 | $others = 0; |
| 62 | 62 | $did = 0; |
| 63 | 63 | |
| 64 | - foreach ( $stats as $stat ) { |
|
| 64 | + foreach ($stats as $stat) { |
|
| 65 | 65 | |
| 66 | - if ( $did > 4 ) { |
|
| 66 | + if ($did > 4) { |
|
| 67 | 67 | |
| 68 | - $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 68 | + $others += wpinv_round_amount(wpinv_sanitize_amount($stat->total)); |
|
| 69 | 69 | |
| 70 | 70 | } else { |
| 71 | 71 | |
| 72 | 72 | $normalized[] = array( |
| 73 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 74 | - 'item_name' => strip_tags( $stat->item_name ), |
|
| 73 | + 'total' => wpinv_round_amount(wpinv_sanitize_amount($stat->total)), |
|
| 74 | + 'item_name' => strip_tags($stat->item_name), |
|
| 75 | 75 | ); |
| 76 | 76 | |
| 77 | 77 | } |
@@ -79,11 +79,11 @@ discard block |
||
| 79 | 79 | $did++; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if ( $others > 0 ) { |
|
| 82 | + if ($others > 0) { |
|
| 83 | 83 | |
| 84 | 84 | $normalized[] = array( |
| 85 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 86 | - 'item_name' => esc_html__( 'Others', 'invoicing' ), |
|
| 85 | + 'total' => wpinv_round_amount(wpinv_sanitize_amount($others)), |
|
| 86 | + 'item_name' => esc_html__('Others', 'invoicing'), |
|
| 87 | 87 | ); |
| 88 | 88 | |
| 89 | 89 | } |
@@ -97,10 +97,10 @@ discard block |
||
| 97 | 97 | */ |
| 98 | 98 | public function get_data() { |
| 99 | 99 | |
| 100 | - $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 101 | - $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 100 | + $data = wp_list_pluck($this->stats, 'total'); |
|
| 101 | + $colors = array('#009688', '#4caf50', '#8bc34a', '#00bcd4', '#03a9f4', '#2196f3'); |
|
| 102 | 102 | |
| 103 | - shuffle( $colors ); |
|
| 103 | + shuffle($colors); |
|
| 104 | 104 | |
| 105 | 105 | return array( |
| 106 | 106 | 'data' => $data, |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * |
| 115 | 115 | */ |
| 116 | 116 | public function get_labels() { |
| 117 | - return wp_list_pluck( $this->stats, 'item_name' ); |
|
| 117 | + return wp_list_pluck($this->stats, 'item_name'); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -135,8 +135,8 @@ discard block |
||
| 135 | 135 | { |
| 136 | 136 | type: 'doughnut', |
| 137 | 137 | data: { |
| 138 | - 'labels': <?php echo wp_json_encode( $this->get_labels() ); ?>, |
|
| 139 | - 'datasets': [ <?php echo wp_json_encode( $this->get_data() ); ?> ] |
|
| 138 | + 'labels': <?php echo wp_json_encode($this->get_labels()); ?>, |
|
| 139 | + 'datasets': [ <?php echo wp_json_encode($this->get_data()); ?> ] |
|
| 140 | 140 | }, |
| 141 | 141 | options: { |
| 142 | 142 | legend: { |
@@ -12,23 +12,23 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Report_Items extends GetPaid_Reports_Abstract_Report { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var string |
|
| 17 | - */ |
|
| 18 | - public $field = 'item_name'; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Retrieves the earning sql. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function get_sql( $range ) { |
|
| 25 | - global $wpdb; |
|
| 26 | - |
|
| 27 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 28 | - $table2 = $wpdb->prefix . 'getpaid_invoice_items'; |
|
| 29 | - $clauses = $this->get_range_sql( $range ); |
|
| 30 | - |
|
| 31 | - $sql = "SELECT |
|
| 15 | + /** |
|
| 16 | + * @var string |
|
| 17 | + */ |
|
| 18 | + public $field = 'item_name'; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Retrieves the earning sql. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function get_sql( $range ) { |
|
| 25 | + global $wpdb; |
|
| 26 | + |
|
| 27 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 28 | + $table2 = $wpdb->prefix . 'getpaid_invoice_items'; |
|
| 29 | + $clauses = $this->get_range_sql( $range ); |
|
| 30 | + |
|
| 31 | + $sql = "SELECT |
|
| 32 | 32 | item.item_name AS item_name, |
| 33 | 33 | item.item_id AS item_id, |
| 34 | 34 | SUM(price) as total |
@@ -43,91 +43,91 @@ discard block |
||
| 43 | 43 | ORDER BY total DESC |
| 44 | 44 | "; |
| 45 | 45 | |
| 46 | - return apply_filters( 'getpaid_items_graphs_get_sql', $sql, $range ); |
|
| 46 | + return apply_filters( 'getpaid_items_graphs_get_sql', $sql, $range ); |
|
| 47 | 47 | |
| 48 | - } |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * Prepares the report stats. |
|
| 52 | - * |
|
| 53 | - */ |
|
| 54 | - public function prepare_stats() { |
|
| 55 | - global $wpdb; |
|
| 56 | - $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 57 | - $this->stats = $this->normalize_stats( $this->stats ); |
|
| 58 | - } |
|
| 50 | + /** |
|
| 51 | + * Prepares the report stats. |
|
| 52 | + * |
|
| 53 | + */ |
|
| 54 | + public function prepare_stats() { |
|
| 55 | + global $wpdb; |
|
| 56 | + $this->stats = $wpdb->get_results( $this->get_sql( $this->get_range() ) ); |
|
| 57 | + $this->stats = $this->normalize_stats( $this->stats ); |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * Normalizes the report stats. |
|
| 62 | - * |
|
| 63 | - */ |
|
| 64 | - public function normalize_stats( $stats ) { |
|
| 65 | - $normalized = array(); |
|
| 66 | - $others = 0; |
|
| 67 | - $did = 0; |
|
| 60 | + /** |
|
| 61 | + * Normalizes the report stats. |
|
| 62 | + * |
|
| 63 | + */ |
|
| 64 | + public function normalize_stats( $stats ) { |
|
| 65 | + $normalized = array(); |
|
| 66 | + $others = 0; |
|
| 67 | + $did = 0; |
|
| 68 | 68 | |
| 69 | - foreach ( $stats as $stat ) { |
|
| 69 | + foreach ( $stats as $stat ) { |
|
| 70 | 70 | |
| 71 | - if ( $did > 4 ) { |
|
| 71 | + if ( $did > 4 ) { |
|
| 72 | 72 | |
| 73 | - $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 73 | + $others += wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ); |
|
| 74 | 74 | |
| 75 | - } else { |
|
| 75 | + } else { |
|
| 76 | 76 | |
| 77 | - $normalized[] = array( |
|
| 78 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 79 | - 'item_name' => strip_tags( $stat->item_name ), |
|
| 80 | - ); |
|
| 77 | + $normalized[] = array( |
|
| 78 | + 'total' => wpinv_round_amount( wpinv_sanitize_amount( $stat->total ) ), |
|
| 79 | + 'item_name' => strip_tags( $stat->item_name ), |
|
| 80 | + ); |
|
| 81 | 81 | |
| 82 | - } |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | - $did++; |
|
| 85 | - } |
|
| 84 | + $did++; |
|
| 85 | + } |
|
| 86 | 86 | |
| 87 | - if ( $others > 0 ) { |
|
| 87 | + if ( $others > 0 ) { |
|
| 88 | 88 | |
| 89 | - $normalized[] = array( |
|
| 90 | - 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 91 | - 'item_name' => esc_html__( 'Others', 'invoicing' ), |
|
| 92 | - ); |
|
| 89 | + $normalized[] = array( |
|
| 90 | + 'total' => wpinv_round_amount( wpinv_sanitize_amount( $others ) ), |
|
| 91 | + 'item_name' => esc_html__( 'Others', 'invoicing' ), |
|
| 92 | + ); |
|
| 93 | 93 | |
| 94 | - } |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - return $normalized; |
|
| 97 | - } |
|
| 96 | + return $normalized; |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - /** |
|
| 100 | - * Retrieves report data. |
|
| 101 | - * |
|
| 102 | - */ |
|
| 103 | - public function get_data() { |
|
| 99 | + /** |
|
| 100 | + * Retrieves report data. |
|
| 101 | + * |
|
| 102 | + */ |
|
| 103 | + public function get_data() { |
|
| 104 | 104 | |
| 105 | - $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 106 | - $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 105 | + $data = wp_list_pluck( $this->stats, 'total' ); |
|
| 106 | + $colors = array( '#009688','#4caf50','#8bc34a','#00bcd4','#03a9f4','#2196f3' ); |
|
| 107 | 107 | |
| 108 | - shuffle( $colors ); |
|
| 108 | + shuffle( $colors ); |
|
| 109 | 109 | |
| 110 | - return array( |
|
| 111 | - 'data' => $data, |
|
| 112 | - 'backgroundColor' => $colors, |
|
| 113 | - ); |
|
| 110 | + return array( |
|
| 111 | + 'data' => $data, |
|
| 112 | + 'backgroundColor' => $colors, |
|
| 113 | + ); |
|
| 114 | 114 | |
| 115 | - } |
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - /** |
|
| 118 | - * Retrieves report labels. |
|
| 119 | - * |
|
| 120 | - */ |
|
| 121 | - public function get_labels() { |
|
| 122 | - return wp_list_pluck( $this->stats, 'item_name' ); |
|
| 123 | - } |
|
| 117 | + /** |
|
| 118 | + * Retrieves report labels. |
|
| 119 | + * |
|
| 120 | + */ |
|
| 121 | + public function get_labels() { |
|
| 122 | + return wp_list_pluck( $this->stats, 'item_name' ); |
|
| 123 | + } |
|
| 124 | 124 | |
| 125 | - /** |
|
| 126 | - * Displays the actual report. |
|
| 127 | - * |
|
| 128 | - */ |
|
| 129 | - public function display_stats() { |
|
| 130 | - ?> |
|
| 125 | + /** |
|
| 126 | + * Displays the actual report. |
|
| 127 | + * |
|
| 128 | + */ |
|
| 129 | + public function display_stats() { |
|
| 130 | + ?> |
|
| 131 | 131 | |
| 132 | 132 | <canvas id="getpaid-chartjs-earnings-items"></canvas> |
| 133 | 133 | |
@@ -156,6 +156,6 @@ discard block |
||
| 156 | 156 | </script> |
| 157 | 157 | |
| 158 | 158 | <?php |
| 159 | - } |
|
| 159 | + } |
|
| 160 | 160 | |
| 161 | 161 | } |
@@ -12,219 +12,219 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Graph_Downloader { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var GetPaid_Reports_Report |
|
| 17 | - */ |
|
| 18 | - public $handler; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * Class constructor. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function __construct() { |
|
| 25 | - $this->handler = new GetPaid_Reports_Report(); |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * Prepares the datastore handler. |
|
| 30 | - * |
|
| 31 | - * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
|
| 32 | - */ |
|
| 33 | - public function prepare_handler( $graph ) { |
|
| 34 | - |
|
| 35 | - if ( empty( $this->handler->views[ $graph ] ) ) { |
|
| 36 | - wp_die( __( 'Invalid Graph', 'invoicing' ), 400 ); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - return new $this->handler->views[ $graph ]['class'](); |
|
| 40 | - |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Prepares the output stream. |
|
| 45 | - * |
|
| 46 | - * @return resource |
|
| 47 | - */ |
|
| 48 | - public function prepare_output() { |
|
| 49 | - |
|
| 50 | - $output = fopen( 'php://output', 'w' ); |
|
| 51 | - |
|
| 52 | - if ( false === $output ) { |
|
| 53 | - wp_die( __( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 54 | - } |
|
| 55 | - |
|
| 56 | - return $output; |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Prepares the file type. |
|
| 61 | - * |
|
| 62 | - * @return string |
|
| 63 | - */ |
|
| 64 | - public function prepare_file_type( $graph ) { |
|
| 65 | - |
|
| 66 | - $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
| 67 | - $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
| 68 | - |
|
| 69 | - header( "Content-Type:application/$file_type" ); |
|
| 70 | - header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
| 71 | - |
|
| 72 | - return $file_type; |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * Handles the actual download. |
|
| 77 | - * |
|
| 78 | - */ |
|
| 79 | - public function download( $graph ) { |
|
| 80 | - global $wpdb; |
|
| 81 | - |
|
| 82 | - $handler = $this->prepare_handler( $graph ); |
|
| 83 | - $stream = $this->prepare_output(); |
|
| 84 | - $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
| 85 | - $headers = array( $handler->field, 'total', 'total_raw' ); |
|
| 86 | - $file_type = $this->prepare_file_type( $graph ); |
|
| 87 | - |
|
| 88 | - if ( 'csv' == $file_type ) { |
|
| 89 | - $this->download_csv( $stats, $stream, $headers ); |
|
| 90 | - } else if( 'xml' == $file_type ) { |
|
| 91 | - $this->download_xml( $stats, $stream, $headers ); |
|
| 92 | - } else { |
|
| 93 | - $this->download_json( $stats, $stream, $headers ); |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - fclose( $stream ); |
|
| 97 | - exit; |
|
| 98 | - } |
|
| 99 | - |
|
| 100 | - /** |
|
| 101 | - * Downloads graph as csv |
|
| 102 | - * |
|
| 103 | - * @param array $stats The stats being downloaded. |
|
| 104 | - * @param resource $stream The stream to output to. |
|
| 105 | - * @param array $headers The fields to stream. |
|
| 106 | - * @since 1.0.19 |
|
| 107 | - */ |
|
| 108 | - public function download_csv( $stats, $stream, $headers ) { |
|
| 109 | - |
|
| 110 | - // Output the csv column headers. |
|
| 111 | - fputcsv( $stream, $headers ); |
|
| 112 | - |
|
| 113 | - // Loop through |
|
| 114 | - foreach ( $stats as $stat ) { |
|
| 115 | - $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
| 116 | - $row = array_map( 'maybe_serialize', $row ); |
|
| 117 | - fputcsv( $stream, $row ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * Downloads graph as json |
|
| 124 | - * |
|
| 125 | - * @param array $stats The stats being downloaded. |
|
| 126 | - * @param resource $stream The stream to output to. |
|
| 127 | - * @param array $headers The fields to stream. |
|
| 128 | - * @since 1.0.19 |
|
| 129 | - */ |
|
| 130 | - public function download_json( $stats, $stream, $headers ) { |
|
| 131 | - |
|
| 132 | - $prepared = array(); |
|
| 133 | - |
|
| 134 | - // Loop through |
|
| 135 | - foreach ( $stats as $stat ) { |
|
| 136 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - fwrite( $stream, wp_json_encode( $prepared ) ); |
|
| 140 | - |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * Downloads graph as xml |
|
| 145 | - * |
|
| 146 | - * @param array $stats The stats being downloaded. |
|
| 147 | - * @param resource $stream The stream to output to. |
|
| 148 | - * @param array $headers The fields to stream. |
|
| 149 | - * @since 1.0.19 |
|
| 150 | - */ |
|
| 151 | - public function download_xml( $stats, $stream, $headers ) { |
|
| 152 | - |
|
| 153 | - $prepared = array(); |
|
| 154 | - |
|
| 155 | - // Loop through |
|
| 156 | - foreach ( $stats as $stat ) { |
|
| 157 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - $xml = new SimpleXMLElement('<?xml version="1.0"?><data></data>'); |
|
| 161 | - $this->convert_array_xml( $prepared, $xml ); |
|
| 162 | - |
|
| 163 | - fwrite( $stream, $xml->asXML() ); |
|
| 164 | - |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - /** |
|
| 168 | - * Converts stats array to xml |
|
| 169 | - * |
|
| 170 | - * @access public |
|
| 171 | - * @since 1.0.19 |
|
| 172 | - */ |
|
| 173 | - public function convert_array_xml( $data, $xml ) { |
|
| 174 | - |
|
| 175 | - // Loop through |
|
| 176 | - foreach ( $data as $key => $value ) { |
|
| 177 | - |
|
| 178 | - $key = preg_replace( "/[^A-Za-z0-9_\-]/", '', $key ); |
|
| 179 | - |
|
| 180 | - if ( is_array( $value ) ) { |
|
| 181 | - |
|
| 182 | - if ( is_numeric( $key ) ){ |
|
| 183 | - $key = 'item'.$key; //dealing with <0/>..<n/> issues |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - $subnode = $xml->addChild( $key ); |
|
| 187 | - $this->convert_array_xml( $value, $subnode ); |
|
| 188 | - |
|
| 189 | - } else { |
|
| 190 | - $xml->addChild( $key, htmlspecialchars( $value ) ); |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - } |
|
| 15 | + /** |
|
| 16 | + * @var GetPaid_Reports_Report |
|
| 17 | + */ |
|
| 18 | + public $handler; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * Class constructor. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function __construct() { |
|
| 25 | + $this->handler = new GetPaid_Reports_Report(); |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * Prepares the datastore handler. |
|
| 30 | + * |
|
| 31 | + * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
|
| 32 | + */ |
|
| 33 | + public function prepare_handler( $graph ) { |
|
| 34 | + |
|
| 35 | + if ( empty( $this->handler->views[ $graph ] ) ) { |
|
| 36 | + wp_die( __( 'Invalid Graph', 'invoicing' ), 400 ); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + return new $this->handler->views[ $graph ]['class'](); |
|
| 40 | + |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Prepares the output stream. |
|
| 45 | + * |
|
| 46 | + * @return resource |
|
| 47 | + */ |
|
| 48 | + public function prepare_output() { |
|
| 49 | + |
|
| 50 | + $output = fopen( 'php://output', 'w' ); |
|
| 51 | + |
|
| 52 | + if ( false === $output ) { |
|
| 53 | + wp_die( __( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 54 | + } |
|
| 55 | + |
|
| 56 | + return $output; |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Prepares the file type. |
|
| 61 | + * |
|
| 62 | + * @return string |
|
| 63 | + */ |
|
| 64 | + public function prepare_file_type( $graph ) { |
|
| 65 | + |
|
| 66 | + $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
| 67 | + $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
| 68 | + |
|
| 69 | + header( "Content-Type:application/$file_type" ); |
|
| 70 | + header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
| 71 | + |
|
| 72 | + return $file_type; |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * Handles the actual download. |
|
| 77 | + * |
|
| 78 | + */ |
|
| 79 | + public function download( $graph ) { |
|
| 80 | + global $wpdb; |
|
| 81 | + |
|
| 82 | + $handler = $this->prepare_handler( $graph ); |
|
| 83 | + $stream = $this->prepare_output(); |
|
| 84 | + $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
| 85 | + $headers = array( $handler->field, 'total', 'total_raw' ); |
|
| 86 | + $file_type = $this->prepare_file_type( $graph ); |
|
| 87 | + |
|
| 88 | + if ( 'csv' == $file_type ) { |
|
| 89 | + $this->download_csv( $stats, $stream, $headers ); |
|
| 90 | + } else if( 'xml' == $file_type ) { |
|
| 91 | + $this->download_xml( $stats, $stream, $headers ); |
|
| 92 | + } else { |
|
| 93 | + $this->download_json( $stats, $stream, $headers ); |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + fclose( $stream ); |
|
| 97 | + exit; |
|
| 98 | + } |
|
| 99 | + |
|
| 100 | + /** |
|
| 101 | + * Downloads graph as csv |
|
| 102 | + * |
|
| 103 | + * @param array $stats The stats being downloaded. |
|
| 104 | + * @param resource $stream The stream to output to. |
|
| 105 | + * @param array $headers The fields to stream. |
|
| 106 | + * @since 1.0.19 |
|
| 107 | + */ |
|
| 108 | + public function download_csv( $stats, $stream, $headers ) { |
|
| 109 | + |
|
| 110 | + // Output the csv column headers. |
|
| 111 | + fputcsv( $stream, $headers ); |
|
| 112 | + |
|
| 113 | + // Loop through |
|
| 114 | + foreach ( $stats as $stat ) { |
|
| 115 | + $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
| 116 | + $row = array_map( 'maybe_serialize', $row ); |
|
| 117 | + fputcsv( $stream, $row ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * Downloads graph as json |
|
| 124 | + * |
|
| 125 | + * @param array $stats The stats being downloaded. |
|
| 126 | + * @param resource $stream The stream to output to. |
|
| 127 | + * @param array $headers The fields to stream. |
|
| 128 | + * @since 1.0.19 |
|
| 129 | + */ |
|
| 130 | + public function download_json( $stats, $stream, $headers ) { |
|
| 131 | + |
|
| 132 | + $prepared = array(); |
|
| 133 | + |
|
| 134 | + // Loop through |
|
| 135 | + foreach ( $stats as $stat ) { |
|
| 136 | + $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + fwrite( $stream, wp_json_encode( $prepared ) ); |
|
| 140 | + |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * Downloads graph as xml |
|
| 145 | + * |
|
| 146 | + * @param array $stats The stats being downloaded. |
|
| 147 | + * @param resource $stream The stream to output to. |
|
| 148 | + * @param array $headers The fields to stream. |
|
| 149 | + * @since 1.0.19 |
|
| 150 | + */ |
|
| 151 | + public function download_xml( $stats, $stream, $headers ) { |
|
| 152 | + |
|
| 153 | + $prepared = array(); |
|
| 154 | + |
|
| 155 | + // Loop through |
|
| 156 | + foreach ( $stats as $stat ) { |
|
| 157 | + $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + $xml = new SimpleXMLElement('<?xml version="1.0"?><data></data>'); |
|
| 161 | + $this->convert_array_xml( $prepared, $xml ); |
|
| 162 | + |
|
| 163 | + fwrite( $stream, $xml->asXML() ); |
|
| 164 | + |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + /** |
|
| 168 | + * Converts stats array to xml |
|
| 169 | + * |
|
| 170 | + * @access public |
|
| 171 | + * @since 1.0.19 |
|
| 172 | + */ |
|
| 173 | + public function convert_array_xml( $data, $xml ) { |
|
| 174 | + |
|
| 175 | + // Loop through |
|
| 176 | + foreach ( $data as $key => $value ) { |
|
| 177 | + |
|
| 178 | + $key = preg_replace( "/[^A-Za-z0-9_\-]/", '', $key ); |
|
| 179 | + |
|
| 180 | + if ( is_array( $value ) ) { |
|
| 181 | + |
|
| 182 | + if ( is_numeric( $key ) ){ |
|
| 183 | + $key = 'item'.$key; //dealing with <0/>..<n/> issues |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + $subnode = $xml->addChild( $key ); |
|
| 187 | + $this->convert_array_xml( $value, $subnode ); |
|
| 188 | + |
|
| 189 | + } else { |
|
| 190 | + $xml->addChild( $key, htmlspecialchars( $value ) ); |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + } |
|
| 194 | 194 | |
| 195 | - } |
|
| 196 | - |
|
| 197 | - /** |
|
| 198 | - * Prepares a single row for download. |
|
| 199 | - * |
|
| 200 | - * @param stdClass|array $row The row to prepare.. |
|
| 201 | - * @param array $fields The fields to stream. |
|
| 202 | - * @since 1.0.19 |
|
| 203 | - * @return array |
|
| 204 | - */ |
|
| 205 | - public function prepare_row( $row, $fields ) { |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + /** |
|
| 198 | + * Prepares a single row for download. |
|
| 199 | + * |
|
| 200 | + * @param stdClass|array $row The row to prepare.. |
|
| 201 | + * @param array $fields The fields to stream. |
|
| 202 | + * @since 1.0.19 |
|
| 203 | + * @return array |
|
| 204 | + */ |
|
| 205 | + public function prepare_row( $row, $fields ) { |
|
| 206 | 206 | |
| 207 | - $prepared = array(); |
|
| 208 | - $row = (array) $row; |
|
| 207 | + $prepared = array(); |
|
| 208 | + $row = (array) $row; |
|
| 209 | 209 | |
| 210 | - foreach ( $fields as $field ) { |
|
| 210 | + foreach ( $fields as $field ) { |
|
| 211 | 211 | |
| 212 | - if ( $field === 'total' ) { |
|
| 213 | - $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
| 214 | - continue; |
|
| 215 | - } |
|
| 212 | + if ( $field === 'total' ) { |
|
| 213 | + $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
| 214 | + continue; |
|
| 215 | + } |
|
| 216 | 216 | |
| 217 | - if ( $field === 'total_raw' ) { |
|
| 218 | - $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
| 219 | - continue; |
|
| 220 | - } |
|
| 217 | + if ( $field === 'total_raw' ) { |
|
| 218 | + $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
| 219 | + continue; |
|
| 220 | + } |
|
| 221 | 221 | |
| 222 | - $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
| 222 | + $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
| 223 | 223 | |
| 224 | - } |
|
| 224 | + } |
|
| 225 | 225 | |
| 226 | - return $prepared; |
|
| 227 | - } |
|
| 226 | + return $prepared; |
|
| 227 | + } |
|
| 228 | 228 | |
| 229 | 229 | |
| 230 | 230 | } |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Graph_Downloader Class. |
@@ -30,13 +30,13 @@ discard block |
||
| 30 | 30 | * |
| 31 | 31 | * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
| 32 | 32 | */ |
| 33 | - public function prepare_handler( $graph ) { |
|
| 33 | + public function prepare_handler($graph) { |
|
| 34 | 34 | |
| 35 | - if ( empty( $this->handler->views[ $graph ] ) ) { |
|
| 36 | - wp_die( __( 'Invalid Graph', 'invoicing' ), 400 ); |
|
| 35 | + if (empty($this->handler->views[$graph])) { |
|
| 36 | + wp_die(__('Invalid Graph', 'invoicing'), 400); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - return new $this->handler->views[ $graph ]['class'](); |
|
| 39 | + return new $this->handler->views[$graph]['class'](); |
|
| 40 | 40 | |
| 41 | 41 | } |
| 42 | 42 | |
@@ -47,10 +47,10 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function prepare_output() { |
| 49 | 49 | |
| 50 | - $output = fopen( 'php://output', 'w' ); |
|
| 50 | + $output = fopen('php://output', 'w'); |
|
| 51 | 51 | |
| 52 | - if ( false === $output ) { |
|
| 53 | - wp_die( __( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 52 | + if (false === $output) { |
|
| 53 | + wp_die(__('Unsupported server', 'invoicing'), 500); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | return $output; |
@@ -61,13 +61,13 @@ discard block |
||
| 61 | 61 | * |
| 62 | 62 | * @return string |
| 63 | 63 | */ |
| 64 | - public function prepare_file_type( $graph ) { |
|
| 64 | + public function prepare_file_type($graph) { |
|
| 65 | 65 | |
| 66 | - $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
| 67 | - $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
| 66 | + $file_type = empty($_REQUEST['file_type']) ? 'csv' : sanitize_text_field($_REQUEST['file_type']); |
|
| 67 | + $file_name = wpinv_sanitize_key("getpaid-$graph-" . current_time('Y-m-d')); |
|
| 68 | 68 | |
| 69 | - header( "Content-Type:application/$file_type" ); |
|
| 70 | - header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
| 69 | + header("Content-Type:application/$file_type"); |
|
| 70 | + header("Content-Disposition:attachment;filename=$file_name.$file_type"); |
|
| 71 | 71 | |
| 72 | 72 | return $file_type; |
| 73 | 73 | } |
@@ -76,24 +76,24 @@ discard block |
||
| 76 | 76 | * Handles the actual download. |
| 77 | 77 | * |
| 78 | 78 | */ |
| 79 | - public function download( $graph ) { |
|
| 79 | + public function download($graph) { |
|
| 80 | 80 | global $wpdb; |
| 81 | 81 | |
| 82 | - $handler = $this->prepare_handler( $graph ); |
|
| 82 | + $handler = $this->prepare_handler($graph); |
|
| 83 | 83 | $stream = $this->prepare_output(); |
| 84 | - $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
| 85 | - $headers = array( $handler->field, 'total', 'total_raw' ); |
|
| 86 | - $file_type = $this->prepare_file_type( $graph ); |
|
| 87 | - |
|
| 88 | - if ( 'csv' == $file_type ) { |
|
| 89 | - $this->download_csv( $stats, $stream, $headers ); |
|
| 90 | - } else if( 'xml' == $file_type ) { |
|
| 91 | - $this->download_xml( $stats, $stream, $headers ); |
|
| 84 | + $stats = $wpdb->get_results($handler->get_sql($handler->get_range())); |
|
| 85 | + $headers = array($handler->field, 'total', 'total_raw'); |
|
| 86 | + $file_type = $this->prepare_file_type($graph); |
|
| 87 | + |
|
| 88 | + if ('csv' == $file_type) { |
|
| 89 | + $this->download_csv($stats, $stream, $headers); |
|
| 90 | + } else if ('xml' == $file_type) { |
|
| 91 | + $this->download_xml($stats, $stream, $headers); |
|
| 92 | 92 | } else { |
| 93 | - $this->download_json( $stats, $stream, $headers ); |
|
| 93 | + $this->download_json($stats, $stream, $headers); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - fclose( $stream ); |
|
| 96 | + fclose($stream); |
|
| 97 | 97 | exit; |
| 98 | 98 | } |
| 99 | 99 | |
@@ -105,16 +105,16 @@ discard block |
||
| 105 | 105 | * @param array $headers The fields to stream. |
| 106 | 106 | * @since 1.0.19 |
| 107 | 107 | */ |
| 108 | - public function download_csv( $stats, $stream, $headers ) { |
|
| 108 | + public function download_csv($stats, $stream, $headers) { |
|
| 109 | 109 | |
| 110 | 110 | // Output the csv column headers. |
| 111 | - fputcsv( $stream, $headers ); |
|
| 111 | + fputcsv($stream, $headers); |
|
| 112 | 112 | |
| 113 | 113 | // Loop through |
| 114 | - foreach ( $stats as $stat ) { |
|
| 115 | - $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
| 116 | - $row = array_map( 'maybe_serialize', $row ); |
|
| 117 | - fputcsv( $stream, $row ); |
|
| 114 | + foreach ($stats as $stat) { |
|
| 115 | + $row = array_values($this->prepare_row($stat, $headers)); |
|
| 116 | + $row = array_map('maybe_serialize', $row); |
|
| 117 | + fputcsv($stream, $row); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | } |
@@ -127,16 +127,16 @@ discard block |
||
| 127 | 127 | * @param array $headers The fields to stream. |
| 128 | 128 | * @since 1.0.19 |
| 129 | 129 | */ |
| 130 | - public function download_json( $stats, $stream, $headers ) { |
|
| 130 | + public function download_json($stats, $stream, $headers) { |
|
| 131 | 131 | |
| 132 | 132 | $prepared = array(); |
| 133 | 133 | |
| 134 | 134 | // Loop through |
| 135 | - foreach ( $stats as $stat ) { |
|
| 136 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 135 | + foreach ($stats as $stat) { |
|
| 136 | + $prepared[] = $this->prepare_row($stat, $headers); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - fwrite( $stream, wp_json_encode( $prepared ) ); |
|
| 139 | + fwrite($stream, wp_json_encode($prepared)); |
|
| 140 | 140 | |
| 141 | 141 | } |
| 142 | 142 | |
@@ -148,19 +148,19 @@ discard block |
||
| 148 | 148 | * @param array $headers The fields to stream. |
| 149 | 149 | * @since 1.0.19 |
| 150 | 150 | */ |
| 151 | - public function download_xml( $stats, $stream, $headers ) { |
|
| 151 | + public function download_xml($stats, $stream, $headers) { |
|
| 152 | 152 | |
| 153 | 153 | $prepared = array(); |
| 154 | 154 | |
| 155 | 155 | // Loop through |
| 156 | - foreach ( $stats as $stat ) { |
|
| 157 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 156 | + foreach ($stats as $stat) { |
|
| 157 | + $prepared[] = $this->prepare_row($stat, $headers); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | $xml = new SimpleXMLElement('<?xml version="1.0"?><data></data>'); |
| 161 | - $this->convert_array_xml( $prepared, $xml ); |
|
| 161 | + $this->convert_array_xml($prepared, $xml); |
|
| 162 | 162 | |
| 163 | - fwrite( $stream, $xml->asXML() ); |
|
| 163 | + fwrite($stream, $xml->asXML()); |
|
| 164 | 164 | |
| 165 | 165 | } |
| 166 | 166 | |
@@ -170,24 +170,24 @@ discard block |
||
| 170 | 170 | * @access public |
| 171 | 171 | * @since 1.0.19 |
| 172 | 172 | */ |
| 173 | - public function convert_array_xml( $data, $xml ) { |
|
| 173 | + public function convert_array_xml($data, $xml) { |
|
| 174 | 174 | |
| 175 | 175 | // Loop through |
| 176 | - foreach ( $data as $key => $value ) { |
|
| 176 | + foreach ($data as $key => $value) { |
|
| 177 | 177 | |
| 178 | - $key = preg_replace( "/[^A-Za-z0-9_\-]/", '', $key ); |
|
| 178 | + $key = preg_replace("/[^A-Za-z0-9_\-]/", '', $key); |
|
| 179 | 179 | |
| 180 | - if ( is_array( $value ) ) { |
|
| 180 | + if (is_array($value)) { |
|
| 181 | 181 | |
| 182 | - if ( is_numeric( $key ) ){ |
|
| 183 | - $key = 'item'.$key; //dealing with <0/>..<n/> issues |
|
| 182 | + if (is_numeric($key)) { |
|
| 183 | + $key = 'item' . $key; //dealing with <0/>..<n/> issues |
|
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - $subnode = $xml->addChild( $key ); |
|
| 187 | - $this->convert_array_xml( $value, $subnode ); |
|
| 186 | + $subnode = $xml->addChild($key); |
|
| 187 | + $this->convert_array_xml($value, $subnode); |
|
| 188 | 188 | |
| 189 | 189 | } else { |
| 190 | - $xml->addChild( $key, htmlspecialchars( $value ) ); |
|
| 190 | + $xml->addChild($key, htmlspecialchars($value)); |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | } |
@@ -202,24 +202,24 @@ discard block |
||
| 202 | 202 | * @since 1.0.19 |
| 203 | 203 | * @return array |
| 204 | 204 | */ |
| 205 | - public function prepare_row( $row, $fields ) { |
|
| 205 | + public function prepare_row($row, $fields) { |
|
| 206 | 206 | |
| 207 | 207 | $prepared = array(); |
| 208 | 208 | $row = (array) $row; |
| 209 | 209 | |
| 210 | - foreach ( $fields as $field ) { |
|
| 210 | + foreach ($fields as $field) { |
|
| 211 | 211 | |
| 212 | - if ( $field === 'total' ) { |
|
| 213 | - $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
| 212 | + if ($field === 'total') { |
|
| 213 | + $prepared[$field] = html_entity_decode(strip_tags(wpinv_price($row['total'])), ENT_QUOTES); |
|
| 214 | 214 | continue; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - if ( $field === 'total_raw' ) { |
|
| 218 | - $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
| 217 | + if ($field === 'total_raw') { |
|
| 218 | + $prepared[$field] = wpinv_round_amount(wpinv_sanitize_amount($row['total'])); |
|
| 219 | 219 | continue; |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
| 222 | + $prepared[$field] = strip_tags($row[$field]); |
|
| 223 | 223 | |
| 224 | 224 | } |
| 225 | 225 | |