@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | $current = 'earnings'; |
| 117 | 117 | |
| 118 | 118 | if ( isset( $_GET['view'] ) && array_key_exists( $_GET['view'], $views ) ) |
| 119 | - $current = $_GET['view']; |
|
| 119 | + $current = $_GET['view']; |
|
| 120 | 120 | |
| 121 | 121 | ?> |
| 122 | 122 | <form id="wpinv-reports-filter" method="get" class="tablenav"> |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | </form> |
| 135 | 135 | <?php |
| 136 | 136 | |
| 137 | - do_action( 'wpinv_reports_view_' . $current ); |
|
| 137 | + do_action( 'wpinv_reports_view_' . $current ); |
|
| 138 | 138 | |
| 139 | 139 | } |
| 140 | 140 | |
@@ -224,13 +224,13 @@ discard block |
||
| 224 | 224 | $is_writeable = $is_dir && is_writeable( $this->export_dir ); |
| 225 | 225 | |
| 226 | 226 | if ( $is_dir && $is_writeable ) { |
| 227 | - return true; |
|
| 227 | + return true; |
|
| 228 | 228 | } else if ( $is_dir && !$is_writeable ) { |
| 229 | - if ( !$this->wp_filesystem->chmod( $this->export_dir, FS_CHMOD_DIR ) ) { |
|
| 230 | - return wp_sprintf( __( 'Filesystem ERROR: Export location %s is not writable, check your file permissions.', 'invoicing' ), $this->export_dir ); |
|
| 231 | - } |
|
| 229 | + if ( !$this->wp_filesystem->chmod( $this->export_dir, FS_CHMOD_DIR ) ) { |
|
| 230 | + return wp_sprintf( __( 'Filesystem ERROR: Export location %s is not writable, check your file permissions.', 'invoicing' ), $this->export_dir ); |
|
| 231 | + } |
|
| 232 | 232 | |
| 233 | - return true; |
|
| 233 | + return true; |
|
| 234 | 234 | } else { |
| 235 | 235 | if ( !$this->wp_filesystem->mkdir( $this->export_dir, FS_CHMOD_DIR ) ) { |
| 236 | 236 | return wp_sprintf( __( 'Filesystem ERROR: Could not create directory %s. This is usually due to inconsistent file permissions.', 'invoicing' ), $this->export_dir ); |
@@ -325,12 +325,12 @@ discard block |
||
| 325 | 325 | $output = fopen( 'php://output', 'w' ) or die( 'Unsupported server' ); |
| 326 | 326 | |
| 327 | 327 | // Let the browser know what content we're streaming and how it should save the content. |
| 328 | - $name = time(); |
|
| 329 | - header( "Content-Type:application/csv" ); |
|
| 328 | + $name = time(); |
|
| 329 | + header( "Content-Type:application/csv" ); |
|
| 330 | 330 | header( "Content-Disposition:attachment;filename=noptin-subscribers-$name.csv" ); |
| 331 | 331 | |
| 332 | 332 | // Output the csv column headers. |
| 333 | - fputcsv( |
|
| 333 | + fputcsv( |
|
| 334 | 334 | $output, |
| 335 | 335 | array( |
| 336 | 336 | __( 'Discount Id', 'invoicing' ), |
@@ -698,12 +698,12 @@ discard block |
||
| 698 | 698 | $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days', current_time( 'timestamp' ) ) ); |
| 699 | 699 | $first_day_month = date( 'Y-m-1', current_time( 'timestamp' ) ); |
| 700 | 700 | $last_day_month = date( 'Y-m-t', current_time( 'timestamp' ) ); |
| 701 | - $first_day_last_month = date( 'Y-m-d', strtotime( 'first day of last month', current_time( 'timestamp' ) ) ); |
|
| 701 | + $first_day_last_month = date( 'Y-m-d', strtotime( 'first day of last month', current_time( 'timestamp' ) ) ); |
|
| 702 | 702 | $last_day_last_month = date( 'Y-m-d', strtotime( 'last day of last month', current_time( 'timestamp' ) ) ); |
| 703 | 703 | $first_day_year = date( 'Y-1-1', current_time( 'timestamp' ) ); |
| 704 | 704 | $last_day_year = date( 'Y-12-31', current_time( 'timestamp' ) ); |
| 705 | - $first_day_last_year = date( 'Y-m-d', strtotime( 'first day of last year', current_time( 'timestamp' ) ) ); |
|
| 706 | - $last_day_last_year = date( 'Y-m-d', strtotime( 'last day of last year', current_time( 'timestamp' ) ) ); |
|
| 705 | + $first_day_last_year = date( 'Y-m-d', strtotime( 'first day of last year', current_time( 'timestamp' ) ) ); |
|
| 706 | + $last_day_last_year = date( 'Y-m-d', strtotime( 'last day of last year', current_time( 'timestamp' ) ) ); |
|
| 707 | 707 | |
| 708 | 708 | $ranges = array( |
| 709 | 709 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; // Exit if accessed directly |
| 4 | 4 | } |
| 5 | 5 | |
@@ -21,79 +21,79 @@ discard block |
||
| 21 | 21 | public function init() { |
| 22 | 22 | global $wp_filesystem; |
| 23 | 23 | |
| 24 | - if ( empty( $wp_filesystem ) ) { |
|
| 25 | - require_once( ABSPATH . '/wp-admin/includes/file.php' ); |
|
| 24 | + if (empty($wp_filesystem)) { |
|
| 25 | + require_once(ABSPATH . '/wp-admin/includes/file.php'); |
|
| 26 | 26 | WP_Filesystem(); |
| 27 | 27 | global $wp_filesystem; |
| 28 | 28 | } |
| 29 | 29 | $this->wp_filesystem = $wp_filesystem; |
| 30 | 30 | |
| 31 | 31 | $this->export_dir = $this->export_location(); |
| 32 | - $this->export_url = $this->export_location( true ); |
|
| 32 | + $this->export_url = $this->export_location(true); |
|
| 33 | 33 | $this->export = 'invoicing'; |
| 34 | 34 | $this->filetype = 'csv'; |
| 35 | 35 | $this->per_page = 20; |
| 36 | 36 | |
| 37 | - do_action( 'wpinv_class_reports_init', $this ); |
|
| 37 | + do_action('wpinv_class_reports_init', $this); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function includes() { |
| 41 | - do_action( 'wpinv_class_reports_includes', $this ); |
|
| 41 | + do_action('wpinv_class_reports_includes', $this); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public function actions() { |
| 45 | - if ( is_admin() ) { |
|
| 46 | - add_action( 'admin_menu', array( $this, 'add_submenu' ), 20 ); |
|
| 47 | - add_action( 'wpinv_reports_tab_reports', array( $this, 'reports' ) ); |
|
| 48 | - add_action( 'wpinv_reports_tab_export', array( $this, 'export' ) ); |
|
| 49 | - add_action( 'wp_ajax_wpinv_ajax_export', array( $this, 'ajax_export' ) ); |
|
| 50 | - add_action( 'wp_ajax_wpinv_ajax_discount_use_export', array( $this, 'discount_use_export' ) ); |
|
| 45 | + if (is_admin()) { |
|
| 46 | + add_action('admin_menu', array($this, 'add_submenu'), 20); |
|
| 47 | + add_action('wpinv_reports_tab_reports', array($this, 'reports')); |
|
| 48 | + add_action('wpinv_reports_tab_export', array($this, 'export')); |
|
| 49 | + add_action('wp_ajax_wpinv_ajax_export', array($this, 'ajax_export')); |
|
| 50 | + add_action('wp_ajax_wpinv_ajax_discount_use_export', array($this, 'discount_use_export')); |
|
| 51 | 51 | |
| 52 | 52 | // Export Invoices. |
| 53 | - add_action( 'wpinv_export_set_params_invoices', array( $this, 'set_invoices_export' ) ); |
|
| 54 | - add_filter( 'wpinv_export_get_columns_invoices', array( $this, 'get_invoices_columns' ) ); |
|
| 55 | - add_filter( 'wpinv_export_get_data_invoices', array( $this, 'get_invoices_data' ) ); |
|
| 56 | - add_filter( 'wpinv_get_export_status_invoices', array( $this, 'invoices_export_status' ) ); |
|
| 53 | + add_action('wpinv_export_set_params_invoices', array($this, 'set_invoices_export')); |
|
| 54 | + add_filter('wpinv_export_get_columns_invoices', array($this, 'get_invoices_columns')); |
|
| 55 | + add_filter('wpinv_export_get_data_invoices', array($this, 'get_invoices_data')); |
|
| 56 | + add_filter('wpinv_get_export_status_invoices', array($this, 'invoices_export_status')); |
|
| 57 | 57 | |
| 58 | 58 | // Reports. |
| 59 | - add_action( 'wpinv_reports_view_earnings', array( $this, 'earnings_report' ) ); |
|
| 60 | - add_action( 'wpinv_reports_view_gateways', array( $this, 'gateways_report' ) ); |
|
| 61 | - add_action( 'wpinv_reports_view_items', array( $this, 'items_report' ) ); |
|
| 62 | - add_action( 'wpinv_reports_view_taxes', array( $this, 'tax_report' ) ); |
|
| 59 | + add_action('wpinv_reports_view_earnings', array($this, 'earnings_report')); |
|
| 60 | + add_action('wpinv_reports_view_gateways', array($this, 'gateways_report')); |
|
| 61 | + add_action('wpinv_reports_view_items', array($this, 'items_report')); |
|
| 62 | + add_action('wpinv_reports_view_taxes', array($this, 'tax_report')); |
|
| 63 | 63 | } |
| 64 | - do_action( 'wpinv_class_reports_actions', $this ); |
|
| 64 | + do_action('wpinv_class_reports_actions', $this); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | public function add_submenu() { |
| 68 | 68 | global $wpi_reports_page; |
| 69 | - $wpi_reports_page = add_submenu_page( 'wpinv', __( 'Reports', 'invoicing' ), __( 'Reports', 'invoicing' ), wpinv_get_capability(), 'wpinv-reports', array( $this, 'reports_page' ) ); |
|
| 69 | + $wpi_reports_page = add_submenu_page('wpinv', __('Reports', 'invoicing'), __('Reports', 'invoicing'), wpinv_get_capability(), 'wpinv-reports', array($this, 'reports_page')); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | public function reports_page() { |
| 73 | 73 | |
| 74 | - if ( !wp_script_is( 'postbox', 'enqueued' ) ) { |
|
| 75 | - wp_enqueue_script( 'postbox' ); |
|
| 74 | + if (!wp_script_is('postbox', 'enqueued')) { |
|
| 75 | + wp_enqueue_script('postbox'); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - if ( !wp_script_is( 'jquery-ui-datepicker', 'enqueued' ) ) { |
|
| 79 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
| 78 | + if (!wp_script_is('jquery-ui-datepicker', 'enqueued')) { |
|
| 79 | + wp_enqueue_script('jquery-ui-datepicker'); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - $current_page = admin_url( 'admin.php?page=wpinv-reports' ); |
|
| 83 | - $active_tab = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : 'reports'; |
|
| 82 | + $current_page = admin_url('admin.php?page=wpinv-reports'); |
|
| 83 | + $active_tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : 'reports'; |
|
| 84 | 84 | ?> |
| 85 | 85 | <div class="wrap wpi-reports-wrap"> |
| 86 | - <h1><?php echo esc_html( __( 'Reports', 'invoicing' ) ); ?></h1> |
|
| 86 | + <h1><?php echo esc_html(__('Reports', 'invoicing')); ?></h1> |
|
| 87 | 87 | <h2 class="nav-tab-wrapper wp-clearfix"> |
| 88 | - <a href="<?php echo add_query_arg( array( 'tab' => 'reports', 'settings-updated' => false ), $current_page ); ?>" class="nav-tab <?php echo $active_tab == 'reports' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Reports', 'invoicing' ); ?></a> |
|
| 89 | - <a href="<?php echo add_query_arg( array( 'tab' => 'export', 'settings-updated' => false ), $current_page ); ?>" class="nav-tab <?php echo $active_tab == 'export' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Export', 'invoicing' ); ?></a> |
|
| 90 | - <?php do_action( 'wpinv_reports_page_tabs' ); ;?> |
|
| 88 | + <a href="<?php echo add_query_arg(array('tab' => 'reports', 'settings-updated' => false), $current_page); ?>" class="nav-tab <?php echo $active_tab == 'reports' ? 'nav-tab-active' : ''; ?>"><?php _e('Reports', 'invoicing'); ?></a> |
|
| 89 | + <a href="<?php echo add_query_arg(array('tab' => 'export', 'settings-updated' => false), $current_page); ?>" class="nav-tab <?php echo $active_tab == 'export' ? 'nav-tab-active' : ''; ?>"><?php _e('Export', 'invoicing'); ?></a> |
|
| 90 | + <?php do_action('wpinv_reports_page_tabs'); ;?> |
|
| 91 | 91 | </h2> |
| 92 | - <div class="wpi-reports-content wpi-reports-<?php echo esc_attr( $active_tab ); ?>"> |
|
| 92 | + <div class="wpi-reports-content wpi-reports-<?php echo esc_attr($active_tab); ?>"> |
|
| 93 | 93 | <?php |
| 94 | - do_action( 'wpinv_reports_page_top' ); |
|
| 95 | - do_action( 'wpinv_reports_tab_' . $active_tab ); |
|
| 96 | - do_action( 'wpinv_reports_page_bottom' ); |
|
| 94 | + do_action('wpinv_reports_page_top'); |
|
| 95 | + do_action('wpinv_reports_tab_' . $active_tab); |
|
| 96 | + do_action('wpinv_reports_page_bottom'); |
|
| 97 | 97 | ?> |
| 98 | 98 | </div> |
| 99 | 99 | </div> |
@@ -106,139 +106,139 @@ discard block |
||
| 106 | 106 | public function reports() { |
| 107 | 107 | |
| 108 | 108 | $views = array( |
| 109 | - 'earnings' => __( 'Earnings', 'invoicing' ), |
|
| 110 | - 'items' => __( 'Items', 'invoicing' ), |
|
| 111 | - 'gateways' => __( 'Payment Methods', 'invoicing' ), |
|
| 112 | - 'taxes' => __( 'Taxes', 'invoicing' ), |
|
| 109 | + 'earnings' => __('Earnings', 'invoicing'), |
|
| 110 | + 'items' => __('Items', 'invoicing'), |
|
| 111 | + 'gateways' => __('Payment Methods', 'invoicing'), |
|
| 112 | + 'taxes' => __('Taxes', 'invoicing'), |
|
| 113 | 113 | ); |
| 114 | 114 | |
| 115 | - $views = apply_filters( 'wpinv_report_views', $views ); |
|
| 115 | + $views = apply_filters('wpinv_report_views', $views); |
|
| 116 | 116 | $current = 'earnings'; |
| 117 | 117 | |
| 118 | - if ( isset( $_GET['view'] ) && array_key_exists( $_GET['view'], $views ) ) |
|
| 118 | + if (isset($_GET['view']) && array_key_exists($_GET['view'], $views)) |
|
| 119 | 119 | $current = $_GET['view']; |
| 120 | 120 | |
| 121 | 121 | ?> |
| 122 | 122 | <form id="wpinv-reports-filter" method="get" class="tablenav"> |
| 123 | 123 | <select id="wpinv-reports-view" name="view"> |
| 124 | - <option value="-1" disabled><?php _e( 'Report Type', 'invoicing' ); ?></option> |
|
| 125 | - <?php foreach ( $views as $view_id => $label ) : ?> |
|
| 126 | - <option value="<?php echo esc_attr( $view_id ); ?>" <?php selected( $view_id, $current ); ?>><?php echo $label; ?></option> |
|
| 124 | + <option value="-1" disabled><?php _e('Report Type', 'invoicing'); ?></option> |
|
| 125 | + <?php foreach ($views as $view_id => $label) : ?> |
|
| 126 | + <option value="<?php echo esc_attr($view_id); ?>" <?php selected($view_id, $current); ?>><?php echo $label; ?></option> |
|
| 127 | 127 | <?php endforeach; ?> |
| 128 | 128 | </select> |
| 129 | 129 | |
| 130 | - <?php do_action( 'wpinv_report_view_actions' ); ?> |
|
| 130 | + <?php do_action('wpinv_report_view_actions'); ?> |
|
| 131 | 131 | |
| 132 | 132 | <input type="hidden" name="page" value="wpinv-reports"/> |
| 133 | - <?php submit_button( __( 'Show', 'invoicing' ), 'secondary', 'submit', false ); ?> |
|
| 133 | + <?php submit_button(__('Show', 'invoicing'), 'secondary', 'submit', false); ?> |
|
| 134 | 134 | </form> |
| 135 | 135 | <?php |
| 136 | 136 | |
| 137 | - do_action( 'wpinv_reports_view_' . $current ); |
|
| 137 | + do_action('wpinv_reports_view_' . $current); |
|
| 138 | 138 | |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | public function export() { |
| 142 | - $statuses = wpinv_get_invoice_statuses( true ); |
|
| 143 | - $statuses = array_merge( array( 'any' => __( 'All Statuses', 'invoicing' ) ), $statuses ); |
|
| 142 | + $statuses = wpinv_get_invoice_statuses(true); |
|
| 143 | + $statuses = array_merge(array('any' => __('All Statuses', 'invoicing')), $statuses); |
|
| 144 | 144 | ?> |
| 145 | 145 | <div class="metabox-holder"> |
| 146 | 146 | <div id="post-body"> |
| 147 | 147 | <div id="post-body-content"> |
| 148 | - <?php do_action( 'wpinv_reports_tab_export_content_top' ); ?> |
|
| 148 | + <?php do_action('wpinv_reports_tab_export_content_top'); ?> |
|
| 149 | 149 | |
| 150 | 150 | <div class="postbox wpi-export-invoices"> |
| 151 | - <h2 class="hndle ui-sortabled-handle"><span><?php _e( 'Invoices','invoicing' ); ?></span></h2> |
|
| 151 | + <h2 class="hndle ui-sortabled-handle"><span><?php _e('Invoices', 'invoicing'); ?></span></h2> |
|
| 152 | 152 | <div class="inside"> |
| 153 | - <p><?php _e( 'Download a CSV of all payment invoices.', 'invoicing' ); ?></p> |
|
| 153 | + <p><?php _e('Download a CSV of all payment invoices.', 'invoicing'); ?></p> |
|
| 154 | 154 | <form id="wpi-export-invoices" class="wpi-export-form" method="post"> |
| 155 | - <?php echo wpinv_html_date_field( array( |
|
| 155 | + <?php echo wpinv_html_date_field(array( |
|
| 156 | 156 | 'id' => 'wpi_export_from_date', |
| 157 | 157 | 'name' => 'from_date', |
| 158 | 158 | 'data' => array( |
| 159 | 159 | 'dateFormat' => 'yy-mm-dd' |
| 160 | 160 | ), |
| 161 | - 'placeholder' => __( 'From date', 'invoicing' ) ) |
|
| 161 | + 'placeholder' => __('From date', 'invoicing') ) |
|
| 162 | 162 | ); ?> |
| 163 | - <?php echo wpinv_html_date_field( array( |
|
| 163 | + <?php echo wpinv_html_date_field(array( |
|
| 164 | 164 | 'id' => 'wpi_export_to_date', |
| 165 | 165 | 'name' => 'to_date', |
| 166 | 166 | 'data' => array( |
| 167 | 167 | 'dateFormat' => 'yy-mm-dd' |
| 168 | 168 | ), |
| 169 | - 'placeholder' => __( 'To date', 'invoicing' ) ) |
|
| 169 | + 'placeholder' => __('To date', 'invoicing') ) |
|
| 170 | 170 | ); ?> |
| 171 | 171 | <span id="wpinv-status-wrap"> |
| 172 | - <?php echo wpinv_html_select( array( |
|
| 172 | + <?php echo wpinv_html_select(array( |
|
| 173 | 173 | 'options' => $statuses, |
| 174 | 174 | 'name' => 'status', |
| 175 | 175 | 'id' => 'wpi_export_status', |
| 176 | 176 | 'show_option_all' => false, |
| 177 | 177 | 'show_option_none' => false, |
| 178 | 178 | 'class' => 'wpi_select2', |
| 179 | - ) ); ?> |
|
| 180 | - <?php wp_nonce_field( 'wpi_ajax_export', 'wpi_ajax_export' ); ?> |
|
| 179 | + )); ?> |
|
| 180 | + <?php wp_nonce_field('wpi_ajax_export', 'wpi_ajax_export'); ?> |
|
| 181 | 181 | </span> |
| 182 | 182 | <span id="wpinv-submit-wrap"> |
| 183 | 183 | <input type="hidden" value="invoices" name="export" /> |
| 184 | - <input type="submit" value="<?php _e( 'Generate CSV', 'invoicing' ); ?>" class="button-primary" /> |
|
| 184 | + <input type="submit" value="<?php _e('Generate CSV', 'invoicing'); ?>" class="button-primary" /> |
|
| 185 | 185 | </span> |
| 186 | 186 | </form> |
| 187 | 187 | </div> |
| 188 | 188 | </div> |
| 189 | 189 | |
| 190 | 190 | <div class="postbox wpi-export-discount-uses"> |
| 191 | - <h2 class="hndle ui-sortabled-handle"><span><?php _e( 'Discount Use','invoicing' ); ?></span></h2> |
|
| 191 | + <h2 class="hndle ui-sortabled-handle"><span><?php _e('Discount Use', 'invoicing'); ?></span></h2> |
|
| 192 | 192 | <div class="inside"> |
| 193 | - <p><?php _e( 'Download a CSV of discount uses.', 'invoicing' ); ?></p> |
|
| 194 | - <a class="button-primary" href="<?php echo esc_url( wp_nonce_url( admin_url( 'admin-ajax.php?action=wpinv_ajax_discount_use_export' ), 'wpi_discount_ajax_export', 'wpi_discount_ajax_export' ) ); ?>"><?php _e( 'Generate CSV', 'invoicing' ); ?></a> |
|
| 193 | + <p><?php _e('Download a CSV of discount uses.', 'invoicing'); ?></p> |
|
| 194 | + <a class="button-primary" href="<?php echo esc_url(wp_nonce_url(admin_url('admin-ajax.php?action=wpinv_ajax_discount_use_export'), 'wpi_discount_ajax_export', 'wpi_discount_ajax_export')); ?>"><?php _e('Generate CSV', 'invoicing'); ?></a> |
|
| 195 | 195 | </div> |
| 196 | 196 | </div> |
| 197 | 197 | |
| 198 | - <?php do_action( 'wpinv_reports_tab_export_content_bottom' ); ?> |
|
| 198 | + <?php do_action('wpinv_reports_tab_export_content_bottom'); ?> |
|
| 199 | 199 | </div> |
| 200 | 200 | </div> |
| 201 | 201 | </div> |
| 202 | 202 | <?php |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - public function export_location( $relative = false ) { |
|
| 205 | + public function export_location($relative = false) { |
|
| 206 | 206 | $upload_dir = wp_upload_dir(); |
| 207 | - $export_location = $relative ? trailingslashit( $upload_dir['baseurl'] ) . 'cache' : trailingslashit( $upload_dir['basedir'] ) . 'cache'; |
|
| 208 | - $export_location = apply_filters( 'wpinv_export_location', $export_location, $relative ); |
|
| 207 | + $export_location = $relative ? trailingslashit($upload_dir['baseurl']) . 'cache' : trailingslashit($upload_dir['basedir']) . 'cache'; |
|
| 208 | + $export_location = apply_filters('wpinv_export_location', $export_location, $relative); |
|
| 209 | 209 | |
| 210 | - return trailingslashit( $export_location ); |
|
| 210 | + return trailingslashit($export_location); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | public function check_export_location() { |
| 214 | 214 | try { |
| 215 | - if ( empty( $this->wp_filesystem ) ) { |
|
| 216 | - return __( 'Filesystem ERROR: Could not access filesystem.', 'invoicing' ); |
|
| 215 | + if (empty($this->wp_filesystem)) { |
|
| 216 | + return __('Filesystem ERROR: Could not access filesystem.', 'invoicing'); |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | - if ( is_wp_error( $this->wp_filesystem ) ) { |
|
| 220 | - return __( 'Filesystem ERROR: ' . $this->wp_filesystem->get_error_message(), 'invoicing' ); |
|
| 219 | + if (is_wp_error($this->wp_filesystem)) { |
|
| 220 | + return __('Filesystem ERROR: ' . $this->wp_filesystem->get_error_message(), 'invoicing'); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - $is_dir = $this->wp_filesystem->is_dir( $this->export_dir ); |
|
| 224 | - $is_writeable = $is_dir && is_writeable( $this->export_dir ); |
|
| 223 | + $is_dir = $this->wp_filesystem->is_dir($this->export_dir); |
|
| 224 | + $is_writeable = $is_dir && is_writeable($this->export_dir); |
|
| 225 | 225 | |
| 226 | - if ( $is_dir && $is_writeable ) { |
|
| 226 | + if ($is_dir && $is_writeable) { |
|
| 227 | 227 | return true; |
| 228 | - } else if ( $is_dir && !$is_writeable ) { |
|
| 229 | - if ( !$this->wp_filesystem->chmod( $this->export_dir, FS_CHMOD_DIR ) ) { |
|
| 230 | - return wp_sprintf( __( 'Filesystem ERROR: Export location %s is not writable, check your file permissions.', 'invoicing' ), $this->export_dir ); |
|
| 228 | + } else if ($is_dir && !$is_writeable) { |
|
| 229 | + if (!$this->wp_filesystem->chmod($this->export_dir, FS_CHMOD_DIR)) { |
|
| 230 | + return wp_sprintf(__('Filesystem ERROR: Export location %s is not writable, check your file permissions.', 'invoicing'), $this->export_dir); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | return true; |
| 234 | 234 | } else { |
| 235 | - if ( !$this->wp_filesystem->mkdir( $this->export_dir, FS_CHMOD_DIR ) ) { |
|
| 236 | - return wp_sprintf( __( 'Filesystem ERROR: Could not create directory %s. This is usually due to inconsistent file permissions.', 'invoicing' ), $this->export_dir ); |
|
| 235 | + if (!$this->wp_filesystem->mkdir($this->export_dir, FS_CHMOD_DIR)) { |
|
| 236 | + return wp_sprintf(__('Filesystem ERROR: Could not create directory %s. This is usually due to inconsistent file permissions.', 'invoicing'), $this->export_dir); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | return true; |
| 240 | 240 | } |
| 241 | - } catch ( Exception $e ) { |
|
| 241 | + } catch (Exception $e) { |
|
| 242 | 242 | return $e->getMessage(); |
| 243 | 243 | } |
| 244 | 244 | } |
@@ -246,59 +246,59 @@ discard block |
||
| 246 | 246 | public function ajax_export() { |
| 247 | 247 | $response = array(); |
| 248 | 248 | $response['success'] = false; |
| 249 | - $response['msg'] = __( 'Invalid export request found.', 'invoicing' ); |
|
| 249 | + $response['msg'] = __('Invalid export request found.', 'invoicing'); |
|
| 250 | 250 | |
| 251 | - if ( empty( $_POST['data'] ) || ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 252 | - wp_send_json( $response ); |
|
| 251 | + if (empty($_POST['data']) || !wpinv_current_user_can_manage_invoicing()) { |
|
| 252 | + wp_send_json($response); |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - parse_str( $_POST['data'], $data ); |
|
| 255 | + parse_str($_POST['data'], $data); |
|
| 256 | 256 | |
| 257 | - $data['step'] = !empty( $_POST['step'] ) ? absint( $_POST['step'] ) : 1; |
|
| 257 | + $data['step'] = !empty($_POST['step']) ? absint($_POST['step']) : 1; |
|
| 258 | 258 | |
| 259 | - $_REQUEST = (array)$data; |
|
| 260 | - if ( !( !empty( $_REQUEST['wpi_ajax_export'] ) && wp_verify_nonce( $_REQUEST['wpi_ajax_export'], 'wpi_ajax_export' ) ) ) { |
|
| 261 | - $response['msg'] = __( 'Security check failed.', 'invoicing' ); |
|
| 262 | - wp_send_json( $response ); |
|
| 259 | + $_REQUEST = (array) $data; |
|
| 260 | + if (!(!empty($_REQUEST['wpi_ajax_export']) && wp_verify_nonce($_REQUEST['wpi_ajax_export'], 'wpi_ajax_export'))) { |
|
| 261 | + $response['msg'] = __('Security check failed.', 'invoicing'); |
|
| 262 | + wp_send_json($response); |
|
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - if ( ( $error = $this->check_export_location( true ) ) !== true ) { |
|
| 266 | - $response['msg'] = __( 'Filesystem ERROR: ' . $error, 'invoicing' ); |
|
| 267 | - wp_send_json( $response ); |
|
| 265 | + if (($error = $this->check_export_location(true)) !== true) { |
|
| 266 | + $response['msg'] = __('Filesystem ERROR: ' . $error, 'invoicing'); |
|
| 267 | + wp_send_json($response); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - $this->set_export_params( $_REQUEST ); |
|
| 270 | + $this->set_export_params($_REQUEST); |
|
| 271 | 271 | |
| 272 | 272 | $return = $this->process_export_step(); |
| 273 | 273 | $done = $this->get_export_status(); |
| 274 | 274 | |
| 275 | - if ( $return ) { |
|
| 275 | + if ($return) { |
|
| 276 | 276 | $this->step += 1; |
| 277 | 277 | |
| 278 | 278 | $response['success'] = true; |
| 279 | 279 | $response['msg'] = ''; |
| 280 | 280 | |
| 281 | - if ( $done >= 100 ) { |
|
| 281 | + if ($done >= 100) { |
|
| 282 | 282 | $this->step = 'done'; |
| 283 | - $new_filename = 'wpi-' . $this->export . '-' . date( 'y-m-d-H-i' ) . '.' . $this->filetype; |
|
| 283 | + $new_filename = 'wpi-' . $this->export . '-' . date('y-m-d-H-i') . '.' . $this->filetype; |
|
| 284 | 284 | $new_file = $this->export_dir . $new_filename; |
| 285 | 285 | |
| 286 | - if ( file_exists( $this->file ) ) { |
|
| 287 | - $this->wp_filesystem->move( $this->file, $new_file, true ); |
|
| 286 | + if (file_exists($this->file)) { |
|
| 287 | + $this->wp_filesystem->move($this->file, $new_file, true); |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | - if ( file_exists( $new_file ) ) { |
|
| 291 | - $response['data']['file'] = array( 'u' => $this->export_url . $new_filename, 's' => size_format( filesize( $new_file ), 2 ) ); |
|
| 290 | + if (file_exists($new_file)) { |
|
| 291 | + $response['data']['file'] = array('u' => $this->export_url . $new_filename, 's' => size_format(filesize($new_file), 2)); |
|
| 292 | 292 | } |
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | $response['data']['step'] = $this->step; |
| 296 | 296 | $response['data']['done'] = $done; |
| 297 | 297 | } else { |
| 298 | - $response['msg'] = __( 'No data found for export.', 'invoicing' ); |
|
| 298 | + $response['msg'] = __('No data found for export.', 'invoicing'); |
|
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - wp_send_json( $response ); |
|
| 301 | + wp_send_json($response); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | /** |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | */ |
| 307 | 307 | public function discount_use_export() { |
| 308 | 308 | |
| 309 | - if ( ! wp_verify_nonce( $_GET['wpi_discount_ajax_export'], 'wpi_discount_ajax_export' ) || ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 309 | + if (!wp_verify_nonce($_GET['wpi_discount_ajax_export'], 'wpi_discount_ajax_export') || !wpinv_current_user_can_manage_invoicing()) { |
|
| 310 | 310 | wp_die( -1, 403 ); |
| 311 | 311 | } |
| 312 | 312 | |
@@ -316,115 +316,115 @@ discard block |
||
| 316 | 316 | 'posts_per_page' => -1, |
| 317 | 317 | ); |
| 318 | 318 | |
| 319 | - $discounts = get_posts( $args ); |
|
| 319 | + $discounts = get_posts($args); |
|
| 320 | 320 | |
| 321 | - if ( empty( $discounts ) ) { |
|
| 322 | - die ( __( 'You have not set up any discounts', 'invoicing' ) ); |
|
| 321 | + if (empty($discounts)) { |
|
| 322 | + die (__('You have not set up any discounts', 'invoicing')); |
|
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - $output = fopen( 'php://output', 'w' ) or die( 'Unsupported server' ); |
|
| 325 | + $output = fopen('php://output', 'w') or die('Unsupported server'); |
|
| 326 | 326 | |
| 327 | 327 | // Let the browser know what content we're streaming and how it should save the content. |
| 328 | 328 | $name = time(); |
| 329 | - header( "Content-Type:application/csv" ); |
|
| 330 | - header( "Content-Disposition:attachment;filename=noptin-subscribers-$name.csv" ); |
|
| 329 | + header("Content-Type:application/csv"); |
|
| 330 | + header("Content-Disposition:attachment;filename=noptin-subscribers-$name.csv"); |
|
| 331 | 331 | |
| 332 | 332 | // Output the csv column headers. |
| 333 | 333 | fputcsv( |
| 334 | 334 | $output, |
| 335 | 335 | array( |
| 336 | - __( 'Discount Id', 'invoicing' ), |
|
| 337 | - __( 'Discount Code', 'invoicing' ), |
|
| 338 | - __( 'Discount Type', 'invoicing' ), |
|
| 339 | - __( 'Discount Amount', 'invoicing' ), |
|
| 340 | - __( 'Uses', 'invoicing' ), |
|
| 336 | + __('Discount Id', 'invoicing'), |
|
| 337 | + __('Discount Code', 'invoicing'), |
|
| 338 | + __('Discount Type', 'invoicing'), |
|
| 339 | + __('Discount Amount', 'invoicing'), |
|
| 340 | + __('Uses', 'invoicing'), |
|
| 341 | 341 | ) |
| 342 | 342 | ); |
| 343 | 343 | |
| 344 | - foreach ( $discounts as $discount ) { |
|
| 344 | + foreach ($discounts as $discount) { |
|
| 345 | 345 | |
| 346 | 346 | $discount = (int) $discount; |
| 347 | 347 | $row = array( |
| 348 | 348 | $discount, |
| 349 | - get_post_meta( $discount, '_wpi_discount_code', true ), |
|
| 350 | - get_post_meta( $discount, '_wpi_discount_type', true ), |
|
| 351 | - get_post_meta( $discount, '_wpi_discount_amount', true ), |
|
| 352 | - (int) get_post_meta( $discount, '_wpi_discount_uses', true ) |
|
| 349 | + get_post_meta($discount, '_wpi_discount_code', true), |
|
| 350 | + get_post_meta($discount, '_wpi_discount_type', true), |
|
| 351 | + get_post_meta($discount, '_wpi_discount_amount', true), |
|
| 352 | + (int) get_post_meta($discount, '_wpi_discount_uses', true) |
|
| 353 | 353 | ); |
| 354 | - fputcsv( $output, $row ); |
|
| 354 | + fputcsv($output, $row); |
|
| 355 | 355 | } |
| 356 | 356 | |
| 357 | - fclose( $output ); |
|
| 357 | + fclose($output); |
|
| 358 | 358 | exit; |
| 359 | 359 | |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | - public function set_export_params( $request ) { |
|
| 362 | + public function set_export_params($request) { |
|
| 363 | 363 | $this->empty = false; |
| 364 | - $this->step = !empty( $request['step'] ) ? absint( $request['step'] ) : 1; |
|
| 365 | - $this->export = !empty( $request['export'] ) ? $request['export'] : $this->export; |
|
| 364 | + $this->step = !empty($request['step']) ? absint($request['step']) : 1; |
|
| 365 | + $this->export = !empty($request['export']) ? $request['export'] : $this->export; |
|
| 366 | 366 | $this->filename = 'wpi-' . $this->export . '-' . $request['wpi_ajax_export'] . '.' . $this->filetype; |
| 367 | 367 | $this->file = $this->export_dir . $this->filename; |
| 368 | 368 | |
| 369 | - do_action( 'wpinv_export_set_params_' . $this->export, $request ); |
|
| 369 | + do_action('wpinv_export_set_params_' . $this->export, $request); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | public function get_columns() { |
| 373 | 373 | $columns = array(); |
| 374 | 374 | |
| 375 | - return apply_filters( 'wpinv_export_get_columns_' . $this->export, $columns ); |
|
| 375 | + return apply_filters('wpinv_export_get_columns_' . $this->export, $columns); |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | protected function get_export_file() { |
| 379 | 379 | $file = ''; |
| 380 | 380 | |
| 381 | - if ( $this->wp_filesystem->exists( $this->file ) ) { |
|
| 382 | - $file = $this->wp_filesystem->get_contents( $this->file ); |
|
| 381 | + if ($this->wp_filesystem->exists($this->file)) { |
|
| 382 | + $file = $this->wp_filesystem->get_contents($this->file); |
|
| 383 | 383 | } else { |
| 384 | - $this->wp_filesystem->put_contents( $this->file, '' ); |
|
| 384 | + $this->wp_filesystem->put_contents($this->file, ''); |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | return $file; |
| 388 | 388 | } |
| 389 | 389 | |
| 390 | - protected function attach_export_data( $data = '' ) { |
|
| 391 | - $filedata = $this->get_export_file(); |
|
| 392 | - $filedata .= $data; |
|
| 390 | + protected function attach_export_data($data = '') { |
|
| 391 | + $filedata = $this->get_export_file(); |
|
| 392 | + $filedata .= $data; |
|
| 393 | 393 | |
| 394 | - $this->wp_filesystem->put_contents( $this->file, $filedata ); |
|
| 394 | + $this->wp_filesystem->put_contents($this->file, $filedata); |
|
| 395 | 395 | |
| 396 | - $rows = file( $this->file, FILE_SKIP_EMPTY_LINES ); |
|
| 396 | + $rows = file($this->file, FILE_SKIP_EMPTY_LINES); |
|
| 397 | 397 | $columns = $this->get_columns(); |
| 398 | - $columns = empty( $columns ) ? 0 : 1; |
|
| 398 | + $columns = empty($columns) ? 0 : 1; |
|
| 399 | 399 | |
| 400 | - $this->empty = count( $rows ) == $columns ? true : false; |
|
| 400 | + $this->empty = count($rows) == $columns ? true : false; |
|
| 401 | 401 | } |
| 402 | 402 | |
| 403 | 403 | public function print_columns() { |
| 404 | 404 | $column_data = ''; |
| 405 | 405 | $columns = $this->get_columns(); |
| 406 | 406 | $i = 1; |
| 407 | - foreach( $columns as $key => $column ) { |
|
| 408 | - $column_data .= '"' . addslashes( $column ) . '"'; |
|
| 409 | - $column_data .= $i == count( $columns ) ? '' : ','; |
|
| 407 | + foreach ($columns as $key => $column) { |
|
| 408 | + $column_data .= '"' . addslashes($column) . '"'; |
|
| 409 | + $column_data .= $i == count($columns) ? '' : ','; |
|
| 410 | 410 | $i++; |
| 411 | 411 | } |
| 412 | 412 | $column_data .= "\r\n"; |
| 413 | 413 | |
| 414 | - $this->attach_export_data( $column_data ); |
|
| 414 | + $this->attach_export_data($column_data); |
|
| 415 | 415 | |
| 416 | 416 | return $column_data; |
| 417 | 417 | } |
| 418 | 418 | |
| 419 | 419 | public function process_export_step() { |
| 420 | - if ( $this->step < 2 ) { |
|
| 421 | - /** @scrutinizer ignore-unhandled */ @unlink( $this->file ); |
|
| 420 | + if ($this->step < 2) { |
|
| 421 | + /** @scrutinizer ignore-unhandled */ @unlink($this->file); |
|
| 422 | 422 | $this->print_columns(); |
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | $return = $this->print_rows(); |
| 426 | 426 | |
| 427 | - if ( $return ) { |
|
| 427 | + if ($return) { |
|
| 428 | 428 | return true; |
| 429 | 429 | } else { |
| 430 | 430 | return false; |
@@ -433,14 +433,14 @@ discard block |
||
| 433 | 433 | |
| 434 | 434 | public function get_export_status() { |
| 435 | 435 | $status = 100; |
| 436 | - return apply_filters( 'wpinv_get_export_status_' . $this->export, $status ); |
|
| 436 | + return apply_filters('wpinv_get_export_status_' . $this->export, $status); |
|
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | public function get_export_data() { |
| 440 | 440 | $data = array(); |
| 441 | 441 | |
| 442 | - $data = apply_filters( 'wpinv_export_get_data', $data ); |
|
| 443 | - $data = apply_filters( 'wpinv_export_get_data_' . $this->export, $data ); |
|
| 442 | + $data = apply_filters('wpinv_export_get_data', $data); |
|
| 443 | + $data = apply_filters('wpinv_export_get_data_' . $this->export, $data); |
|
| 444 | 444 | |
| 445 | 445 | return $data; |
| 446 | 446 | } |
@@ -450,20 +450,20 @@ discard block |
||
| 450 | 450 | $data = $this->get_export_data(); |
| 451 | 451 | $columns = $this->get_columns(); |
| 452 | 452 | |
| 453 | - if ( $data ) { |
|
| 454 | - foreach ( $data as $row ) { |
|
| 453 | + if ($data) { |
|
| 454 | + foreach ($data as $row) { |
|
| 455 | 455 | $i = 1; |
| 456 | - foreach ( $row as $key => $column ) { |
|
| 457 | - if ( array_key_exists( $key, $columns ) ) { |
|
| 458 | - $row_data .= '"' . addslashes( preg_replace( "/\"/","'", $column ) ) . '"'; |
|
| 459 | - $row_data .= $i == count( $columns ) ? '' : ','; |
|
| 456 | + foreach ($row as $key => $column) { |
|
| 457 | + if (array_key_exists($key, $columns)) { |
|
| 458 | + $row_data .= '"' . addslashes(preg_replace("/\"/", "'", $column)) . '"'; |
|
| 459 | + $row_data .= $i == count($columns) ? '' : ','; |
|
| 460 | 460 | $i++; |
| 461 | 461 | } |
| 462 | 462 | } |
| 463 | 463 | $row_data .= "\r\n"; |
| 464 | 464 | } |
| 465 | 465 | |
| 466 | - $this->attach_export_data( $row_data ); |
|
| 466 | + $this->attach_export_data($row_data); |
|
| 467 | 467 | |
| 468 | 468 | return $row_data; |
| 469 | 469 | } |
@@ -472,48 +472,48 @@ discard block |
||
| 472 | 472 | } |
| 473 | 473 | |
| 474 | 474 | // Export Invoices. |
| 475 | - public function set_invoices_export( $request ) { |
|
| 476 | - $this->from_date = isset( $request['from_date'] ) ? sanitize_text_field( $request['from_date'] ) : ''; |
|
| 477 | - $this->to_date = isset( $request['to_date'] ) ? sanitize_text_field( $request['to_date'] ) : ''; |
|
| 478 | - $this->status = isset( $request['status'] ) ? sanitize_text_field( $request['status'] ) : 'publish'; |
|
| 475 | + public function set_invoices_export($request) { |
|
| 476 | + $this->from_date = isset($request['from_date']) ? sanitize_text_field($request['from_date']) : ''; |
|
| 477 | + $this->to_date = isset($request['to_date']) ? sanitize_text_field($request['to_date']) : ''; |
|
| 478 | + $this->status = isset($request['status']) ? sanitize_text_field($request['status']) : 'publish'; |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | - public function get_invoices_columns( $columns = array() ) { |
|
| 481 | + public function get_invoices_columns($columns = array()) { |
|
| 482 | 482 | $columns = array( |
| 483 | - 'id' => __( 'ID', 'invoicing' ), |
|
| 484 | - 'number' => __( 'Number', 'invoicing' ), |
|
| 485 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 486 | - 'due_date' => __( 'Due Date', 'invoicing' ), |
|
| 487 | - 'completed_date'=> __( 'Payment Done Date', 'invoicing' ), |
|
| 488 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 489 | - 'currency' => __( 'Currency', 'invoicing' ), |
|
| 490 | - 'items' => __( 'Items', 'invoicing' ), |
|
| 491 | - 'status_nicename' => __( 'Status Nicename', 'invoicing' ), |
|
| 492 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 493 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
| 494 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
| 495 | - 'user_id' => __( 'User ID', 'invoicing' ), |
|
| 496 | - 'email' => __( 'Email', 'invoicing' ), |
|
| 497 | - 'first_name' => __( 'First Name', 'invoicing' ), |
|
| 498 | - 'last_name' => __( 'Last Name', 'invoicing' ), |
|
| 499 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 500 | - 'city' => __( 'City', 'invoicing' ), |
|
| 501 | - 'state' => __( 'State', 'invoicing' ), |
|
| 502 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 503 | - 'zip' => __( 'Zipcode', 'invoicing' ), |
|
| 504 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 505 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 506 | - 'vat_number' => __( 'Vat Number', 'invoicing' ), |
|
| 507 | - 'ip' => __( 'IP', 'invoicing' ), |
|
| 508 | - 'gateway' => __( 'Gateway', 'invoicing' ), |
|
| 509 | - 'gateway_nicename' => __( 'Gateway Nicename', 'invoicing' ), |
|
| 510 | - 'transaction_id'=> __( 'Transaction ID', 'invoicing' ), |
|
| 483 | + 'id' => __('ID', 'invoicing'), |
|
| 484 | + 'number' => __('Number', 'invoicing'), |
|
| 485 | + 'date' => __('Date', 'invoicing'), |
|
| 486 | + 'due_date' => __('Due Date', 'invoicing'), |
|
| 487 | + 'completed_date'=> __('Payment Done Date', 'invoicing'), |
|
| 488 | + 'amount' => __('Amount', 'invoicing'), |
|
| 489 | + 'currency' => __('Currency', 'invoicing'), |
|
| 490 | + 'items' => __('Items', 'invoicing'), |
|
| 491 | + 'status_nicename' => __('Status Nicename', 'invoicing'), |
|
| 492 | + 'status' => __('Status', 'invoicing'), |
|
| 493 | + 'tax' => __('Tax', 'invoicing'), |
|
| 494 | + 'discount' => __('Discount', 'invoicing'), |
|
| 495 | + 'user_id' => __('User ID', 'invoicing'), |
|
| 496 | + 'email' => __('Email', 'invoicing'), |
|
| 497 | + 'first_name' => __('First Name', 'invoicing'), |
|
| 498 | + 'last_name' => __('Last Name', 'invoicing'), |
|
| 499 | + 'address' => __('Address', 'invoicing'), |
|
| 500 | + 'city' => __('City', 'invoicing'), |
|
| 501 | + 'state' => __('State', 'invoicing'), |
|
| 502 | + 'country' => __('Country', 'invoicing'), |
|
| 503 | + 'zip' => __('Zipcode', 'invoicing'), |
|
| 504 | + 'phone' => __('Phone', 'invoicing'), |
|
| 505 | + 'company' => __('Company', 'invoicing'), |
|
| 506 | + 'vat_number' => __('Vat Number', 'invoicing'), |
|
| 507 | + 'ip' => __('IP', 'invoicing'), |
|
| 508 | + 'gateway' => __('Gateway', 'invoicing'), |
|
| 509 | + 'gateway_nicename' => __('Gateway Nicename', 'invoicing'), |
|
| 510 | + 'transaction_id'=> __('Transaction ID', 'invoicing'), |
|
| 511 | 511 | ); |
| 512 | 512 | |
| 513 | 513 | return $columns; |
| 514 | 514 | } |
| 515 | 515 | |
| 516 | - public function get_invoices_data( $response = array() ) { |
|
| 516 | + public function get_invoices_data($response = array()) { |
|
| 517 | 517 | $args = array( |
| 518 | 518 | 'limit' => $this->per_page, |
| 519 | 519 | 'page' => $this->step, |
@@ -521,42 +521,42 @@ discard block |
||
| 521 | 521 | 'orderby' => 'date', |
| 522 | 522 | ); |
| 523 | 523 | |
| 524 | - if ( $this->status != 'any' ) { |
|
| 524 | + if ($this->status != 'any') { |
|
| 525 | 525 | $args['status'] = $this->status; |
| 526 | 526 | } else { |
| 527 | - $args['status'] = array_keys( wpinv_get_invoice_statuses( true ) ); |
|
| 527 | + $args['status'] = array_keys(wpinv_get_invoice_statuses(true)); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | - if ( !empty( $this->from_date ) || !empty( $this->to_date ) ) { |
|
| 530 | + if (!empty($this->from_date) || !empty($this->to_date)) { |
|
| 531 | 531 | $args['date_query'] = array( |
| 532 | 532 | array( |
| 533 | - 'after' => date( 'Y-n-d 00:00:00', strtotime( $this->from_date ) ), |
|
| 534 | - 'before' => date( 'Y-n-d 23:59:59', strtotime( $this->to_date ) ), |
|
| 533 | + 'after' => date('Y-n-d 00:00:00', strtotime($this->from_date)), |
|
| 534 | + 'before' => date('Y-n-d 23:59:59', strtotime($this->to_date)), |
|
| 535 | 535 | 'inclusive' => true |
| 536 | 536 | ) |
| 537 | 537 | ); |
| 538 | 538 | } |
| 539 | 539 | |
| 540 | - $invoices = wpinv_get_invoices( $args ); |
|
| 540 | + $invoices = wpinv_get_invoices($args); |
|
| 541 | 541 | |
| 542 | 542 | $data = array(); |
| 543 | 543 | |
| 544 | - if ( !empty( $invoices ) ) { |
|
| 545 | - foreach ( $invoices as $invoice ) { |
|
| 544 | + if (!empty($invoices)) { |
|
| 545 | + foreach ($invoices as $invoice) { |
|
| 546 | 546 | $items = $this->get_invoice_items($invoice); |
| 547 | 547 | $row = array( |
| 548 | 548 | 'id' => $invoice->ID, |
| 549 | 549 | 'number' => $invoice->get_number(), |
| 550 | - 'date' => $invoice->get_invoice_date( false ), |
|
| 551 | - 'due_date' => $invoice->get_due_date( false ), |
|
| 550 | + 'date' => $invoice->get_invoice_date(false), |
|
| 551 | + 'due_date' => $invoice->get_due_date(false), |
|
| 552 | 552 | 'completed_date'=> $invoice->get_completed_date(), |
| 553 | - 'amount' => wpinv_round_amount( $invoice->get_total() ), |
|
| 553 | + 'amount' => wpinv_round_amount($invoice->get_total()), |
|
| 554 | 554 | 'currency' => $invoice->get_currency(), |
| 555 | 555 | 'items' => $items, |
| 556 | - 'status_nicename' => $invoice->get_status( true ), |
|
| 556 | + 'status_nicename' => $invoice->get_status(true), |
|
| 557 | 557 | 'status' => $invoice->get_status(), |
| 558 | - 'tax' => $invoice->get_tax() > 0 ? wpinv_round_amount( $invoice->get_tax() ) : '', |
|
| 559 | - 'discount' => $invoice->get_discount() > 0 ? wpinv_round_amount( $invoice->get_discount() ) : '', |
|
| 558 | + 'tax' => $invoice->get_tax() > 0 ? wpinv_round_amount($invoice->get_tax()) : '', |
|
| 559 | + 'discount' => $invoice->get_discount() > 0 ? wpinv_round_amount($invoice->get_discount()) : '', |
|
| 560 | 560 | 'user_id' => $invoice->get_user_id(), |
| 561 | 561 | 'email' => $invoice->get_email(), |
| 562 | 562 | 'first_name' => $invoice->get_first_name(), |
@@ -575,7 +575,7 @@ discard block |
||
| 575 | 575 | 'transaction_id'=> $invoice->gateway ? $invoice->get_transaction_id() : '', |
| 576 | 576 | ); |
| 577 | 577 | |
| 578 | - $data[] = apply_filters( 'wpinv_export_invoice_row', $row, $invoice ); |
|
| 578 | + $data[] = apply_filters('wpinv_export_invoice_row', $row, $invoice); |
|
| 579 | 579 | } |
| 580 | 580 | |
| 581 | 581 | return $data; |
@@ -591,44 +591,44 @@ discard block |
||
| 591 | 591 | 'return' => 'ids', |
| 592 | 592 | ); |
| 593 | 593 | |
| 594 | - if ( $this->status != 'any' ) { |
|
| 594 | + if ($this->status != 'any') { |
|
| 595 | 595 | $args['status'] = $this->status; |
| 596 | 596 | } else { |
| 597 | - $args['status'] = array_keys( wpinv_get_invoice_statuses( true ) ); |
|
| 597 | + $args['status'] = array_keys(wpinv_get_invoice_statuses(true)); |
|
| 598 | 598 | } |
| 599 | 599 | |
| 600 | - if ( !empty( $this->from_date ) || !empty( $this->to_date ) ) { |
|
| 600 | + if (!empty($this->from_date) || !empty($this->to_date)) { |
|
| 601 | 601 | $args['date_query'] = array( |
| 602 | 602 | array( |
| 603 | - 'after' => date( 'Y-n-d 00:00:00', strtotime( $this->from_date ) ), |
|
| 604 | - 'before' => date( 'Y-n-d 23:59:59', strtotime( $this->to_date ) ), |
|
| 603 | + 'after' => date('Y-n-d 00:00:00', strtotime($this->from_date)), |
|
| 604 | + 'before' => date('Y-n-d 23:59:59', strtotime($this->to_date)), |
|
| 605 | 605 | 'inclusive' => true |
| 606 | 606 | ) |
| 607 | 607 | ); |
| 608 | 608 | } |
| 609 | 609 | |
| 610 | - $invoices = wpinv_get_invoices( $args ); |
|
| 611 | - $total = !empty( $invoices ) ? count( $invoices ) : 0; |
|
| 610 | + $invoices = wpinv_get_invoices($args); |
|
| 611 | + $total = !empty($invoices) ? count($invoices) : 0; |
|
| 612 | 612 | $status = 100; |
| 613 | 613 | |
| 614 | - if ( $total > 0 ) { |
|
| 615 | - $status = ( ( $this->per_page * $this->step ) / $total ) * 100; |
|
| 614 | + if ($total > 0) { |
|
| 615 | + $status = (($this->per_page * $this->step) / $total) * 100; |
|
| 616 | 616 | } |
| 617 | 617 | |
| 618 | - if ( $status > 100 ) { |
|
| 618 | + if ($status > 100) { |
|
| 619 | 619 | $status = 100; |
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | return $status; |
| 623 | 623 | } |
| 624 | 624 | |
| 625 | - public function get_invoice_items($invoice){ |
|
| 626 | - if(!$invoice){ |
|
| 625 | + public function get_invoice_items($invoice) { |
|
| 626 | + if (!$invoice) { |
|
| 627 | 627 | return ''; |
| 628 | 628 | } |
| 629 | 629 | |
| 630 | 630 | $cart_details = $invoice->get_cart_details(); |
| 631 | - if(!empty($cart_details)){ |
|
| 631 | + if (!empty($cart_details)) { |
|
| 632 | 632 | $cart_details = maybe_serialize($cart_details); |
| 633 | 633 | } else { |
| 634 | 634 | $cart_details = ''; |
@@ -640,14 +640,14 @@ discard block |
||
| 640 | 640 | /** |
| 641 | 641 | * Returns the periods filter. |
| 642 | 642 | */ |
| 643 | - public function period_filter( $args = array() ) { |
|
| 643 | + public function period_filter($args = array()) { |
|
| 644 | 644 | |
| 645 | 645 | ob_start(); |
| 646 | 646 | |
| 647 | 647 | echo '<form id="wpinv-graphs-filter" method="get" style="margin-bottom: 10px;" class="tablenav">'; |
| 648 | 648 | echo '<input type="hidden" name="page" value="wpinv-reports">'; |
| 649 | 649 | |
| 650 | - foreach ( $args as $key => $val ) { |
|
| 650 | + foreach ($args as $key => $val) { |
|
| 651 | 651 | $key = esc_attr($key); |
| 652 | 652 | $val = esc_attr($val); |
| 653 | 653 | echo "<input type='hidden' name='$key' value='$val'>"; |
@@ -656,21 +656,21 @@ discard block |
||
| 656 | 656 | echo '<select id="wpinv-graphs-date-options" name="range" style="min-width: 200px;" onChange="this.form.submit()">'; |
| 657 | 657 | |
| 658 | 658 | $ranges = array( |
| 659 | - 'today' => __( 'Today', 'invoicing' ), |
|
| 660 | - 'yesterday' => __( 'Yesterday', 'invoicing' ), |
|
| 661 | - 'this_week' => __( 'This Week', 'invoicing' ), |
|
| 662 | - 'last_week' => __( 'Last Week', 'invoicing' ), |
|
| 663 | - '7_days_ago' => __( 'Last 7 Days', 'invoicing' ), |
|
| 664 | - '30_days_ago' => __( 'Last 30 Days', 'invoicing' ), |
|
| 665 | - 'this_month' => __( 'This Month', 'invoicing' ), |
|
| 666 | - 'this_year' => __( 'This Year', 'invoicing' ), |
|
| 667 | - 'last_year' => __( 'Last Year', 'invoicing' ), |
|
| 659 | + 'today' => __('Today', 'invoicing'), |
|
| 660 | + 'yesterday' => __('Yesterday', 'invoicing'), |
|
| 661 | + 'this_week' => __('This Week', 'invoicing'), |
|
| 662 | + 'last_week' => __('Last Week', 'invoicing'), |
|
| 663 | + '7_days_ago' => __('Last 7 Days', 'invoicing'), |
|
| 664 | + '30_days_ago' => __('Last 30 Days', 'invoicing'), |
|
| 665 | + 'this_month' => __('This Month', 'invoicing'), |
|
| 666 | + 'this_year' => __('This Year', 'invoicing'), |
|
| 667 | + 'last_year' => __('Last Year', 'invoicing'), |
|
| 668 | 668 | ); |
| 669 | 669 | |
| 670 | - $range = isset( $_GET['range'] ) && isset( $ranges[ $_GET['range'] ] ) ? $_GET['range'] : '7_days_ago'; |
|
| 670 | + $range = isset($_GET['range']) && isset($ranges[$_GET['range']]) ? $_GET['range'] : '7_days_ago'; |
|
| 671 | 671 | |
| 672 | - foreach ( $ranges as $val => $label ) { |
|
| 673 | - $selected = selected( $range, $val, false ); |
|
| 672 | + foreach ($ranges as $val => $label) { |
|
| 673 | + $selected = selected($range, $val, false); |
|
| 674 | 674 | echo "<option value='$val' $selected>$label</option>"; |
| 675 | 675 | } |
| 676 | 676 | |
@@ -682,28 +682,28 @@ discard block |
||
| 682 | 682 | /** |
| 683 | 683 | * Returns the the current date range. |
| 684 | 684 | */ |
| 685 | - public function get_sql_clauses( $range ) { |
|
| 685 | + public function get_sql_clauses($range) { |
|
| 686 | 686 | |
| 687 | 687 | $date = 'CAST(meta.completed_date AS DATE)'; |
| 688 | 688 | $datetime = 'meta.completed_date'; |
| 689 | 689 | |
| 690 | 690 | // Prepare durations. |
| 691 | - $today = current_time( 'Y-m-d' ); |
|
| 692 | - $yesterday = date( 'Y-m-d', strtotime( '-1 day', current_time( 'timestamp' ) ) ); |
|
| 693 | - $sunday = date( 'Y-m-d', strtotime( 'sunday this week', current_time( 'timestamp' ) ) ); |
|
| 694 | - $monday = date( 'Y-m-d', strtotime( 'monday this week', current_time( 'timestamp' ) ) ); |
|
| 695 | - $last_sunday = date( 'Y-m-d', strtotime( 'sunday last week', current_time( 'timestamp' ) ) ); |
|
| 696 | - $last_monday = date( 'Y-m-d', strtotime( 'monday last week', current_time( 'timestamp' ) ) ); |
|
| 697 | - $seven_days_ago = date( 'Y-m-d', strtotime( '-7 days', current_time( 'timestamp' ) ) ); |
|
| 698 | - $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days', current_time( 'timestamp' ) ) ); |
|
| 699 | - $first_day_month = date( 'Y-m-1', current_time( 'timestamp' ) ); |
|
| 700 | - $last_day_month = date( 'Y-m-t', current_time( 'timestamp' ) ); |
|
| 701 | - $first_day_last_month = date( 'Y-m-d', strtotime( 'first day of last month', current_time( 'timestamp' ) ) ); |
|
| 702 | - $last_day_last_month = date( 'Y-m-d', strtotime( 'last day of last month', current_time( 'timestamp' ) ) ); |
|
| 703 | - $first_day_year = date( 'Y-1-1', current_time( 'timestamp' ) ); |
|
| 704 | - $last_day_year = date( 'Y-12-31', current_time( 'timestamp' ) ); |
|
| 705 | - $first_day_last_year = date( 'Y-m-d', strtotime( 'first day of last year', current_time( 'timestamp' ) ) ); |
|
| 706 | - $last_day_last_year = date( 'Y-m-d', strtotime( 'last day of last year', current_time( 'timestamp' ) ) ); |
|
| 691 | + $today = current_time('Y-m-d'); |
|
| 692 | + $yesterday = date('Y-m-d', strtotime('-1 day', current_time('timestamp'))); |
|
| 693 | + $sunday = date('Y-m-d', strtotime('sunday this week', current_time('timestamp'))); |
|
| 694 | + $monday = date('Y-m-d', strtotime('monday this week', current_time('timestamp'))); |
|
| 695 | + $last_sunday = date('Y-m-d', strtotime('sunday last week', current_time('timestamp'))); |
|
| 696 | + $last_monday = date('Y-m-d', strtotime('monday last week', current_time('timestamp'))); |
|
| 697 | + $seven_days_ago = date('Y-m-d', strtotime('-7 days', current_time('timestamp'))); |
|
| 698 | + $thirty_days_ago = date('Y-m-d', strtotime('-30 days', current_time('timestamp'))); |
|
| 699 | + $first_day_month = date('Y-m-1', current_time('timestamp')); |
|
| 700 | + $last_day_month = date('Y-m-t', current_time('timestamp')); |
|
| 701 | + $first_day_last_month = date('Y-m-d', strtotime('first day of last month', current_time('timestamp'))); |
|
| 702 | + $last_day_last_month = date('Y-m-d', strtotime('last day of last month', current_time('timestamp'))); |
|
| 703 | + $first_day_year = date('Y-1-1', current_time('timestamp')); |
|
| 704 | + $last_day_year = date('Y-12-31', current_time('timestamp')); |
|
| 705 | + $first_day_last_year = date('Y-m-d', strtotime('first day of last year', current_time('timestamp'))); |
|
| 706 | + $last_day_last_year = date('Y-m-d', strtotime('last day of last year', current_time('timestamp'))); |
|
| 707 | 707 | |
| 708 | 708 | $ranges = array( |
| 709 | 709 | |
@@ -759,21 +759,21 @@ discard block |
||
| 759 | 759 | |
| 760 | 760 | ); |
| 761 | 761 | |
| 762 | - if ( ! isset( $ranges[ $range ] ) ) { |
|
| 762 | + if (!isset($ranges[$range])) { |
|
| 763 | 763 | return $ranges['7_days_ago']; |
| 764 | 764 | } |
| 765 | - return $ranges[ $range ]; |
|
| 765 | + return $ranges[$range]; |
|
| 766 | 766 | |
| 767 | 767 | } |
| 768 | 768 | |
| 769 | 769 | /** |
| 770 | 770 | * Returns the the current date ranges results. |
| 771 | 771 | */ |
| 772 | - public function get_report_results( $range ) { |
|
| 772 | + public function get_report_results($range) { |
|
| 773 | 773 | global $wpdb; |
| 774 | 774 | |
| 775 | 775 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 776 | - $clauses = $this->get_sql_clauses( $range ); |
|
| 776 | + $clauses = $this->get_sql_clauses($range); |
|
| 777 | 777 | $sql = "SELECT |
| 778 | 778 | {$clauses[0]} AS completed_date, |
| 779 | 779 | SUM( meta.total ) AS total, |
@@ -789,30 +789,30 @@ discard block |
||
| 789 | 789 | GROUP BY {$clauses[0]} |
| 790 | 790 | "; |
| 791 | 791 | |
| 792 | - return $wpdb->get_results( $sql ); |
|
| 792 | + return $wpdb->get_results($sql); |
|
| 793 | 793 | } |
| 794 | 794 | |
| 795 | 795 | /** |
| 796 | 796 | * Fill nulls. |
| 797 | 797 | */ |
| 798 | - public function fill_nulls( $data, $range ) { |
|
| 798 | + public function fill_nulls($data, $range) { |
|
| 799 | 799 | |
| 800 | 800 | $return = array(); |
| 801 | 801 | $time = current_time('timestamp'); |
| 802 | 802 | |
| 803 | - switch ( $range ) { |
|
| 803 | + switch ($range) { |
|
| 804 | 804 | case 'today' : |
| 805 | 805 | case 'yesterday' : |
| 806 | - $hour = 0; |
|
| 806 | + $hour = 0; |
|
| 807 | 807 | |
| 808 | - while ( $hour < 23 ) { |
|
| 808 | + while ($hour < 23) { |
|
| 809 | 809 | $amount = 0; |
| 810 | - if ( isset( $data[$hour] ) ) { |
|
| 811 | - $amount = floatval( $data[$hour] ); |
|
| 810 | + if (isset($data[$hour])) { |
|
| 811 | + $amount = floatval($data[$hour]); |
|
| 812 | 812 | } |
| 813 | 813 | |
| 814 | - $time = strtotime( "$range $hour:00:00" ) * 1000; |
|
| 815 | - $return[] = array( $time, $amount ); |
|
| 814 | + $time = strtotime("$range $hour:00:00") * 1000; |
|
| 815 | + $return[] = array($time, $amount); |
|
| 816 | 816 | $hour++; |
| 817 | 817 | } |
| 818 | 818 | |
@@ -820,9 +820,9 @@ discard block |
||
| 820 | 820 | |
| 821 | 821 | case 'this_month' : |
| 822 | 822 | case 'last_month' : |
| 823 | - $_range = str_replace( '_', ' ', $range ); |
|
| 824 | - $month = date( 'n', strtotime( $_range, $time ) ); |
|
| 825 | - $year = date( 'Y', strtotime( $_range, $time ) ); |
|
| 823 | + $_range = str_replace('_', ' ', $range); |
|
| 824 | + $month = date('n', strtotime($_range, $time)); |
|
| 825 | + $year = date('Y', strtotime($_range, $time)); |
|
| 826 | 826 | $days = cal_days_in_month( |
| 827 | 827 | CAL_GREGORIAN, |
| 828 | 828 | $month, |
@@ -830,14 +830,14 @@ discard block |
||
| 830 | 830 | ); |
| 831 | 831 | |
| 832 | 832 | $day = 1; |
| 833 | - while ( $days != $day ) { |
|
| 833 | + while ($days != $day) { |
|
| 834 | 834 | $amount = 0; |
| 835 | - if ( isset( $data[$day] ) ) { |
|
| 836 | - $amount = floatval( $data[$day] ); |
|
| 835 | + if (isset($data[$day])) { |
|
| 836 | + $amount = floatval($data[$day]); |
|
| 837 | 837 | } |
| 838 | 838 | |
| 839 | - $time = strtotime( "$year-$month-$day" ) * 1000; |
|
| 840 | - $return[] = array( $time, $amount ); |
|
| 839 | + $time = strtotime("$year-$month-$day") * 1000; |
|
| 840 | + $return[] = array($time, $amount); |
|
| 841 | 841 | $day++; |
| 842 | 842 | } |
| 843 | 843 | |
@@ -845,52 +845,52 @@ discard block |
||
| 845 | 845 | |
| 846 | 846 | case 'this_week' : |
| 847 | 847 | case 'last_week' : |
| 848 | - $_range = str_replace( '_', ' ', $range ); |
|
| 849 | - $days = array( 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday' ); |
|
| 848 | + $_range = str_replace('_', ' ', $range); |
|
| 849 | + $days = array('monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'); |
|
| 850 | 850 | |
| 851 | - foreach ( $days as $day ) { |
|
| 851 | + foreach ($days as $day) { |
|
| 852 | 852 | |
| 853 | 853 | $amount = 0; |
| 854 | - if ( isset( $data[ ucfirst( $day ) ] ) ) { |
|
| 855 | - $amount = floatval( $data[ ucfirst( $day ) ] ); |
|
| 854 | + if (isset($data[ucfirst($day)])) { |
|
| 855 | + $amount = floatval($data[ucfirst($day)]); |
|
| 856 | 856 | } |
| 857 | 857 | |
| 858 | - $time = strtotime( "$_range $day" ) * 1000; |
|
| 859 | - $return[] = array( $time, $amount ); |
|
| 858 | + $time = strtotime("$_range $day") * 1000; |
|
| 859 | + $return[] = array($time, $amount); |
|
| 860 | 860 | } |
| 861 | 861 | |
| 862 | 862 | break; |
| 863 | 863 | |
| 864 | 864 | case 'this_year' : |
| 865 | 865 | case 'last_year' : |
| 866 | - $_range = str_replace( '_', ' ', $range ); |
|
| 867 | - $year = date( 'Y', strtotime( $_range, $time ) ); |
|
| 868 | - $months = array( '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12' ); |
|
| 866 | + $_range = str_replace('_', ' ', $range); |
|
| 867 | + $year = date('Y', strtotime($_range, $time)); |
|
| 868 | + $months = array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'); |
|
| 869 | 869 | |
| 870 | - foreach ( $months as $month ) { |
|
| 870 | + foreach ($months as $month) { |
|
| 871 | 871 | |
| 872 | 872 | $amount = 0; |
| 873 | - if ( isset( $data[$month] ) ) { |
|
| 874 | - $amount = floatval( $data[$month] ); |
|
| 873 | + if (isset($data[$month])) { |
|
| 874 | + $amount = floatval($data[$month]); |
|
| 875 | 875 | } |
| 876 | 876 | |
| 877 | - $_time = strtotime("$year-$month-01") * 1000; |
|
| 878 | - $return[] = array( $_time, $amount ); |
|
| 877 | + $_time = strtotime("$year-$month-01") * 1000; |
|
| 878 | + $return[] = array($_time, $amount); |
|
| 879 | 879 | } |
| 880 | 880 | |
| 881 | 881 | break; |
| 882 | 882 | case '30_days_ago' : |
| 883 | 883 | $days = 30; |
| 884 | 884 | |
| 885 | - while ( $days > 1 ) { |
|
| 885 | + while ($days > 1) { |
|
| 886 | 886 | $amount = 0; |
| 887 | - $date = date( 'j', strtotime( "-$days days", $time ) ); |
|
| 888 | - if ( isset( $data[$date] ) ) { |
|
| 889 | - $amount = floatval( $data[$date] ); |
|
| 887 | + $date = date('j', strtotime("-$days days", $time)); |
|
| 888 | + if (isset($data[$date])) { |
|
| 889 | + $amount = floatval($data[$date]); |
|
| 890 | 890 | } |
| 891 | 891 | |
| 892 | - $_time = strtotime( "-$days days", $time ) * 1000; |
|
| 893 | - $return[] = array( $_time, $amount ); |
|
| 892 | + $_time = strtotime("-$days days", $time) * 1000; |
|
| 893 | + $return[] = array($_time, $amount); |
|
| 894 | 894 | $days--; |
| 895 | 895 | } |
| 896 | 896 | |
@@ -899,15 +899,15 @@ discard block |
||
| 899 | 899 | default: |
| 900 | 900 | $days = 7; |
| 901 | 901 | |
| 902 | - while ( $days > 1 ) { |
|
| 902 | + while ($days > 1) { |
|
| 903 | 903 | $amount = 0; |
| 904 | - $date = date( 'j', strtotime( "-$days days", $time ) ); |
|
| 905 | - if ( isset( $data[$date] ) ) { |
|
| 906 | - $amount = floatval( $data[$date] ); |
|
| 904 | + $date = date('j', strtotime("-$days days", $time)); |
|
| 905 | + if (isset($data[$date])) { |
|
| 906 | + $amount = floatval($data[$date]); |
|
| 907 | 907 | } |
| 908 | 908 | |
| 909 | - $_time = strtotime( "-$days days", $time ) * 1000; |
|
| 910 | - $return[] = array( $_time, $amount ); |
|
| 909 | + $_time = strtotime("-$days days", $time) * 1000; |
|
| 910 | + $return[] = array($_time, $amount); |
|
| 911 | 911 | $days--; |
| 912 | 912 | } |
| 913 | 913 | |
@@ -922,33 +922,33 @@ discard block |
||
| 922 | 922 | * Retrieves the stats. |
| 923 | 923 | */ |
| 924 | 924 | public function get_stats() { |
| 925 | - $range = isset( $_GET['range'] ) ? $_GET['range'] : '7_days_ago'; |
|
| 926 | - $results = $this->get_report_results( $range ); |
|
| 927 | - $earnings = wp_list_pluck( $results, 'total', 'completed_date' ); |
|
| 928 | - $taxes = wp_list_pluck( $results, 'tax', 'completed_date' ); |
|
| 929 | - $discounts = wp_list_pluck( $results, 'discount', 'completed_date' ); |
|
| 930 | - $fees = wp_list_pluck( $results, 'fees_total', 'completed_date' ); |
|
| 925 | + $range = isset($_GET['range']) ? $_GET['range'] : '7_days_ago'; |
|
| 926 | + $results = $this->get_report_results($range); |
|
| 927 | + $earnings = wp_list_pluck($results, 'total', 'completed_date'); |
|
| 928 | + $taxes = wp_list_pluck($results, 'tax', 'completed_date'); |
|
| 929 | + $discounts = wp_list_pluck($results, 'discount', 'completed_date'); |
|
| 930 | + $fees = wp_list_pluck($results, 'fees_total', 'completed_date'); |
|
| 931 | 931 | |
| 932 | 932 | return array( |
| 933 | 933 | |
| 934 | 934 | array( |
| 935 | - 'label' => __( 'Earnings', 'invoicing' ), |
|
| 936 | - 'data' => $this->fill_nulls( $earnings, $range ), |
|
| 935 | + 'label' => __('Earnings', 'invoicing'), |
|
| 936 | + 'data' => $this->fill_nulls($earnings, $range), |
|
| 937 | 937 | ), |
| 938 | 938 | |
| 939 | 939 | array( |
| 940 | - 'label' => __( 'Taxes', 'invoicing' ), |
|
| 941 | - 'data' => $this->fill_nulls( $taxes, $range ), |
|
| 940 | + 'label' => __('Taxes', 'invoicing'), |
|
| 941 | + 'data' => $this->fill_nulls($taxes, $range), |
|
| 942 | 942 | ), |
| 943 | 943 | |
| 944 | 944 | array( |
| 945 | - 'label' => __( 'Discounts', 'invoicing' ), |
|
| 946 | - 'data' => $this->fill_nulls( $discounts, $range ), |
|
| 945 | + 'label' => __('Discounts', 'invoicing'), |
|
| 946 | + 'data' => $this->fill_nulls($discounts, $range), |
|
| 947 | 947 | ), |
| 948 | 948 | |
| 949 | 949 | array( |
| 950 | - 'label' => __( 'Fees', 'invoicing' ), |
|
| 951 | - 'data' => $this->fill_nulls( $fees, $range ), |
|
| 950 | + 'label' => __('Fees', 'invoicing'), |
|
| 951 | + 'data' => $this->fill_nulls($fees, $range), |
|
| 952 | 952 | ) |
| 953 | 953 | ); |
| 954 | 954 | |
@@ -958,34 +958,34 @@ discard block |
||
| 958 | 958 | * Retrieves the time format for stats. |
| 959 | 959 | */ |
| 960 | 960 | public function get_time_format() { |
| 961 | - $range = isset( $_GET['range'] ) ? $_GET['range'] : '7_days_ago'; |
|
| 961 | + $range = isset($_GET['range']) ? $_GET['range'] : '7_days_ago'; |
|
| 962 | 962 | |
| 963 | - switch ( $range ) { |
|
| 963 | + switch ($range) { |
|
| 964 | 964 | case 'today' : |
| 965 | 965 | case 'yesterday' : |
| 966 | - return array( 'hour', '%h %p' ); |
|
| 966 | + return array('hour', '%h %p'); |
|
| 967 | 967 | break; |
| 968 | 968 | |
| 969 | 969 | case 'this_month' : |
| 970 | 970 | case 'last_month' : |
| 971 | - return array( 'day', '%b %d' ); |
|
| 971 | + return array('day', '%b %d'); |
|
| 972 | 972 | break; |
| 973 | 973 | |
| 974 | 974 | case 'this_week' : |
| 975 | 975 | case 'last_week' : |
| 976 | - return array( 'day', '%b %d' ); |
|
| 976 | + return array('day', '%b %d'); |
|
| 977 | 977 | break; |
| 978 | 978 | |
| 979 | 979 | case 'this_year' : |
| 980 | 980 | case 'last_year' : |
| 981 | - return array( 'month', '%b' ); |
|
| 981 | + return array('month', '%b'); |
|
| 982 | 982 | break; |
| 983 | 983 | case '30_days_ago' : |
| 984 | - return array( 'day', '%b %d' ); |
|
| 984 | + return array('day', '%b %d'); |
|
| 985 | 985 | break; |
| 986 | 986 | |
| 987 | 987 | default: |
| 988 | - return array( 'day', '%b %d' ); |
|
| 988 | + return array('day', '%b %d'); |
|
| 989 | 989 | break; |
| 990 | 990 | |
| 991 | 991 | } |
@@ -996,11 +996,11 @@ discard block |
||
| 996 | 996 | */ |
| 997 | 997 | public function earnings_report() { |
| 998 | 998 | |
| 999 | - $data = wp_json_encode( $this->get_stats() ); |
|
| 999 | + $data = wp_json_encode($this->get_stats()); |
|
| 1000 | 1000 | $time_format = $this->get_time_format(); |
| 1001 | 1001 | echo ' |
| 1002 | 1002 | <div class="wpinv-report-container"> |
| 1003 | - <h3><span>' . __( 'Earnings Over Time', 'invoicing' ) .'</span></h3> |
|
| 1003 | + <h3><span>' . __('Earnings Over Time', 'invoicing') . '</span></h3> |
|
| 1004 | 1004 | ' . $this->period_filter() . ' |
| 1005 | 1005 | <div id="wpinv_report_graph" style="height: 450px;"></div> |
| 1006 | 1006 | </div> |
@@ -1009,12 +1009,12 @@ discard block |
||
| 1009 | 1009 | jQuery(document).ready( function() { |
| 1010 | 1010 | jQuery.plot( |
| 1011 | 1011 | jQuery("#wpinv_report_graph"), |
| 1012 | - ' . $data .', |
|
| 1012 | + ' . $data . ', |
|
| 1013 | 1013 | { |
| 1014 | 1014 | xaxis:{ |
| 1015 | 1015 | mode: "time", |
| 1016 | - timeformat: "' . $time_format[1] .'", |
|
| 1017 | - minTickSize: [0.5, "' . $time_format[0] .'"] |
|
| 1016 | + timeformat: "' . $time_format[1] . '", |
|
| 1017 | + minTickSize: [0.5, "' . $time_format[0] . '"] |
|
| 1018 | 1018 | }, |
| 1019 | 1019 | |
| 1020 | 1020 | yaxis: { |
@@ -1042,7 +1042,7 @@ discard block |
||
| 1042 | 1042 | * Displays the gateways report. |
| 1043 | 1043 | */ |
| 1044 | 1044 | public function gateways_report() { |
| 1045 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-gateways-report-table.php' ); |
|
| 1045 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-gateways-report-table.php'); |
|
| 1046 | 1046 | |
| 1047 | 1047 | $table = new WPInv_Gateways_Report_Table(); |
| 1048 | 1048 | $table->prepare_items(); |
@@ -1053,12 +1053,12 @@ discard block |
||
| 1053 | 1053 | * Displays the items report. |
| 1054 | 1054 | */ |
| 1055 | 1055 | public function items_report() { |
| 1056 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-items-report-table.php' ); |
|
| 1056 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-items-report-table.php'); |
|
| 1057 | 1057 | |
| 1058 | 1058 | $table = new WPInv_Items_Report_Table(); |
| 1059 | 1059 | $table->prepare_items(); |
| 1060 | 1060 | $table->display(); |
| 1061 | - echo __( '* Items with no sales not shown.', 'invoicing' ); |
|
| 1061 | + echo __('* Items with no sales not shown.', 'invoicing'); |
|
| 1062 | 1062 | } |
| 1063 | 1063 | |
| 1064 | 1064 | /** |
@@ -1068,27 +1068,27 @@ discard block |
||
| 1068 | 1068 | */ |
| 1069 | 1069 | public function tax_report() { |
| 1070 | 1070 | |
| 1071 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-taxes-report-table.php' ); |
|
| 1071 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-taxes-report-table.php'); |
|
| 1072 | 1072 | $table = new WPInv_Taxes_Reports_Table(); |
| 1073 | 1073 | $table->prepare_items(); |
| 1074 | - $year = isset( $_GET['year'] ) ? absint( $_GET['year'] ) : date( 'Y' ); |
|
| 1074 | + $year = isset($_GET['year']) ? absint($_GET['year']) : date('Y'); |
|
| 1075 | 1075 | ?> |
| 1076 | 1076 | |
| 1077 | 1077 | <div class="metabox-holder" style="padding-top: 0;"> |
| 1078 | 1078 | <div class="postbox"> |
| 1079 | - <h3><span><?php _e('Tax Report','invoicing' ); ?></span></h3> |
|
| 1079 | + <h3><span><?php _e('Tax Report', 'invoicing'); ?></span></h3> |
|
| 1080 | 1080 | <div class="inside"> |
| 1081 | - <p><?php _e( 'This report shows the total amount collected in sales tax for the given year.', 'invoicing' ); ?></p> |
|
| 1081 | + <p><?php _e('This report shows the total amount collected in sales tax for the given year.', 'invoicing'); ?></p> |
|
| 1082 | 1082 | <form method="get"> |
| 1083 | - <span><?php echo $year; ?></span>: <strong><?php echo wpinv_sales_tax_for_year( $year ); ?></strong> — |
|
| 1083 | + <span><?php echo $year; ?></span>: <strong><?php echo wpinv_sales_tax_for_year($year); ?></strong> — |
|
| 1084 | 1084 | <select name="year"> |
| 1085 | - <?php for ( $i = 2014; $i <= date( 'Y' ); $i++ ) : ?> |
|
| 1086 | - <option value="<?php echo $i; ?>"<?php selected( $year, $i ); ?>><?php echo $i; ?></option> |
|
| 1085 | + <?php for ($i = 2014; $i <= date('Y'); $i++) : ?> |
|
| 1086 | + <option value="<?php echo $i; ?>"<?php selected($year, $i); ?>><?php echo $i; ?></option> |
|
| 1087 | 1087 | <?php endfor; ?> |
| 1088 | 1088 | </select> |
| 1089 | 1089 | <input type="hidden" name="view" value="taxes" /> |
| 1090 | 1090 | <input type="hidden" name="page" value="wpinv-reports"/> |
| 1091 | - <?php submit_button( __( 'Submit', 'invoicing' ), 'secondary', 'submit', false ); ?> |
|
| 1091 | + <?php submit_button(__('Submit', 'invoicing'), 'secondary', 'submit', false); ?> |
|
| 1092 | 1092 | </form> |
| 1093 | 1093 | </div><!-- .inside --> |
| 1094 | 1094 | </div><!-- .postbox --> |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * Setup menus in WP admin. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -defined( 'ABSPATH' ) || exit; |
|
| 6 | +defined('ABSPATH') || exit; |
|
| 7 | 7 | |
| 8 | 8 | /** |
| 9 | 9 | * WC_Admin_Menus Class. |
@@ -13,24 +13,24 @@ discard block |
||
| 13 | 13 | * Hook in tabs. |
| 14 | 14 | */ |
| 15 | 15 | public function __construct() { |
| 16 | - add_action( 'admin_menu', array( $this, 'admin_menu' ), 10 ); |
|
| 17 | - add_action( 'admin_menu', array( $this, 'add_customers_menu' ), 18 ); |
|
| 18 | - add_action( 'admin_menu', array( $this, 'add_addons_menu' ), 100 ); |
|
| 19 | - add_action( 'admin_menu', array( $this, 'add_settings_menu' ), 60 ); |
|
| 20 | - add_action( 'admin_menu', array( $this, 'remove_admin_submenus' ), 10 ); |
|
| 21 | - add_action( 'admin_head-nav-menus.php', array( $this, 'add_nav_menu_meta_boxes' ) ); |
|
| 16 | + add_action('admin_menu', array($this, 'admin_menu'), 10); |
|
| 17 | + add_action('admin_menu', array($this, 'add_customers_menu'), 18); |
|
| 18 | + add_action('admin_menu', array($this, 'add_addons_menu'), 100); |
|
| 19 | + add_action('admin_menu', array($this, 'add_settings_menu'), 60); |
|
| 20 | + add_action('admin_menu', array($this, 'remove_admin_submenus'), 10); |
|
| 21 | + add_action('admin_head-nav-menus.php', array($this, 'add_nav_menu_meta_boxes')); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | public function admin_menu() { |
| 25 | 25 | |
| 26 | - $capability = apply_filters( 'invoicing_capability', wpinv_get_capability() ); |
|
| 26 | + $capability = apply_filters('invoicing_capability', wpinv_get_capability()); |
|
| 27 | 27 | add_menu_page( |
| 28 | - __( 'GetPaid', 'invoicing' ), |
|
| 29 | - __( 'GetPaid', 'invoicing' ), |
|
| 28 | + __('GetPaid', 'invoicing'), |
|
| 29 | + __('GetPaid', 'invoicing'), |
|
| 30 | 30 | $capability, |
| 31 | 31 | 'wpinv', |
| 32 | 32 | null, |
| 33 | - 'data:image/svg+xml;base64,' . base64_encode( file_get_contents( WPINV_PLUGIN_DIR . 'assets/images/GetPaid.svg' ) ), |
|
| 33 | + 'data:image/svg+xml;base64,' . base64_encode(file_get_contents(WPINV_PLUGIN_DIR . 'assets/images/GetPaid.svg')), |
|
| 34 | 34 | '54.123460' |
| 35 | 35 | ); |
| 36 | 36 | |
@@ -42,11 +42,11 @@ discard block |
||
| 42 | 42 | public function add_customers_menu() { |
| 43 | 43 | add_submenu_page( |
| 44 | 44 | 'wpinv', |
| 45 | - __( 'Customers', 'invoicing' ), |
|
| 46 | - __( 'Customers', 'invoicing' ), |
|
| 45 | + __('Customers', 'invoicing'), |
|
| 46 | + __('Customers', 'invoicing'), |
|
| 47 | 47 | wpinv_get_capability(), |
| 48 | 48 | 'wpinv-customers', |
| 49 | - array( $this, 'customers_page' ) |
|
| 49 | + array($this, 'customers_page') |
|
| 50 | 50 | ); |
| 51 | 51 | } |
| 52 | 52 | |
@@ -54,10 +54,10 @@ discard block |
||
| 54 | 54 | * Displays the customers page. |
| 55 | 55 | */ |
| 56 | 56 | public function customers_page() { |
| 57 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-customers-table.php' ); |
|
| 57 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-customers-table.php'); |
|
| 58 | 58 | ?> |
| 59 | 59 | <div class="wrap wpi-customers-wrap"> |
| 60 | - <h1><?php echo esc_html( __( 'Customers', 'invoicing' ) ); ?></h1> |
|
| 60 | + <h1><?php echo esc_html(__('Customers', 'invoicing')); ?></h1> |
|
| 61 | 61 | <?php |
| 62 | 62 | $table = new WPInv_Customers_Table(); |
| 63 | 63 | $table->prepare_items(); |
@@ -73,16 +73,16 @@ discard block |
||
| 73 | 73 | public function add_settings_menu() { |
| 74 | 74 | add_submenu_page( |
| 75 | 75 | 'wpinv', |
| 76 | - __( 'Invoice Settings', 'invoicing' ), |
|
| 77 | - __( 'Settings', 'invoicing' ), |
|
| 78 | - apply_filters( 'invoicing_capability', wpinv_get_capability() ), |
|
| 76 | + __('Invoice Settings', 'invoicing'), |
|
| 77 | + __('Settings', 'invoicing'), |
|
| 78 | + apply_filters('invoicing_capability', wpinv_get_capability()), |
|
| 79 | 79 | 'wpinv-settings', |
| 80 | - array( $this, 'options_page' ) |
|
| 80 | + array($this, 'options_page') |
|
| 81 | 81 | ); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - public function add_addons_menu(){ |
|
| 85 | - if ( !apply_filters( 'wpi_show_addons_page', true ) ) { |
|
| 84 | + public function add_addons_menu() { |
|
| 85 | + if (!apply_filters('wpi_show_addons_page', true)) { |
|
| 86 | 86 | return; |
| 87 | 87 | } |
| 88 | 88 | |
@@ -92,78 +92,78 @@ discard block |
||
| 92 | 92 | __('Extensions', 'invoicing'), |
| 93 | 93 | 'manage_options', |
| 94 | 94 | 'wpi-addons', |
| 95 | - array( $this, 'addons_page' ) |
|
| 95 | + array($this, 'addons_page') |
|
| 96 | 96 | ); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - public function addons_page(){ |
|
| 99 | + public function addons_page() { |
|
| 100 | 100 | $addon_obj = new WPInv_Admin_Addons(); |
| 101 | 101 | $addon_obj->output(); |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | function options_page() { |
| 105 | - $page = isset( $_GET['page'] ) ? strtolower( $_GET['page'] ) : false; |
|
| 105 | + $page = isset($_GET['page']) ? strtolower($_GET['page']) : false; |
|
| 106 | 106 | |
| 107 | - if ( $page !== 'wpinv-settings' ) { |
|
| 107 | + if ($page !== 'wpinv-settings') { |
|
| 108 | 108 | return; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | $settings_tabs = wpinv_get_settings_tabs(); |
| 112 | 112 | $settings_tabs = empty($settings_tabs) ? array() : $settings_tabs; |
| 113 | - $active_tab = isset( $_GET['tab'] ) && array_key_exists( $_GET['tab'], $settings_tabs ) ? sanitize_text_field( $_GET['tab'] ) : 'general'; |
|
| 114 | - $sections = wpinv_get_settings_tab_sections( $active_tab ); |
|
| 113 | + $active_tab = isset($_GET['tab']) && array_key_exists($_GET['tab'], $settings_tabs) ? sanitize_text_field($_GET['tab']) : 'general'; |
|
| 114 | + $sections = wpinv_get_settings_tab_sections($active_tab); |
|
| 115 | 115 | $key = 'main'; |
| 116 | 116 | |
| 117 | - if ( is_array( $sections ) ) { |
|
| 118 | - $key = key( $sections ); |
|
| 117 | + if (is_array($sections)) { |
|
| 118 | + $key = key($sections); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - $registered_sections = wpinv_get_settings_tab_sections( $active_tab ); |
|
| 122 | - $section = isset( $_GET['section'] ) && ! empty( $registered_sections ) && array_key_exists( $_GET['section'], $registered_sections ) ? $_GET['section'] : $key; |
|
| 121 | + $registered_sections = wpinv_get_settings_tab_sections($active_tab); |
|
| 122 | + $section = isset($_GET['section']) && !empty($registered_sections) && array_key_exists($_GET['section'], $registered_sections) ? $_GET['section'] : $key; |
|
| 123 | 123 | ob_start(); |
| 124 | 124 | ?> |
| 125 | 125 | <div class="wrap"> |
| 126 | 126 | <h1 class="nav-tab-wrapper"> |
| 127 | 127 | <?php |
| 128 | - foreach( wpinv_get_settings_tabs() as $tab_id => $tab_name ) { |
|
| 129 | - $tab_url = add_query_arg( array( |
|
| 128 | + foreach (wpinv_get_settings_tabs() as $tab_id => $tab_name) { |
|
| 129 | + $tab_url = add_query_arg(array( |
|
| 130 | 130 | 'settings-updated' => false, |
| 131 | 131 | 'tab' => $tab_id, |
| 132 | - ) ); |
|
| 132 | + )); |
|
| 133 | 133 | |
| 134 | 134 | // Remove the section from the tabs so we always end up at the main section |
| 135 | - $tab_url = remove_query_arg( 'section', $tab_url ); |
|
| 136 | - $tab_url = remove_query_arg( 'wpi_sub', $tab_url ); |
|
| 135 | + $tab_url = remove_query_arg('section', $tab_url); |
|
| 136 | + $tab_url = remove_query_arg('wpi_sub', $tab_url); |
|
| 137 | 137 | |
| 138 | 138 | $active = $active_tab == $tab_id ? ' nav-tab-active' : ''; |
| 139 | 139 | |
| 140 | - echo '<a href="' . esc_url( $tab_url ) . '" title="' . esc_attr( $tab_name ) . '" class="nav-tab' . $active . '">'; |
|
| 141 | - echo esc_html( $tab_name ); |
|
| 140 | + echo '<a href="' . esc_url($tab_url) . '" title="' . esc_attr($tab_name) . '" class="nav-tab' . $active . '">'; |
|
| 141 | + echo esc_html($tab_name); |
|
| 142 | 142 | echo '</a>'; |
| 143 | 143 | } |
| 144 | 144 | ?> |
| 145 | 145 | </h1> |
| 146 | 146 | <?php |
| 147 | - $number_of_sections = count( $sections ); |
|
| 147 | + $number_of_sections = count($sections); |
|
| 148 | 148 | $number = 0; |
| 149 | - if ( $number_of_sections > 1 ) { |
|
| 149 | + if ($number_of_sections > 1) { |
|
| 150 | 150 | echo '<div><ul class="subsubsub">'; |
| 151 | - foreach( $sections as $section_id => $section_name ) { |
|
| 151 | + foreach ($sections as $section_id => $section_name) { |
|
| 152 | 152 | echo '<li>'; |
| 153 | 153 | $number++; |
| 154 | - $tab_url = add_query_arg( array( |
|
| 154 | + $tab_url = add_query_arg(array( |
|
| 155 | 155 | 'settings-updated' => false, |
| 156 | 156 | 'tab' => $active_tab, |
| 157 | 157 | 'section' => $section_id |
| 158 | - ) ); |
|
| 159 | - $tab_url = remove_query_arg( 'wpi_sub', $tab_url ); |
|
| 158 | + )); |
|
| 159 | + $tab_url = remove_query_arg('wpi_sub', $tab_url); |
|
| 160 | 160 | $class = ''; |
| 161 | - if ( $section == $section_id ) { |
|
| 161 | + if ($section == $section_id) { |
|
| 162 | 162 | $class = 'current'; |
| 163 | 163 | } |
| 164 | - echo '<a class="' . $class . '" href="' . esc_url( $tab_url ) . '">' . $section_name . '</a>'; |
|
| 164 | + echo '<a class="' . $class . '" href="' . esc_url($tab_url) . '">' . $section_name . '</a>'; |
|
| 165 | 165 | |
| 166 | - if ( $number != $number_of_sections ) { |
|
| 166 | + if ($number != $number_of_sections) { |
|
| 167 | 167 | echo ' | '; |
| 168 | 168 | } |
| 169 | 169 | echo '</li>'; |
@@ -175,19 +175,19 @@ discard block |
||
| 175 | 175 | <form method="post" action="options.php"> |
| 176 | 176 | <table class="form-table"> |
| 177 | 177 | <?php |
| 178 | - settings_fields( 'wpinv_settings' ); |
|
| 178 | + settings_fields('wpinv_settings'); |
|
| 179 | 179 | |
| 180 | - if ( 'main' === $section ) { |
|
| 181 | - do_action( 'wpinv_settings_tab_top', $active_tab ); |
|
| 180 | + if ('main' === $section) { |
|
| 181 | + do_action('wpinv_settings_tab_top', $active_tab); |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - do_action( 'wpinv_settings_tab_top_' . $active_tab . '_' . $section, $active_tab, $section ); |
|
| 185 | - do_settings_sections( 'wpinv_settings_' . $active_tab . '_' . $section, $active_tab, $section ); |
|
| 186 | - do_action( 'wpinv_settings_tab_bottom_' . $active_tab . '_' . $section, $active_tab, $section ); |
|
| 184 | + do_action('wpinv_settings_tab_top_' . $active_tab . '_' . $section, $active_tab, $section); |
|
| 185 | + do_settings_sections('wpinv_settings_' . $active_tab . '_' . $section, $active_tab, $section); |
|
| 186 | + do_action('wpinv_settings_tab_bottom_' . $active_tab . '_' . $section, $active_tab, $section); |
|
| 187 | 187 | |
| 188 | 188 | // For backwards compatibility |
| 189 | - if ( 'main' === $section ) { |
|
| 190 | - do_action( 'wpinv_settings_tab_bottom', $active_tab ); |
|
| 189 | + if ('main' === $section) { |
|
| 190 | + do_action('wpinv_settings_tab_bottom', $active_tab); |
|
| 191 | 191 | } |
| 192 | 192 | ?> |
| 193 | 193 | </table> |
@@ -201,18 +201,18 @@ discard block |
||
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | public function remove_admin_submenus() { |
| 204 | - remove_submenu_page( 'edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice' ); |
|
| 204 | + remove_submenu_page('edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice'); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - public function add_nav_menu_meta_boxes(){ |
|
| 208 | - add_meta_box( 'wpinv_endpoints_nav_link', __( 'Invoicing Pages', 'invoicing' ), array( $this, 'nav_menu_links' ), 'nav-menus', 'side', 'low' ); |
|
| 207 | + public function add_nav_menu_meta_boxes() { |
|
| 208 | + add_meta_box('wpinv_endpoints_nav_link', __('Invoicing Pages', 'invoicing'), array($this, 'nav_menu_links'), 'nav-menus', 'side', 'low'); |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | - public function nav_menu_links(){ |
|
| 211 | + public function nav_menu_links() { |
|
| 212 | 212 | $endpoints = $this->get_menu_items(); |
| 213 | 213 | ?> |
| 214 | 214 | <div id="invoicing-endpoints" class="posttypediv"> |
| 215 | - <?php if(!empty($endpoints['pages'])){ ?> |
|
| 215 | + <?php if (!empty($endpoints['pages'])) { ?> |
|
| 216 | 216 | <div id="tabs-panel-invoicing-endpoints" class="tabs-panel tabs-panel-active"> |
| 217 | 217 | <ul id="invoicing-endpoints-checklist" class="categorychecklist form-no-clear"> |
| 218 | 218 | <?php |
@@ -224,29 +224,29 @@ discard block |
||
| 224 | 224 | <?php } ?> |
| 225 | 225 | <p class="button-controls"> |
| 226 | 226 | <span class="list-controls"> |
| 227 | - <a href="<?php echo admin_url( 'nav-menus.php?page-tab=all&selectall=1#invoicing-endpoints' ); ?>" class="select-all"><?php _e( 'Select all', 'invoicing' ); ?></a> |
|
| 227 | + <a href="<?php echo admin_url('nav-menus.php?page-tab=all&selectall=1#invoicing-endpoints'); ?>" class="select-all"><?php _e('Select all', 'invoicing'); ?></a> |
|
| 228 | 228 | </span> |
| 229 | 229 | <span class="add-to-menu"> |
| 230 | - <input type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to menu', 'invoicing' ); ?>" name="add-post-type-menu-item" id="submit-invoicing-endpoints"> |
|
| 230 | + <input type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e('Add to menu', 'invoicing'); ?>" name="add-post-type-menu-item" id="submit-invoicing-endpoints"> |
|
| 231 | 231 | <span class="spinner"></span> |
| 232 | 232 | </span> |
| 233 | 233 | </p> |
| 234 | 234 | <?php |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - public function get_menu_items(){ |
|
| 237 | + public function get_menu_items() { |
|
| 238 | 238 | $items = array(); |
| 239 | 239 | |
| 240 | - $wpinv_history_page_id = (int)wpinv_get_option( 'invoice_history_page' ); |
|
| 241 | - if($wpinv_history_page_id > 0){ |
|
| 240 | + $wpinv_history_page_id = (int) wpinv_get_option('invoice_history_page'); |
|
| 241 | + if ($wpinv_history_page_id > 0) { |
|
| 242 | 242 | $item = new stdClass(); |
| 243 | 243 | $item->object_id = $wpinv_history_page_id; |
| 244 | 244 | $item->db_id = 0; |
| 245 | - $item->object = 'page'; |
|
| 245 | + $item->object = 'page'; |
|
| 246 | 246 | $item->menu_item_parent = 0; |
| 247 | 247 | $item->type = 'post_type'; |
| 248 | - $item->title = __('Invoice History Page','invoicing'); |
|
| 249 | - $item->url = get_permalink( $wpinv_history_page_id ); |
|
| 248 | + $item->title = __('Invoice History Page', 'invoicing'); |
|
| 249 | + $item->url = get_permalink($wpinv_history_page_id); |
|
| 250 | 250 | $item->target = ''; |
| 251 | 251 | $item->attr_title = ''; |
| 252 | 252 | $item->classes = array('wpinv-menu-item'); |
@@ -255,16 +255,16 @@ discard block |
||
| 255 | 255 | $items['pages'][] = $item; |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - $wpinv_sub_history_page_id = (int)wpinv_get_option( 'invoice_subscription_page' ); |
|
| 259 | - if($wpinv_sub_history_page_id > 0){ |
|
| 258 | + $wpinv_sub_history_page_id = (int) wpinv_get_option('invoice_subscription_page'); |
|
| 259 | + if ($wpinv_sub_history_page_id > 0) { |
|
| 260 | 260 | $item = new stdClass(); |
| 261 | 261 | $item->object_id = $wpinv_sub_history_page_id; |
| 262 | 262 | $item->db_id = 0; |
| 263 | - $item->object = 'page'; |
|
| 263 | + $item->object = 'page'; |
|
| 264 | 264 | $item->menu_item_parent = 0; |
| 265 | 265 | $item->type = 'post_type'; |
| 266 | - $item->title = __('Invoice Subscriptions Page','invoicing'); |
|
| 267 | - $item->url = get_permalink( $wpinv_sub_history_page_id ); |
|
| 266 | + $item->title = __('Invoice Subscriptions Page', 'invoicing'); |
|
| 267 | + $item->url = get_permalink($wpinv_sub_history_page_id); |
|
| 268 | 268 | $item->target = ''; |
| 269 | 269 | $item->attr_title = ''; |
| 270 | 270 | $item->classes = array('wpinv-menu-item'); |
@@ -273,16 +273,16 @@ discard block |
||
| 273 | 273 | $items['pages'][] = $item; |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - $wpinv_checkout_page_id = (int)wpinv_get_option( 'checkout_page' ); |
|
| 277 | - if($wpinv_checkout_page_id > 0){ |
|
| 276 | + $wpinv_checkout_page_id = (int) wpinv_get_option('checkout_page'); |
|
| 277 | + if ($wpinv_checkout_page_id > 0) { |
|
| 278 | 278 | $item = new stdClass(); |
| 279 | 279 | $item->object_id = $wpinv_checkout_page_id; |
| 280 | 280 | $item->db_id = 0; |
| 281 | - $item->object = 'page'; |
|
| 281 | + $item->object = 'page'; |
|
| 282 | 282 | $item->menu_item_parent = 0; |
| 283 | 283 | $item->type = 'post_type'; |
| 284 | - $item->title = __('Checkout Page','invoicing'); |
|
| 285 | - $item->url = get_permalink( $wpinv_checkout_page_id ); |
|
| 284 | + $item->title = __('Checkout Page', 'invoicing'); |
|
| 285 | + $item->url = get_permalink($wpinv_checkout_page_id); |
|
| 286 | 286 | $item->target = ''; |
| 287 | 287 | $item->attr_title = ''; |
| 288 | 288 | $item->classes = array('wpinv-menu-item'); |
@@ -291,16 +291,16 @@ discard block |
||
| 291 | 291 | $items['pages'][] = $item; |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - $wpinv_tandc_page_id = (int)wpinv_get_option( 'tandc_page' ); |
|
| 295 | - if($wpinv_tandc_page_id > 0){ |
|
| 294 | + $wpinv_tandc_page_id = (int) wpinv_get_option('tandc_page'); |
|
| 295 | + if ($wpinv_tandc_page_id > 0) { |
|
| 296 | 296 | $item = new stdClass(); |
| 297 | 297 | $item->object_id = $wpinv_tandc_page_id; |
| 298 | 298 | $item->db_id = 0; |
| 299 | - $item->object = 'page'; |
|
| 299 | + $item->object = 'page'; |
|
| 300 | 300 | $item->menu_item_parent = 0; |
| 301 | 301 | $item->type = 'post_type'; |
| 302 | - $item->title = __('Terms & Conditions','invoicing'); |
|
| 303 | - $item->url = get_permalink( $wpinv_tandc_page_id ); |
|
| 302 | + $item->title = __('Terms & Conditions', 'invoicing'); |
|
| 303 | + $item->url = get_permalink($wpinv_tandc_page_id); |
|
| 304 | 304 | $item->target = ''; |
| 305 | 305 | $item->attr_title = ''; |
| 306 | 306 | $item->classes = array('wpinv-menu-item'); |
@@ -309,16 +309,16 @@ discard block |
||
| 309 | 309 | $items['pages'][] = $item; |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | - $wpinv_success_page_id = (int)wpinv_get_option( 'success_page' ); |
|
| 313 | - if($wpinv_success_page_id > 0){ |
|
| 312 | + $wpinv_success_page_id = (int) wpinv_get_option('success_page'); |
|
| 313 | + if ($wpinv_success_page_id > 0) { |
|
| 314 | 314 | $item = new stdClass(); |
| 315 | 315 | $item->object_id = $wpinv_success_page_id; |
| 316 | 316 | $item->db_id = 0; |
| 317 | - $item->object = 'page'; |
|
| 317 | + $item->object = 'page'; |
|
| 318 | 318 | $item->menu_item_parent = 0; |
| 319 | 319 | $item->type = 'post_type'; |
| 320 | - $item->title = __('Success Page','invoicing'); |
|
| 321 | - $item->url = get_permalink( $wpinv_success_page_id ); |
|
| 320 | + $item->title = __('Success Page', 'invoicing'); |
|
| 321 | + $item->url = get_permalink($wpinv_success_page_id); |
|
| 322 | 322 | $item->target = ''; |
| 323 | 323 | $item->attr_title = ''; |
| 324 | 324 | $item->classes = array('wpinv-menu-item'); |
@@ -327,16 +327,16 @@ discard block |
||
| 327 | 327 | $items['pages'][] = $item; |
| 328 | 328 | } |
| 329 | 329 | |
| 330 | - $wpinv_failure_page_id = (int)wpinv_get_option( 'failure_page' ); |
|
| 331 | - if($wpinv_failure_page_id > 0){ |
|
| 330 | + $wpinv_failure_page_id = (int) wpinv_get_option('failure_page'); |
|
| 331 | + if ($wpinv_failure_page_id > 0) { |
|
| 332 | 332 | $item = new stdClass(); |
| 333 | 333 | $item->object_id = $wpinv_failure_page_id; |
| 334 | 334 | $item->db_id = 0; |
| 335 | - $item->object = 'page'; |
|
| 335 | + $item->object = 'page'; |
|
| 336 | 336 | $item->menu_item_parent = 0; |
| 337 | 337 | $item->type = 'post_type'; |
| 338 | - $item->title = __('Failed Transaction Page','invoicing'); |
|
| 339 | - $item->url = get_permalink( $wpinv_failure_page_id ); |
|
| 338 | + $item->title = __('Failed Transaction Page', 'invoicing'); |
|
| 339 | + $item->url = get_permalink($wpinv_failure_page_id); |
|
| 340 | 340 | $item->target = ''; |
| 341 | 341 | $item->attr_title = ''; |
| 342 | 342 | $item->classes = array('wpinv-menu-item'); |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | $items['pages'][] = $item; |
| 346 | 346 | } |
| 347 | 347 | |
| 348 | - return apply_filters( 'wpinv_menu_items', $items ); |
|
| 348 | + return apply_filters('wpinv_menu_items', $items); |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 351 | } |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | |
| 10 | 10 | // Load WP_List_Table if not loaded |
| 11 | 11 | if ( ! class_exists( 'WP_List_Table' ) ) { |
| 12 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 12 | + require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | /** |
@@ -21,184 +21,184 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | class WPInv_Customers_Table extends WP_List_Table { |
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * @var int Number of items per page |
|
| 26 | - * @since 1.0.19 |
|
| 27 | - */ |
|
| 28 | - public $per_page = 10; |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * Get things started |
|
| 32 | - * |
|
| 33 | - * @since 1.0.19 |
|
| 34 | - * @see WP_List_Table::__construct() |
|
| 35 | - */ |
|
| 36 | - public function __construct() { |
|
| 37 | - |
|
| 38 | - // Set parent defaults |
|
| 39 | - parent::__construct( array( |
|
| 40 | - 'singular' => 'id', |
|
| 41 | - 'plural' => 'ids', |
|
| 42 | - 'ajax' => false, |
|
| 43 | - ) ); |
|
| 44 | - |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Gets the name of the primary column. |
|
| 49 | - * |
|
| 50 | - * @since 1.0.19 |
|
| 51 | - * @access protected |
|
| 52 | - * |
|
| 53 | - * @return string Name of the primary column. |
|
| 54 | - */ |
|
| 55 | - protected function get_primary_column_name() { |
|
| 56 | - return 'name'; |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * This function renders most of the columns in the list table. |
|
| 61 | - * |
|
| 62 | - * @since 1.0.19 |
|
| 63 | - * |
|
| 64 | - * @param WP_User $item |
|
| 65 | - * @param string $column_name The name of the column |
|
| 66 | - * |
|
| 67 | - * @return string Column Name |
|
| 68 | - */ |
|
| 69 | - public function column_default( $item, $column_name ) { |
|
| 70 | - $value = sanitize_text_field( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
| 71 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
| 72 | - } |
|
| 73 | - |
|
| 74 | - /** |
|
| 75 | - * Generates content for a single row of the table |
|
| 76 | - * @since 1.0.19 |
|
| 77 | - * |
|
| 78 | - * @param int $item The user id. |
|
| 79 | - */ |
|
| 80 | - public function single_row( $item ) { |
|
| 81 | - $item = get_user_by( 'id', $item ); |
|
| 82 | - |
|
| 83 | - if ( empty( $item ) ) { |
|
| 84 | - return; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - echo '<tr>'; |
|
| 88 | - $this->single_row_columns( $item ); |
|
| 89 | - echo '</tr>'; |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * Displays the customers name |
|
| 94 | - * |
|
| 95 | - * @param WP_User $customer customer. |
|
| 96 | - * @return string |
|
| 97 | - */ |
|
| 98 | - public function column_name( $customer ) { |
|
| 99 | - |
|
| 100 | - // Customer view URL. |
|
| 101 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
| 102 | - $row_actions = $this->row_actions( |
|
| 103 | - array( |
|
| 104 | - 'view' => '<a href="' . $view_url . '">' . __( 'View', 'invoicing' ) . '</a>', |
|
| 105 | - ) |
|
| 106 | - ); |
|
| 107 | - |
|
| 108 | - // Customer email address. |
|
| 109 | - $email = sanitize_email( $customer->user_email ); |
|
| 110 | - |
|
| 111 | - // Customer's avatar. |
|
| 112 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
| 113 | - $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
| 114 | - |
|
| 115 | - // Customer's name. |
|
| 116 | - $name = sanitize_text_field( "{$customer->display_name} ($customer->user_login)" ); |
|
| 117 | - |
|
| 118 | - if ( ! empty( $name ) ) { |
|
| 119 | - $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
| 123 | - |
|
| 124 | - return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong></div></div>"; |
|
| 125 | - |
|
| 126 | - } |
|
| 127 | - |
|
| 128 | - /** |
|
| 129 | - * Retrieve the table columns |
|
| 130 | - * |
|
| 131 | - * @since 1.0.19 |
|
| 132 | - * @return array $columns Array of all the list table columns |
|
| 133 | - */ |
|
| 134 | - public function get_columns() { |
|
| 135 | - |
|
| 136 | - $columns = array( |
|
| 137 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 138 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 139 | - 'state' => __( 'State', 'invoicing' ), |
|
| 140 | - 'city' => __( 'City', 'invoicing' ), |
|
| 141 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 142 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 143 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 144 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 145 | - ); |
|
| 146 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
| 147 | - |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * Retrieve the current page number |
|
| 152 | - * |
|
| 153 | - * @since 1.0.19 |
|
| 154 | - * @return int Current page number |
|
| 155 | - */ |
|
| 156 | - public function get_paged() { |
|
| 157 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - /** |
|
| 161 | - * Returns bulk actions. |
|
| 162 | - * |
|
| 163 | - * @since 1.0.19 |
|
| 164 | - * @return void |
|
| 165 | - */ |
|
| 166 | - public function bulk_actions( $which = '' ) { |
|
| 167 | - return array(); |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - /** |
|
| 171 | - * Prepares the display query |
|
| 172 | - */ |
|
| 173 | - public function prepare_query() { |
|
| 174 | - global $wpdb; |
|
| 175 | - |
|
| 176 | - // Users with invoices. |
|
| 177 | - $customers = $wpdb->get_col( |
|
| 178 | - $wpdb->prepare( |
|
| 179 | - "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE post_type=%s LIMIT %d,%d", |
|
| 180 | - 'wpi_invoice', |
|
| 181 | - $this->get_paged() * 10 - 10, |
|
| 182 | - $this->per_page |
|
| 183 | - ) |
|
| 184 | - ); |
|
| 185 | - |
|
| 186 | - $this->items = $customers; |
|
| 187 | - $this->total = (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE post_type=%s", 'wpi_invoice' ) ); |
|
| 188 | - |
|
| 189 | - } |
|
| 190 | - |
|
| 191 | - /** |
|
| 192 | - * Setup the final data for the table |
|
| 193 | - * |
|
| 194 | - * @since 1.0.19 |
|
| 195 | - * @return void |
|
| 196 | - */ |
|
| 197 | - public function prepare_items() { |
|
| 198 | - $columns = $this->get_columns(); |
|
| 199 | - $hidden = array(); // No hidden columns |
|
| 200 | - $sortable = $this->get_sortable_columns(); |
|
| 201 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 202 | - $this->prepare_query(); |
|
| 203 | - } |
|
| 24 | + /** |
|
| 25 | + * @var int Number of items per page |
|
| 26 | + * @since 1.0.19 |
|
| 27 | + */ |
|
| 28 | + public $per_page = 10; |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * Get things started |
|
| 32 | + * |
|
| 33 | + * @since 1.0.19 |
|
| 34 | + * @see WP_List_Table::__construct() |
|
| 35 | + */ |
|
| 36 | + public function __construct() { |
|
| 37 | + |
|
| 38 | + // Set parent defaults |
|
| 39 | + parent::__construct( array( |
|
| 40 | + 'singular' => 'id', |
|
| 41 | + 'plural' => 'ids', |
|
| 42 | + 'ajax' => false, |
|
| 43 | + ) ); |
|
| 44 | + |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Gets the name of the primary column. |
|
| 49 | + * |
|
| 50 | + * @since 1.0.19 |
|
| 51 | + * @access protected |
|
| 52 | + * |
|
| 53 | + * @return string Name of the primary column. |
|
| 54 | + */ |
|
| 55 | + protected function get_primary_column_name() { |
|
| 56 | + return 'name'; |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * This function renders most of the columns in the list table. |
|
| 61 | + * |
|
| 62 | + * @since 1.0.19 |
|
| 63 | + * |
|
| 64 | + * @param WP_User $item |
|
| 65 | + * @param string $column_name The name of the column |
|
| 66 | + * |
|
| 67 | + * @return string Column Name |
|
| 68 | + */ |
|
| 69 | + public function column_default( $item, $column_name ) { |
|
| 70 | + $value = sanitize_text_field( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
| 71 | + return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
| 72 | + } |
|
| 73 | + |
|
| 74 | + /** |
|
| 75 | + * Generates content for a single row of the table |
|
| 76 | + * @since 1.0.19 |
|
| 77 | + * |
|
| 78 | + * @param int $item The user id. |
|
| 79 | + */ |
|
| 80 | + public function single_row( $item ) { |
|
| 81 | + $item = get_user_by( 'id', $item ); |
|
| 82 | + |
|
| 83 | + if ( empty( $item ) ) { |
|
| 84 | + return; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + echo '<tr>'; |
|
| 88 | + $this->single_row_columns( $item ); |
|
| 89 | + echo '</tr>'; |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * Displays the customers name |
|
| 94 | + * |
|
| 95 | + * @param WP_User $customer customer. |
|
| 96 | + * @return string |
|
| 97 | + */ |
|
| 98 | + public function column_name( $customer ) { |
|
| 99 | + |
|
| 100 | + // Customer view URL. |
|
| 101 | + $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
| 102 | + $row_actions = $this->row_actions( |
|
| 103 | + array( |
|
| 104 | + 'view' => '<a href="' . $view_url . '">' . __( 'View', 'invoicing' ) . '</a>', |
|
| 105 | + ) |
|
| 106 | + ); |
|
| 107 | + |
|
| 108 | + // Customer email address. |
|
| 109 | + $email = sanitize_email( $customer->user_email ); |
|
| 110 | + |
|
| 111 | + // Customer's avatar. |
|
| 112 | + $avatar = esc_url( get_avatar_url( $email ) ); |
|
| 113 | + $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
| 114 | + |
|
| 115 | + // Customer's name. |
|
| 116 | + $name = sanitize_text_field( "{$customer->display_name} ($customer->user_login)" ); |
|
| 117 | + |
|
| 118 | + if ( ! empty( $name ) ) { |
|
| 119 | + $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
| 123 | + |
|
| 124 | + return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong></div></div>"; |
|
| 125 | + |
|
| 126 | + } |
|
| 127 | + |
|
| 128 | + /** |
|
| 129 | + * Retrieve the table columns |
|
| 130 | + * |
|
| 131 | + * @since 1.0.19 |
|
| 132 | + * @return array $columns Array of all the list table columns |
|
| 133 | + */ |
|
| 134 | + public function get_columns() { |
|
| 135 | + |
|
| 136 | + $columns = array( |
|
| 137 | + 'name' => __( 'Name', 'invoicing' ), |
|
| 138 | + 'country' => __( 'Country', 'invoicing' ), |
|
| 139 | + 'state' => __( 'State', 'invoicing' ), |
|
| 140 | + 'city' => __( 'City', 'invoicing' ), |
|
| 141 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 142 | + 'address' => __( 'Address', 'invoicing' ), |
|
| 143 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
| 144 | + 'company' => __( 'Company', 'invoicing' ), |
|
| 145 | + ); |
|
| 146 | + return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
| 147 | + |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * Retrieve the current page number |
|
| 152 | + * |
|
| 153 | + * @since 1.0.19 |
|
| 154 | + * @return int Current page number |
|
| 155 | + */ |
|
| 156 | + public function get_paged() { |
|
| 157 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + /** |
|
| 161 | + * Returns bulk actions. |
|
| 162 | + * |
|
| 163 | + * @since 1.0.19 |
|
| 164 | + * @return void |
|
| 165 | + */ |
|
| 166 | + public function bulk_actions( $which = '' ) { |
|
| 167 | + return array(); |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + /** |
|
| 171 | + * Prepares the display query |
|
| 172 | + */ |
|
| 173 | + public function prepare_query() { |
|
| 174 | + global $wpdb; |
|
| 175 | + |
|
| 176 | + // Users with invoices. |
|
| 177 | + $customers = $wpdb->get_col( |
|
| 178 | + $wpdb->prepare( |
|
| 179 | + "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE post_type=%s LIMIT %d,%d", |
|
| 180 | + 'wpi_invoice', |
|
| 181 | + $this->get_paged() * 10 - 10, |
|
| 182 | + $this->per_page |
|
| 183 | + ) |
|
| 184 | + ); |
|
| 185 | + |
|
| 186 | + $this->items = $customers; |
|
| 187 | + $this->total = (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE post_type=%s", 'wpi_invoice' ) ); |
|
| 188 | + |
|
| 189 | + } |
|
| 190 | + |
|
| 191 | + /** |
|
| 192 | + * Setup the final data for the table |
|
| 193 | + * |
|
| 194 | + * @since 1.0.19 |
|
| 195 | + * @return void |
|
| 196 | + */ |
|
| 197 | + public function prepare_items() { |
|
| 198 | + $columns = $this->get_columns(); |
|
| 199 | + $hidden = array(); // No hidden columns |
|
| 200 | + $sortable = $this->get_sortable_columns(); |
|
| 201 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 202 | + $this->prepare_query(); |
|
| 203 | + } |
|
| 204 | 204 | } |
@@ -5,10 +5,10 @@ discard block |
||
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | 7 | // Exit if accessed directly |
| 8 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 8 | +if (!defined('ABSPATH')) exit; |
|
| 9 | 9 | |
| 10 | 10 | // Load WP_List_Table if not loaded |
| 11 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 11 | +if (!class_exists('WP_List_Table')) { |
|
| 12 | 12 | require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
| 13 | 13 | } |
| 14 | 14 | |
@@ -36,11 +36,11 @@ discard block |
||
| 36 | 36 | public function __construct() { |
| 37 | 37 | |
| 38 | 38 | // Set parent defaults |
| 39 | - parent::__construct( array( |
|
| 39 | + parent::__construct(array( |
|
| 40 | 40 | 'singular' => 'id', |
| 41 | 41 | 'plural' => 'ids', |
| 42 | 42 | 'ajax' => false, |
| 43 | - ) ); |
|
| 43 | + )); |
|
| 44 | 44 | |
| 45 | 45 | } |
| 46 | 46 | |
@@ -66,9 +66,9 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * @return string Column Name |
| 68 | 68 | */ |
| 69 | - public function column_default( $item, $column_name ) { |
|
| 70 | - $value = sanitize_text_field( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
| 71 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
| 69 | + public function column_default($item, $column_name) { |
|
| 70 | + $value = sanitize_text_field(get_user_meta($item->ID, '_wpinv_' . $column_name, true)); |
|
| 71 | + return apply_filters('wpinv_customers_table_column' . $column_name, $value, $item); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
@@ -77,15 +77,15 @@ discard block |
||
| 77 | 77 | * |
| 78 | 78 | * @param int $item The user id. |
| 79 | 79 | */ |
| 80 | - public function single_row( $item ) { |
|
| 81 | - $item = get_user_by( 'id', $item ); |
|
| 80 | + public function single_row($item) { |
|
| 81 | + $item = get_user_by('id', $item); |
|
| 82 | 82 | |
| 83 | - if ( empty( $item ) ) { |
|
| 83 | + if (empty($item)) { |
|
| 84 | 84 | return; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | echo '<tr>'; |
| 88 | - $this->single_row_columns( $item ); |
|
| 88 | + $this->single_row_columns($item); |
|
| 89 | 89 | echo '</tr>'; |
| 90 | 90 | } |
| 91 | 91 | |
@@ -95,27 +95,27 @@ discard block |
||
| 95 | 95 | * @param WP_User $customer customer. |
| 96 | 96 | * @return string |
| 97 | 97 | */ |
| 98 | - public function column_name( $customer ) { |
|
| 98 | + public function column_name($customer) { |
|
| 99 | 99 | |
| 100 | 100 | // Customer view URL. |
| 101 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
| 101 | + $view_url = esc_url(add_query_arg('user_id', $customer->ID, admin_url('user-edit.php'))); |
|
| 102 | 102 | $row_actions = $this->row_actions( |
| 103 | 103 | array( |
| 104 | - 'view' => '<a href="' . $view_url . '">' . __( 'View', 'invoicing' ) . '</a>', |
|
| 104 | + 'view' => '<a href="' . $view_url . '">' . __('View', 'invoicing') . '</a>', |
|
| 105 | 105 | ) |
| 106 | 106 | ); |
| 107 | 107 | |
| 108 | 108 | // Customer email address. |
| 109 | - $email = sanitize_email( $customer->user_email ); |
|
| 109 | + $email = sanitize_email($customer->user_email); |
|
| 110 | 110 | |
| 111 | 111 | // Customer's avatar. |
| 112 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
| 112 | + $avatar = esc_url(get_avatar_url($email)); |
|
| 113 | 113 | $avatar = "<img src='$avatar' height='32' width='32'/>"; |
| 114 | 114 | |
| 115 | 115 | // Customer's name. |
| 116 | - $name = sanitize_text_field( "{$customer->display_name} ($customer->user_login)" ); |
|
| 116 | + $name = sanitize_text_field("{$customer->display_name} ($customer->user_login)"); |
|
| 117 | 117 | |
| 118 | - if ( ! empty( $name ) ) { |
|
| 118 | + if (!empty($name)) { |
|
| 119 | 119 | $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
| 120 | 120 | } |
| 121 | 121 | |
@@ -134,16 +134,16 @@ discard block |
||
| 134 | 134 | public function get_columns() { |
| 135 | 135 | |
| 136 | 136 | $columns = array( |
| 137 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 138 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 139 | - 'state' => __( 'State', 'invoicing' ), |
|
| 140 | - 'city' => __( 'City', 'invoicing' ), |
|
| 141 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 142 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 143 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 144 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 137 | + 'name' => __('Name', 'invoicing'), |
|
| 138 | + 'country' => __('Country', 'invoicing'), |
|
| 139 | + 'state' => __('State', 'invoicing'), |
|
| 140 | + 'city' => __('City', 'invoicing'), |
|
| 141 | + 'zip' => __('ZIP', 'invoicing'), |
|
| 142 | + 'address' => __('Address', 'invoicing'), |
|
| 143 | + 'phone' => __('Phone', 'invoicing'), |
|
| 144 | + 'company' => __('Company', 'invoicing'), |
|
| 145 | 145 | ); |
| 146 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
| 146 | + return apply_filters('wpinv_customers_table_columns', $columns); |
|
| 147 | 147 | |
| 148 | 148 | } |
| 149 | 149 | |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * @return int Current page number |
| 155 | 155 | */ |
| 156 | 156 | public function get_paged() { |
| 157 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 157 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | * @since 1.0.19 |
| 164 | 164 | * @return void |
| 165 | 165 | */ |
| 166 | - public function bulk_actions( $which = '' ) { |
|
| 166 | + public function bulk_actions($which = '') { |
|
| 167 | 167 | return array(); |
| 168 | 168 | } |
| 169 | 169 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | ); |
| 185 | 185 | |
| 186 | 186 | $this->items = $customers; |
| 187 | - $this->total = (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE post_type=%s", 'wpi_invoice' ) ); |
|
| 187 | + $this->total = (int) $wpdb->get_var($wpdb->prepare("SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE post_type=%s", 'wpi_invoice')); |
|
| 188 | 188 | |
| 189 | 189 | } |
| 190 | 190 | |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | $columns = $this->get_columns(); |
| 199 | 199 | $hidden = array(); // No hidden columns |
| 200 | 200 | $sortable = $this->get_sortable_columns(); |
| 201 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 201 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 202 | 202 | $this->prepare_query(); |
| 203 | 203 | } |
| 204 | 204 | } |
@@ -5,7 +5,9 @@ |
||
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | 7 | // Exit if accessed directly |
| 8 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 8 | +if ( ! defined( 'ABSPATH' ) ) { |
|
| 9 | + exit; |
|
| 10 | +} |
|
| 9 | 11 | |
| 10 | 12 | // Load WP_List_Table if not loaded |
| 11 | 13 | if ( ! class_exists( 'WP_List_Table' ) ) { |