@@ -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 | |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | public function get_range() { |
54 | 54 | $valid_ranges = $this->get_periods(); |
55 | 55 | |
56 | - if ( isset( $_GET['date_range'] ) && array_key_exists( $_GET['date_range'], $valid_ranges ) ) { |
|
57 | - return sanitize_key( $_GET['date_range'] ); |
|
56 | + if (isset($_GET['date_range']) && array_key_exists($_GET['date_range'], $valid_ranges)) { |
|
57 | + return sanitize_key($_GET['date_range']); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | return '7_days'; |
@@ -68,22 +68,22 @@ discard block |
||
68 | 68 | public function get_periods() { |
69 | 69 | |
70 | 70 | $periods = array( |
71 | - 'today' => __( 'Today', 'invoicing' ), |
|
72 | - 'yesterday' => __( 'Yesterday', 'invoicing' ), |
|
73 | - 'week' => __( 'This week', 'invoicing' ), |
|
74 | - 'last_week' => __( 'Last week', 'invoicing' ), |
|
75 | - '7_days' => __( 'Last 7 days', 'invoicing' ), |
|
76 | - 'month' => __( 'This month', 'invoicing' ), |
|
77 | - 'last_month' => __( 'Last month', 'invoicing' ), |
|
78 | - '30_days' => __( 'Last 30 days', 'invoicing' ), |
|
79 | - 'quarter' => __( 'This Quarter', 'invoicing' ), |
|
80 | - 'last_quarter' => __( 'Last Quarter', 'invoicing' ), |
|
81 | - 'year' => __( 'This year', 'invoicing' ), |
|
82 | - 'last_year' => __( 'Last Year', 'invoicing' ), |
|
83 | - 'custom' => __( 'Custom Date Range', 'invoicing' ), |
|
71 | + 'today' => __('Today', 'invoicing'), |
|
72 | + 'yesterday' => __('Yesterday', 'invoicing'), |
|
73 | + 'week' => __('This week', 'invoicing'), |
|
74 | + 'last_week' => __('Last week', 'invoicing'), |
|
75 | + '7_days' => __('Last 7 days', 'invoicing'), |
|
76 | + 'month' => __('This month', 'invoicing'), |
|
77 | + 'last_month' => __('Last month', 'invoicing'), |
|
78 | + '30_days' => __('Last 30 days', 'invoicing'), |
|
79 | + 'quarter' => __('This Quarter', 'invoicing'), |
|
80 | + 'last_quarter' => __('Last Quarter', 'invoicing'), |
|
81 | + 'year' => __('This year', 'invoicing'), |
|
82 | + 'last_year' => __('Last Year', 'invoicing'), |
|
83 | + 'custom' => __('Custom Date Range', 'invoicing'), |
|
84 | 84 | ); |
85 | 85 | |
86 | - return apply_filters( 'getpaid_earning_periods', $periods ); |
|
86 | + return apply_filters('getpaid_earning_periods', $periods); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -96,21 +96,21 @@ discard block |
||
96 | 96 | ?> |
97 | 97 | |
98 | 98 | <form method="get" class="getpaid-filter-earnings float-right"> |
99 | - <?php getpaid_hidden_field( 'page', 'wpinv-reports' ); ?> |
|
100 | - <?php getpaid_hidden_field( 'tab', 'reports' ); ?> |
|
99 | + <?php getpaid_hidden_field('page', 'wpinv-reports'); ?> |
|
100 | + <?php getpaid_hidden_field('tab', 'reports'); ?> |
|
101 | 101 | <select name='date_range'> |
102 | - <?php foreach( $this->get_periods() as $key => $label ) :?> |
|
103 | - <option value="<?php echo sanitize_key( $key ); ?>" <?php selected( $key, $range ); ?>><?php echo sanitize_text_field( $label ); ?></option> |
|
104 | - <?php endforeach;?> |
|
102 | + <?php foreach ($this->get_periods() as $key => $label) :?> |
|
103 | + <option value="<?php echo sanitize_key($key); ?>" <?php selected($key, $range); ?>><?php echo sanitize_text_field($label); ?></option> |
|
104 | + <?php endforeach; ?> |
|
105 | 105 | </select> |
106 | 106 | <span class="getpaid-date-range-picker <?php echo 'custom' == $range ? '' : 'd-none'; ?>"> |
107 | 107 | <input type="text" name="from" class="getpaid-from align-middle" /> |
108 | - <?php _e( 'to', 'invoicing' ); ?> |
|
108 | + <?php _e('to', 'invoicing'); ?> |
|
109 | 109 | <input type="text" name="to" class="getpaid-to align-middle" /> |
110 | 110 | </span> |
111 | 111 | <button type="submit" class="button button-primary"> |
112 | 112 | <i class="fa fa-chevron-right fa-lg"></i> |
113 | - <span class="screen-reader-text"><?php _e( 'View Reports', 'invoicing' ); ?></span> |
|
113 | + <span class="screen-reader-text"><?php _e('View Reports', 'invoicing'); ?></span> |
|
114 | 114 | </button> |
115 | 115 | </form> |
116 | 116 | |
@@ -159,17 +159,17 @@ discard block |
||
159 | 159 | |
160 | 160 | <div class="col-12 col-md-4"> |
161 | 161 | <div class="row getpaid-report-cards"> |
162 | - <?php foreach( $this->get_cards() as $key => $card ) : ?> |
|
162 | + <?php foreach ($this->get_cards() as $key => $card) : ?> |
|
163 | 163 | <div class="col-12 mb-4"> |
164 | 164 | |
165 | - <!-- <?php echo sanitize_text_field( $card['label'] ); ?> Card --> |
|
166 | - <div class="card p-0 m-0 shadow-none <?php echo sanitize_html_class( $key ); ?>"> |
|
165 | + <!-- <?php echo sanitize_text_field($card['label']); ?> Card --> |
|
166 | + <div class="card p-0 m-0 shadow-none <?php echo sanitize_html_class($key); ?>"> |
|
167 | 167 | |
168 | 168 | <div class="card-body"> |
169 | 169 | |
170 | 170 | <p class="getpaid-current text-uppercase small mb-2"> |
171 | - <strong><?php echo sanitize_text_field( $card['label'] ); ?></strong> |
|
172 | - <span title="<?php echo esc_attr( $card['description'] ); ?>" class="wpi-help-tip dashicons dashicons-editor-help text-muted" style="margin-top: -2px;"></span> |
|
171 | + <strong><?php echo sanitize_text_field($card['label']); ?></strong> |
|
172 | + <span title="<?php echo esc_attr($card['description']); ?>" class="wpi-help-tip dashicons dashicons-editor-help text-muted" style="margin-top: -2px;"></span> |
|
173 | 173 | </p> |
174 | 174 | <h5 class="font-weight-bold mb-0"> |
175 | 175 | <span class="getpaid-report-card-value"> |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | |
181 | 181 | <hr> |
182 | 182 | |
183 | - <p class="getpaid-previous text-uppercase text-muted small mb-2"><strong><?php _e( 'Previous Period', 'invoicing' ); ?></strong></p> |
|
183 | + <p class="getpaid-previous text-uppercase text-muted small mb-2"><strong><?php _e('Previous Period', 'invoicing'); ?></strong></p> |
|
184 | 184 | <h5 class="getpaid-report-card-previous-value font-weight-bold text-muted mb-0"> |
185 | 185 | <span class="spinner is-active float-none"></span> |
186 | 186 | </h5> |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | </div> |
189 | 189 | |
190 | 190 | </div> |
191 | - <!-- <?php echo sanitize_text_field( $card['label'] ); ?> Card --> |
|
191 | + <!-- <?php echo sanitize_text_field($card['label']); ?> Card --> |
|
192 | 192 | |
193 | 193 | </div> |
194 | 194 | <?php endforeach; ?> |
@@ -210,26 +210,26 @@ discard block |
||
210 | 210 | */ |
211 | 211 | public function display_left() { |
212 | 212 | $graphs = array( |
213 | - 'sales' => __( 'Earnings', 'invoicing' ), |
|
214 | - 'refunds' => __( 'Refunds', 'invoicing' ), |
|
215 | - 'tax' => __( 'Taxes', 'invoicing' ), |
|
216 | - 'fees' => __( 'Fees', 'invoicing' ), |
|
217 | - 'discount' => __( 'Discounts', 'invoicing' ), |
|
218 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
219 | - 'items' => __( 'Purchased Items', 'invoicing' ), |
|
213 | + 'sales' => __('Earnings', 'invoicing'), |
|
214 | + 'refunds' => __('Refunds', 'invoicing'), |
|
215 | + 'tax' => __('Taxes', 'invoicing'), |
|
216 | + 'fees' => __('Fees', 'invoicing'), |
|
217 | + 'discount' => __('Discounts', 'invoicing'), |
|
218 | + 'invoices' => __('Invoices', 'invoicing'), |
|
219 | + 'items' => __('Purchased Items', 'invoicing'), |
|
220 | 220 | ); |
221 | 221 | |
222 | 222 | ?> |
223 | 223 | |
224 | - <?php foreach ( $graphs as $key => $graph ) : ?> |
|
224 | + <?php foreach ($graphs as $key => $graph) : ?> |
|
225 | 225 | <div class="row mb-4"> |
226 | 226 | <div class="col-12"> |
227 | 227 | <div class="card m-0 p-0 single-report-card" style="max-width:100%"> |
228 | 228 | <div class="card-header"> |
229 | - <strong><?php echo wpinv_clean( $graph ); ?></strong> |
|
229 | + <strong><?php echo wpinv_clean($graph); ?></strong> |
|
230 | 230 | </div> |
231 | 231 | <div class="card-body"> |
232 | - <canvas id="getpaid-chartjs-<?php echo sanitize_key( $key ); ?>"></canvas> |
|
232 | + <canvas id="getpaid-chartjs-<?php echo sanitize_key($key); ?>"></canvas> |
|
233 | 233 | </div> |
234 | 234 | </div> |
235 | 235 | </div> |
@@ -244,14 +244,14 @@ discard block |
||
244 | 244 | * Retrieves the download url. |
245 | 245 | * |
246 | 246 | */ |
247 | - public function get_download_url( $graph, $file_type ) { |
|
247 | + public function get_download_url($graph, $file_type) { |
|
248 | 248 | |
249 | 249 | return wp_nonce_url( |
250 | 250 | add_query_arg( |
251 | 251 | array( |
252 | 252 | 'getpaid-admin-action' => 'download_graph', |
253 | - 'file_type' => urlencode( $file_type ), |
|
254 | - 'graph' => urlencode( $graph ), |
|
253 | + 'file_type' => urlencode($file_type), |
|
254 | + 'graph' => urlencode($graph), |
|
255 | 255 | ) |
256 | 256 | ), |
257 | 257 | 'getpaid-nonce', |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | |
269 | 269 | ?> |
270 | 270 | |
271 | - <?php foreach ( $this->views as $key => $view ) : ?> |
|
271 | + <?php foreach ($this->views as $key => $view) : ?> |
|
272 | 272 | <div class="row mb-4"> |
273 | 273 | <div class="col-12"> |
274 | 274 | <div class="card m-0 p-0" style="max-width:100%"> |
@@ -278,17 +278,17 @@ discard block |
||
278 | 278 | <strong><?php echo $view['label']; ?></strong> |
279 | 279 | </div> |
280 | 280 | <div class="col-3"> |
281 | - <a title="<?php esc_attr_e( 'Download JSON', 'invoicing' ); ?>" href="<?php echo esc_url( $this->get_download_url( $key, 'json' ) ); ?>"> |
|
281 | + <a title="<?php esc_attr_e('Download JSON', 'invoicing'); ?>" href="<?php echo esc_url($this->get_download_url($key, 'json')); ?>"> |
|
282 | 282 | <i class="fa fa-download text-dark" style="font-size: 16px" aria-hidden="true"></i> |
283 | - <span class="screen-reader-text"><?php _e( 'Download JSON', 'invoicing' ); ?></span> |
|
283 | + <span class="screen-reader-text"><?php _e('Download JSON', 'invoicing'); ?></span> |
|
284 | 284 | </a> |
285 | - <a title="<?php esc_attr_e( 'Download CSV', 'invoicing' ); ?>" href="<?php echo esc_url( $this->get_download_url( $key, 'csv' ) ); ?>"> |
|
285 | + <a title="<?php esc_attr_e('Download CSV', 'invoicing'); ?>" href="<?php echo esc_url($this->get_download_url($key, 'csv')); ?>"> |
|
286 | 286 | <i class="fa fa-file-csv text-dark" style="font-size: 16px" aria-hidden="true"></i> |
287 | - <span class="screen-reader-text"><?php _e( 'Download CSV', 'invoicing' ); ?></span> |
|
287 | + <span class="screen-reader-text"><?php _e('Download CSV', 'invoicing'); ?></span> |
|
288 | 288 | </a> |
289 | - <a title="<?php esc_attr_e( 'Download XML', 'invoicing' ); ?>" href="<?php echo esc_url( $this->get_download_url( $key, 'xml' ) ); ?>"> |
|
289 | + <a title="<?php esc_attr_e('Download XML', 'invoicing'); ?>" href="<?php echo esc_url($this->get_download_url($key, 'xml')); ?>"> |
|
290 | 290 | <i class="fa fa-file-code text-dark" style="font-size: 16px" aria-hidden="true"></i> |
291 | - <span class="screen-reader-text"><?php _e( 'Download XML', 'invoicing' ); ?></span> |
|
291 | + <span class="screen-reader-text"><?php _e('Download XML', 'invoicing'); ?></span> |
|
292 | 292 | </a> |
293 | 293 | </div> |
294 | 294 | </div> |
@@ -317,56 +317,56 @@ discard block |
||
317 | 317 | |
318 | 318 | $cards = array( |
319 | 319 | 'total_sales' => array( |
320 | - 'description' => __( 'Gross sales in the period.', 'invoicing' ), |
|
321 | - 'label' => __( 'Gross Revenue', 'invoicing' ), |
|
320 | + 'description' => __('Gross sales in the period.', 'invoicing'), |
|
321 | + 'label' => __('Gross Revenue', 'invoicing'), |
|
322 | 322 | ), |
323 | 323 | 'net_sales' => array( |
324 | - 'description' => __( 'Net sales in the period.', 'invoicing' ), |
|
325 | - 'label' => __( 'Net Revenue', 'invoicing' ), |
|
324 | + 'description' => __('Net sales in the period.', 'invoicing'), |
|
325 | + 'label' => __('Net Revenue', 'invoicing'), |
|
326 | 326 | ), |
327 | 327 | 'average_sales' => array( |
328 | - 'description' => __( 'Average net daily/monthly sales.', 'invoicing' ), |
|
329 | - 'label' => __( 'Avg. Net Sales', 'invoicing' ), |
|
328 | + 'description' => __('Average net daily/monthly sales.', 'invoicing'), |
|
329 | + 'label' => __('Avg. Net Sales', 'invoicing'), |
|
330 | 330 | ), |
331 | 331 | 'average_total_sales' => array( |
332 | - 'description' => __( 'Average gross daily/monthly sales.', 'invoicing' ), |
|
333 | - 'label' => __( 'Avg. Gross Sales', 'invoicing' ), |
|
332 | + 'description' => __('Average gross daily/monthly sales.', 'invoicing'), |
|
333 | + 'label' => __('Avg. Gross Sales', 'invoicing'), |
|
334 | 334 | ), |
335 | 335 | 'total_invoices' => array( |
336 | - 'description' => __( 'Number of paid invoices.', 'invoicing' ), |
|
337 | - 'label' => __( 'Paid Invoices', 'invoicing' ), |
|
336 | + 'description' => __('Number of paid invoices.', 'invoicing'), |
|
337 | + 'label' => __('Paid Invoices', 'invoicing'), |
|
338 | 338 | ), |
339 | 339 | 'total_items' => array( |
340 | - 'description' => __( 'Number of items purchased.', 'invoicing' ), |
|
341 | - 'label' => __( 'Purchased Items', 'invoicing' ), |
|
340 | + 'description' => __('Number of items purchased.', 'invoicing'), |
|
341 | + 'label' => __('Purchased Items', 'invoicing'), |
|
342 | 342 | ), |
343 | 343 | 'refunded_items' => array( |
344 | - 'description' => __( 'Number of items refunded.', 'invoicing' ), |
|
345 | - 'label' => __( 'Refunded Items', 'invoicing' ), |
|
344 | + 'description' => __('Number of items refunded.', 'invoicing'), |
|
345 | + 'label' => __('Refunded Items', 'invoicing'), |
|
346 | 346 | ), |
347 | 347 | 'total_tax' => array( |
348 | - 'description' => __( 'Total charged for taxes.', 'invoicing' ), |
|
349 | - 'label' => __( 'Tax', 'invoicing' ), |
|
348 | + 'description' => __('Total charged for taxes.', 'invoicing'), |
|
349 | + 'label' => __('Tax', 'invoicing'), |
|
350 | 350 | ), |
351 | 351 | 'total_refunded_tax' => array( |
352 | - 'description' => __( 'Total refunded for taxes.', 'invoicing' ), |
|
353 | - 'label' => __( 'Refunded Tax', 'invoicing' ), |
|
352 | + 'description' => __('Total refunded for taxes.', 'invoicing'), |
|
353 | + 'label' => __('Refunded Tax', 'invoicing'), |
|
354 | 354 | ), |
355 | 355 | 'total_fees' => array( |
356 | - 'description' => __( 'Total fees charged.', 'invoicing' ), |
|
357 | - 'label' => __( 'Fees', 'invoicing' ), |
|
356 | + 'description' => __('Total fees charged.', 'invoicing'), |
|
357 | + 'label' => __('Fees', 'invoicing'), |
|
358 | 358 | ), |
359 | 359 | 'total_refunds' => array( |
360 | - 'description' => __( 'Total of refunded invoices.', 'invoicing' ), |
|
361 | - 'label' => __( 'Refunded', 'invoicing' ), |
|
360 | + 'description' => __('Total of refunded invoices.', 'invoicing'), |
|
361 | + 'label' => __('Refunded', 'invoicing'), |
|
362 | 362 | ), |
363 | 363 | 'total_discount' => array( |
364 | - 'description' => __( 'Total of discounts used.', 'invoicing' ), |
|
365 | - 'label' => __( 'Discounted', 'invoicing' ), |
|
364 | + 'description' => __('Total of discounts used.', 'invoicing'), |
|
365 | + 'label' => __('Discounted', 'invoicing'), |
|
366 | 366 | ), |
367 | 367 | ); |
368 | 368 | |
369 | - return apply_filters( 'wpinv_report_cards', $cards ); |
|
369 | + return apply_filters('wpinv_report_cards', $cards); |
|
370 | 370 | } |
371 | 371 | |
372 | 372 |