@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * Uses MaxMind for Geolocation |
@@ -34,19 +34,19 @@ discard block |
||
34 | 34 | * @since 1.0.19 |
35 | 35 | * @return mixed|null The geolocation database service. |
36 | 36 | */ |
37 | - $this->database_service = apply_filters( 'getpaid_maxmind_geolocation_database_service', null ); |
|
38 | - if ( null === $this->database_service ) { |
|
39 | - $this->database_service = new GetPaid_MaxMind_Database_Service( $this->get_database_prefix() ); |
|
37 | + $this->database_service = apply_filters('getpaid_maxmind_geolocation_database_service', null); |
|
38 | + if (null === $this->database_service) { |
|
39 | + $this->database_service = new GetPaid_MaxMind_Database_Service($this->get_database_prefix()); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | // Bind to the scheduled updater action. |
43 | - add_action( 'getpaid_update_geoip_databases', array( $this, 'update_database' ) ); |
|
43 | + add_action('getpaid_update_geoip_databases', array($this, 'update_database')); |
|
44 | 44 | |
45 | 45 | // Bind to the geolocation filter for MaxMind database lookups. |
46 | - add_filter( 'getpaid_get_geolocation', array( $this, 'get_geolocation' ), 10, 2 ); |
|
46 | + add_filter('getpaid_get_geolocation', array($this, 'get_geolocation'), 10, 2); |
|
47 | 47 | |
48 | 48 | // Handle maxmind key updates. |
49 | - add_filter( 'wpinv_settings_sanitize_maxmind_license_key', array( $this, 'handle_key_updates' ) ); |
|
49 | + add_filter('wpinv_settings_sanitize_maxmind_license_key', array($this, 'handle_key_updates')); |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | |
@@ -65,29 +65,29 @@ discard block |
||
65 | 65 | * @param string $license_key The new license key. |
66 | 66 | * @return string |
67 | 67 | */ |
68 | - public function handle_key_updates( $license_key ) { |
|
68 | + public function handle_key_updates($license_key) { |
|
69 | 69 | |
70 | 70 | // Trim whitespaces and strip slashes. |
71 | - $license_key = trim( $license_key ); |
|
71 | + $license_key = trim($license_key); |
|
72 | 72 | |
73 | 73 | // Abort if the license key is empty or unchanged. |
74 | - if ( empty( $license_key ) ) { |
|
74 | + if (empty($license_key)) { |
|
75 | 75 | return $license_key; |
76 | 76 | } |
77 | 77 | |
78 | 78 | // Abort if a database exists and the license key is unchaged. |
79 | - if ( file_exists( $this->database_service->get_database_path() && $license_key == wpinv_get_option( 'maxmind_license_key' ) ) ) { |
|
79 | + if (file_exists($this->database_service->get_database_path() && $license_key == wpinv_get_option('maxmind_license_key'))) { |
|
80 | 80 | return $license_key; |
81 | 81 | } |
82 | 82 | |
83 | 83 | // Check the license key by attempting to download the Geolocation database. |
84 | - $tmp_database_path = $this->database_service->download_database( $license_key ); |
|
85 | - if ( is_wp_error( $tmp_database_path ) ) { |
|
86 | - getpaid_admin()->show_error( $tmp_database_path->get_error_message() ); |
|
84 | + $tmp_database_path = $this->database_service->download_database($license_key); |
|
85 | + if (is_wp_error($tmp_database_path)) { |
|
86 | + getpaid_admin()->show_error($tmp_database_path->get_error_message()); |
|
87 | 87 | return $license_key; |
88 | 88 | } |
89 | 89 | |
90 | - $this->update_database( /** @scrutinizer ignore-type */ $tmp_database_path ); |
|
90 | + $this->update_database(/** @scrutinizer ignore-type */ $tmp_database_path); |
|
91 | 91 | |
92 | 92 | } |
93 | 93 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * |
97 | 97 | * @param string $tmp_database_path Temporary database path. |
98 | 98 | */ |
99 | - public function update_database( $tmp_database_path = null ) { |
|
99 | + public function update_database($tmp_database_path = null) { |
|
100 | 100 | |
101 | 101 | // Allow us to easily interact with the filesystem. |
102 | 102 | require_once ABSPATH . 'wp-admin/includes/file.php'; |
@@ -107,32 +107,32 @@ discard block |
||
107 | 107 | $target_database_path = $this->database_service->get_database_path(); |
108 | 108 | |
109 | 109 | // If there's no database path, we can't store the database. |
110 | - if ( empty( $target_database_path ) ) { |
|
110 | + if (empty($target_database_path)) { |
|
111 | 111 | return; |
112 | 112 | } |
113 | 113 | |
114 | - if ( $wp_filesystem->exists( $target_database_path ) ) { |
|
115 | - $wp_filesystem->delete( $target_database_path ); |
|
114 | + if ($wp_filesystem->exists($target_database_path)) { |
|
115 | + $wp_filesystem->delete($target_database_path); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | // We can't download a database if there's no license key configured. |
119 | - $license_key = wpinv_get_option( 'maxmind_license_key' ); |
|
120 | - if ( empty( $license_key ) ) { |
|
119 | + $license_key = wpinv_get_option('maxmind_license_key'); |
|
120 | + if (empty($license_key)) { |
|
121 | 121 | return; |
122 | 122 | } |
123 | 123 | |
124 | - if ( empty( $tmp_database_path ) ) { |
|
125 | - $tmp_database_path = $this->database_service->download_database( $license_key ); |
|
124 | + if (empty($tmp_database_path)) { |
|
125 | + $tmp_database_path = $this->database_service->download_database($license_key); |
|
126 | 126 | } |
127 | 127 | |
128 | - if ( is_wp_error( $tmp_database_path ) ) { |
|
129 | - wpinv_error_log( $tmp_database_path->get_error_message() ); |
|
128 | + if (is_wp_error($tmp_database_path)) { |
|
129 | + wpinv_error_log($tmp_database_path->get_error_message()); |
|
130 | 130 | return; |
131 | 131 | } |
132 | 132 | |
133 | 133 | // Move the new database into position. |
134 | - $wp_filesystem->move( $tmp_database_path, $target_database_path, true ); |
|
135 | - $wp_filesystem->delete( dirname( $tmp_database_path ) ); |
|
134 | + $wp_filesystem->move($tmp_database_path, $target_database_path, true); |
|
135 | + $wp_filesystem->delete(dirname($tmp_database_path)); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -142,13 +142,13 @@ discard block |
||
142 | 142 | * @param string $ip_address The IP address to geolocate. |
143 | 143 | * @return array Geolocation including country code, state, city and postcode based on an IP address. |
144 | 144 | */ |
145 | - public function get_geolocation( $data, $ip_address ) { |
|
145 | + public function get_geolocation($data, $ip_address) { |
|
146 | 146 | |
147 | - if ( ! empty( $data['country'] ) || empty( $ip_address ) ) { |
|
147 | + if (!empty($data['country']) || empty($ip_address)) { |
|
148 | 148 | return $data; |
149 | 149 | } |
150 | 150 | |
151 | - $country_code = $this->database_service->get_iso_country_code_for_ip( $ip_address ); |
|
151 | + $country_code = $this->database_service->get_iso_country_code_for_ip($ip_address); |
|
152 | 152 | |
153 | 153 | return array( |
154 | 154 | 'country' => $country_code, |
@@ -166,11 +166,11 @@ discard block |
||
166 | 166 | */ |
167 | 167 | private function get_database_prefix() { |
168 | 168 | |
169 | - $prefix = get_option( 'wpinv_maxmind_database_prefix' ); |
|
169 | + $prefix = get_option('wpinv_maxmind_database_prefix'); |
|
170 | 170 | |
171 | - if ( empty( $prefix ) ) { |
|
172 | - $prefix = md5( uniqid( 'wpinv' ) ); |
|
173 | - update_option( 'wpinv_maxmind_database_prefix', $prefix ); |
|
171 | + if (empty($prefix)) { |
|
172 | + $prefix = md5(uniqid('wpinv')); |
|
173 | + update_option('wpinv_maxmind_database_prefix', $prefix); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | return $prefix; |
@@ -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 Class. |
@@ -23,26 +23,26 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function __construct() { |
25 | 25 | |
26 | - $this->views = array( |
|
26 | + $this->views = array( |
|
27 | 27 | |
28 | 28 | 'items' => array( |
29 | - 'label' => __( 'Items', 'invoicing' ), |
|
29 | + 'label' => __('Items', 'invoicing'), |
|
30 | 30 | 'class' => 'GetPaid_Reports_Report_Items', |
31 | 31 | ), |
32 | 32 | |
33 | 33 | 'gateways' => array( |
34 | - 'label' => __( 'Payment Methods', 'invoicing' ), |
|
34 | + 'label' => __('Payment Methods', 'invoicing'), |
|
35 | 35 | 'class' => 'GetPaid_Reports_Report_Gateways', |
36 | 36 | ), |
37 | 37 | |
38 | 38 | 'discounts' => array( |
39 | - 'label' => __( 'Discount Codes', 'invoicing' ), |
|
39 | + 'label' => __('Discount Codes', 'invoicing'), |
|
40 | 40 | 'class' => 'GetPaid_Reports_Report_Discounts', |
41 | 41 | ), |
42 | 42 | |
43 | 43 | ); |
44 | 44 | |
45 | - $this->views = apply_filters( 'wpinv_report_views', $this->views ); |
|
45 | + $this->views = apply_filters('wpinv_report_views', $this->views); |
|
46 | 46 | |
47 | 47 | } |
48 | 48 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | |
89 | 89 | ?> |
90 | 90 | |
91 | - <?php foreach ( $this->views as $view ) : ?> |
|
91 | + <?php foreach ($this->views as $view) : ?> |
|
92 | 92 | <div class="row mb-4"> |
93 | 93 | <div class="col-12"> |
94 | 94 | <div class="card m-0 p-0" style="max-width:100%"> |
@@ -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: { |
@@ -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: { |
@@ -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: { |