@@ -1,51 +1,51 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // MUST have WordPress. |
| 3 | -if ( !defined( 'WPINC' ) ) { |
|
| 4 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 3 | +if (!defined('WPINC')) { |
|
| 4 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -add_action( 'manage_wpi_discount_posts_custom_column', 'wpinv_discount_custom_column' ); |
|
| 8 | -function wpinv_discount_custom_column( $column ) { |
|
| 7 | +add_action('manage_wpi_discount_posts_custom_column', 'wpinv_discount_custom_column'); |
|
| 8 | +function wpinv_discount_custom_column($column) { |
|
| 9 | 9 | global $post; |
| 10 | 10 | |
| 11 | - $discount = new WPInv_Discount( $post ); |
|
| 11 | + $discount = new WPInv_Discount($post); |
|
| 12 | 12 | |
| 13 | - switch ( $column ) { |
|
| 13 | + switch ($column) { |
|
| 14 | 14 | case 'code' : |
| 15 | - echo esc_html( $discount->get_code() ); |
|
| 15 | + echo esc_html($discount->get_code()); |
|
| 16 | 16 | break; |
| 17 | 17 | case 'amount' : |
| 18 | - echo wp_kses_post( $discount->get_formatted_amount() ); |
|
| 18 | + echo wp_kses_post($discount->get_formatted_amount()); |
|
| 19 | 19 | break; |
| 20 | 20 | case 'usage' : |
| 21 | - echo wp_kses_post( $discount->get_usage() ); |
|
| 21 | + echo wp_kses_post($discount->get_usage()); |
|
| 22 | 22 | break; |
| 23 | 23 | case 'start_date' : |
| 24 | - echo wp_kses_post( getpaid_format_date_value( $discount->get_start_date() ) ); |
|
| 24 | + echo wp_kses_post(getpaid_format_date_value($discount->get_start_date())); |
|
| 25 | 25 | break; |
| 26 | 26 | case 'expiry_date' : |
| 27 | - echo wp_kses_post( getpaid_format_date_value( $discount->get_expiration_date(), __( 'Never', 'invoicing' ) ) ); |
|
| 27 | + echo wp_kses_post(getpaid_format_date_value($discount->get_expiration_date(), __('Never', 'invoicing'))); |
|
| 28 | 28 | break; |
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | -add_filter( 'post_row_actions', 'wpinv_post_row_actions', 90, 2 ); |
|
| 33 | -function wpinv_post_row_actions( $actions, $post ) { |
|
| 34 | - $post_type = !empty( $post->post_type ) ? $post->post_type : ''; |
|
| 32 | +add_filter('post_row_actions', 'wpinv_post_row_actions', 90, 2); |
|
| 33 | +function wpinv_post_row_actions($actions, $post) { |
|
| 34 | + $post_type = !empty($post->post_type) ? $post->post_type : ''; |
|
| 35 | 35 | |
| 36 | - if ( $post_type == 'wpi_discount' ) { |
|
| 37 | - $actions = wpinv_discount_row_actions( $post, $actions ); |
|
| 36 | + if ($post_type == 'wpi_discount') { |
|
| 37 | + $actions = wpinv_discount_row_actions($post, $actions); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | return $actions; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | -function wpinv_discount_row_actions( $discount, $row_actions ) { |
|
| 44 | - $row_actions = array(); |
|
| 45 | - $edit_link = get_edit_post_link( $discount->ID ); |
|
| 46 | - $row_actions['edit'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit', 'invoicing' ) . '</a>'; |
|
| 43 | +function wpinv_discount_row_actions($discount, $row_actions) { |
|
| 44 | + $row_actions = array(); |
|
| 45 | + $edit_link = get_edit_post_link($discount->ID); |
|
| 46 | + $row_actions['edit'] = '<a href="' . esc_url($edit_link) . '">' . __('Edit', 'invoicing') . '</a>'; |
|
| 47 | 47 | |
| 48 | - if ( in_array( strtolower( $discount->post_status ), array( 'publish' ) ) ) { |
|
| 48 | + if (in_array(strtolower($discount->post_status), array('publish'))) { |
|
| 49 | 49 | |
| 50 | 50 | $url = wp_nonce_url( |
| 51 | 51 | add_query_arg( |
@@ -57,13 +57,13 @@ discard block |
||
| 57 | 57 | 'getpaid-nonce', |
| 58 | 58 | 'getpaid-nonce' |
| 59 | 59 | ); |
| 60 | - $anchor = __( 'Deactivate', 'invoicing' ); |
|
| 61 | - $title = esc_attr__( 'Are you sure you want to deactivate this discount?', 'invoicing' ); |
|
| 60 | + $anchor = __('Deactivate', 'invoicing'); |
|
| 61 | + $title = esc_attr__('Are you sure you want to deactivate this discount?', 'invoicing'); |
|
| 62 | 62 | $row_actions['deactivate'] = "<a href='$url' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 63 | 63 | |
| 64 | - } else if( in_array( strtolower( $discount->post_status ), array( 'pending', 'draft' ) ) ) { |
|
| 64 | + } else if (in_array(strtolower($discount->post_status), array('pending', 'draft'))) { |
|
| 65 | 65 | |
| 66 | - $url = wp_nonce_url( |
|
| 66 | + $url = wp_nonce_url( |
|
| 67 | 67 | add_query_arg( |
| 68 | 68 | array( |
| 69 | 69 | 'getpaid-admin-action' => 'activate_discount', |
@@ -73,13 +73,13 @@ discard block |
||
| 73 | 73 | 'getpaid-nonce', |
| 74 | 74 | 'getpaid-nonce' |
| 75 | 75 | ); |
| 76 | - $anchor = __( 'Activate', 'invoicing' ); |
|
| 77 | - $title = esc_attr__( 'Are you sure you want to activate this discount?', 'invoicing' ); |
|
| 76 | + $anchor = __('Activate', 'invoicing'); |
|
| 77 | + $title = esc_attr__('Are you sure you want to activate this discount?', 'invoicing'); |
|
| 78 | 78 | $row_actions['activate'] = "<a href='$url' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 79 | 79 | |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - $url = esc_url( |
|
| 82 | + $url = esc_url( |
|
| 83 | 83 | wp_nonce_url( |
| 84 | 84 | add_query_arg( |
| 85 | 85 | array( |
@@ -91,11 +91,11 @@ discard block |
||
| 91 | 91 | 'getpaid-nonce' |
| 92 | 92 | ) |
| 93 | 93 | ); |
| 94 | - $anchor = __( 'Delete', 'invoicing' ); |
|
| 95 | - $title = esc_attr__( 'Are you sure you want to delete this discount?', 'invoicing' ); |
|
| 94 | + $anchor = __('Delete', 'invoicing'); |
|
| 95 | + $title = esc_attr__('Are you sure you want to delete this discount?', 'invoicing'); |
|
| 96 | 96 | $row_actions['delete'] = "<a href='$url' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 97 | 97 | |
| 98 | - $row_actions = apply_filters( 'wpinv_discount_row_actions', $row_actions, $discount ); |
|
| 98 | + $row_actions = apply_filters('wpinv_discount_row_actions', $row_actions, $discount); |
|
| 99 | 99 | |
| 100 | 100 | return $row_actions; |
| 101 | 101 | } |
@@ -103,68 +103,68 @@ discard block |
||
| 103 | 103 | function wpinv_restrict_manage_posts() { |
| 104 | 104 | global $typenow; |
| 105 | 105 | |
| 106 | - if( 'wpi_discount' == $typenow ) { |
|
| 106 | + if ('wpi_discount' == $typenow) { |
|
| 107 | 107 | wpinv_discount_filters(); |
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | -add_action( 'restrict_manage_posts', 'wpinv_restrict_manage_posts', 10 ); |
|
| 110 | +add_action('restrict_manage_posts', 'wpinv_restrict_manage_posts', 10); |
|
| 111 | 111 | |
| 112 | 112 | function wpinv_discount_filters() { |
| 113 | 113 | |
| 114 | 114 | ?> |
| 115 | 115 | <select name="discount_type" id="dropdown_wpinv_discount_type"> |
| 116 | - <option value=""><?php _e( 'Show all types', 'invoicing' ); ?></option> |
|
| 116 | + <option value=""><?php _e('Show all types', 'invoicing'); ?></option> |
|
| 117 | 117 | <?php |
| 118 | 118 | $types = wpinv_get_discount_types(); |
| 119 | 119 | |
| 120 | - foreach ( $types as $name => $type ) { |
|
| 121 | - echo '<option value="' . esc_attr( $name ) . '"'; |
|
| 120 | + foreach ($types as $name => $type) { |
|
| 121 | + echo '<option value="' . esc_attr($name) . '"'; |
|
| 122 | 122 | |
| 123 | - if ( isset( $_GET['discount_type'] ) ) |
|
| 124 | - selected( $name, sanitize_text_field( $_GET['discount_type'] ) ); |
|
| 123 | + if (isset($_GET['discount_type'])) |
|
| 124 | + selected($name, sanitize_text_field($_GET['discount_type'])); |
|
| 125 | 125 | |
| 126 | - echo '>' . esc_html__( $type, 'invoicing' ) . '</option>'; |
|
| 126 | + echo '>' . esc_html__($type, 'invoicing') . '</option>'; |
|
| 127 | 127 | } |
| 128 | 128 | ?> |
| 129 | 129 | </select> |
| 130 | 130 | <?php |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | -function wpinv_request( $vars ) { |
|
| 133 | +function wpinv_request($vars) { |
|
| 134 | 134 | global $typenow, $wp_post_statuses; |
| 135 | 135 | |
| 136 | - if ( getpaid_is_invoice_post_type( $typenow ) ) { |
|
| 137 | - if ( ! isset( $vars['post_status'] ) ) { |
|
| 138 | - $post_statuses = wpinv_get_invoice_statuses( false, false, $typenow ); |
|
| 136 | + if (getpaid_is_invoice_post_type($typenow)) { |
|
| 137 | + if (!isset($vars['post_status'])) { |
|
| 138 | + $post_statuses = wpinv_get_invoice_statuses(false, false, $typenow); |
|
| 139 | 139 | |
| 140 | - foreach ( $post_statuses as $status => $value ) { |
|
| 141 | - if ( isset( $wp_post_statuses[ $status ] ) && false === $wp_post_statuses[ $status ]->show_in_admin_all_list ) { |
|
| 142 | - unset( $post_statuses[ $status ] ); |
|
| 140 | + foreach ($post_statuses as $status => $value) { |
|
| 141 | + if (isset($wp_post_statuses[$status]) && false === $wp_post_statuses[$status]->show_in_admin_all_list) { |
|
| 142 | + unset($post_statuses[$status]); |
|
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - $vars['post_status'] = array_keys( $post_statuses ); |
|
| 146 | + $vars['post_status'] = array_keys($post_statuses); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - } else if ( 'wpi_discount' == $typenow ) { |
|
| 150 | - $meta_query = !empty( $vars['meta_query'] ) ? $vars['meta_query'] : array(); |
|
| 149 | + } else if ('wpi_discount' == $typenow) { |
|
| 150 | + $meta_query = !empty($vars['meta_query']) ? $vars['meta_query'] : array(); |
|
| 151 | 151 | // Filter vat rule type |
| 152 | - if ( isset( $_GET['discount_type'] ) && $_GET['discount_type'] !== '' ) { |
|
| 152 | + if (isset($_GET['discount_type']) && $_GET['discount_type'] !== '') { |
|
| 153 | 153 | $meta_query[] = array( |
| 154 | 154 | 'key' => '_wpi_discount_type', |
| 155 | - 'value' => sanitize_key( urldecode( $_GET['discount_type'] ) ), |
|
| 155 | + 'value' => sanitize_key(urldecode($_GET['discount_type'])), |
|
| 156 | 156 | 'compare' => '=' |
| 157 | 157 | ); |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - if ( !empty( $meta_query ) ) { |
|
| 160 | + if (!empty($meta_query)) { |
|
| 161 | 161 | $vars['meta_query'] = $meta_query; |
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | return $vars; |
| 166 | 166 | } |
| 167 | -add_filter( 'request', 'wpinv_request' ); |
|
| 167 | +add_filter('request', 'wpinv_request'); |
|
| 168 | 168 | |
| 169 | 169 | /** |
| 170 | 170 | * Create a page and store the ID in an option. |
@@ -176,19 +176,19 @@ discard block |
||
| 176 | 176 | * @param int $post_parent (default: 0) Parent for the new page |
| 177 | 177 | * @return int page ID |
| 178 | 178 | */ |
| 179 | -function wpinv_create_page( $slug, $option = '', $page_title = '', $page_content = '', $post_parent = 0 ) { |
|
| 179 | +function wpinv_create_page($slug, $option = '', $page_title = '', $page_content = '', $post_parent = 0) { |
|
| 180 | 180 | global $wpdb; |
| 181 | 181 | |
| 182 | - $option_value = wpinv_get_option( $option ); |
|
| 182 | + $option_value = wpinv_get_option($option); |
|
| 183 | 183 | |
| 184 | - if ( ! empty( $option_value ) && ( $page_object = get_post( $option_value ) ) ) { |
|
| 185 | - if ( 'page' === $page_object->post_type && ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ) ) ) { |
|
| 184 | + if (!empty($option_value) && ($page_object = get_post($option_value))) { |
|
| 185 | + if ('page' === $page_object->post_type && !in_array($page_object->post_status, array('pending', 'trash', 'future', 'auto-draft'))) { |
|
| 186 | 186 | // Valid page is already in place |
| 187 | 187 | return $page_object->ID; |
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - if(!empty($post_parent)){ |
|
| 191 | + if (!empty($post_parent)) { |
|
| 192 | 192 | $page = get_page_by_path($post_parent); |
| 193 | 193 | if ($page) { |
| 194 | 194 | $post_parent = $page->ID; |
@@ -197,40 +197,40 @@ discard block |
||
| 197 | 197 | } |
| 198 | 198 | } |
| 199 | 199 | |
| 200 | - if ( strlen( $page_content ) > 0 ) { |
|
| 200 | + if (strlen($page_content) > 0) { |
|
| 201 | 201 | // Search for an existing page with the specified page content (typically a shortcode) |
| 202 | - $valid_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_content LIKE %s LIMIT 1;", "%{$page_content}%" ) ); |
|
| 202 | + $valid_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_content LIKE %s LIMIT 1;", "%{$page_content}%")); |
|
| 203 | 203 | } else { |
| 204 | 204 | // Search for an existing page with the specified page slug |
| 205 | - $valid_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug ) ); |
|
| 205 | + $valid_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug)); |
|
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - $valid_page_found = apply_filters( 'wpinv_create_page_id', $valid_page_found, $slug, $page_content ); |
|
| 208 | + $valid_page_found = apply_filters('wpinv_create_page_id', $valid_page_found, $slug, $page_content); |
|
| 209 | 209 | |
| 210 | - if ( $valid_page_found ) { |
|
| 211 | - if ( $option ) { |
|
| 212 | - wpinv_update_option( $option, $valid_page_found ); |
|
| 210 | + if ($valid_page_found) { |
|
| 211 | + if ($option) { |
|
| 212 | + wpinv_update_option($option, $valid_page_found); |
|
| 213 | 213 | } |
| 214 | 214 | return $valid_page_found; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | // Search for a matching valid trashed page |
| 218 | - if ( strlen( $page_content ) > 0 ) { |
|
| 218 | + if (strlen($page_content) > 0) { |
|
| 219 | 219 | // Search for an existing page with the specified page content (typically a shortcode) |
| 220 | - $trashed_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_content LIKE %s LIMIT 1;", "%{$page_content}%" ) ); |
|
| 220 | + $trashed_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_content LIKE %s LIMIT 1;", "%{$page_content}%")); |
|
| 221 | 221 | } else { |
| 222 | 222 | // Search for an existing page with the specified page slug |
| 223 | - $trashed_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug ) ); |
|
| 223 | + $trashed_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug)); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | - if ( $trashed_page_found ) { |
|
| 226 | + if ($trashed_page_found) { |
|
| 227 | 227 | $page_id = $trashed_page_found; |
| 228 | 228 | $page_data = array( |
| 229 | 229 | 'ID' => $page_id, |
| 230 | 230 | 'post_status' => 'publish', |
| 231 | 231 | 'post_parent' => $post_parent, |
| 232 | 232 | ); |
| 233 | - wp_update_post( $page_data ); |
|
| 233 | + wp_update_post($page_data); |
|
| 234 | 234 | } else { |
| 235 | 235 | $page_data = array( |
| 236 | 236 | 'post_status' => 'publish', |
@@ -242,11 +242,11 @@ discard block |
||
| 242 | 242 | 'post_parent' => $post_parent, |
| 243 | 243 | 'comment_status' => 'closed', |
| 244 | 244 | ); |
| 245 | - $page_id = wp_insert_post( $page_data ); |
|
| 245 | + $page_id = wp_insert_post($page_data); |
|
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - if ( $option ) { |
|
| 249 | - wpinv_update_option( $option, (int) $page_id ); |
|
| 248 | + if ($option) { |
|
| 249 | + wpinv_update_option($option, (int) $page_id); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | return $page_id; |
@@ -259,11 +259,11 @@ discard block |
||
| 259 | 259 | * |
| 260 | 260 | * @return array |
| 261 | 261 | */ |
| 262 | -function wpinv_add_aui_screens($screen_ids){ |
|
| 262 | +function wpinv_add_aui_screens($screen_ids) { |
|
| 263 | 263 | |
| 264 | 264 | // load on these pages if set |
| 265 | - $screen_ids = array_merge( $screen_ids, wpinv_get_screen_ids() ); |
|
| 265 | + $screen_ids = array_merge($screen_ids, wpinv_get_screen_ids()); |
|
| 266 | 266 | |
| 267 | 267 | return $screen_ids; |
| 268 | 268 | } |
| 269 | -add_filter('aui_screen_ids','wpinv_add_aui_screens'); |
|
| 270 | 269 | \ No newline at end of file |
| 270 | +add_filter('aui_screen_ids', 'wpinv_add_aui_screens'); |
|
| 271 | 271 | \ No newline at end of file |
@@ -120,8 +120,9 @@ |
||
| 120 | 120 | foreach ( $types as $name => $type ) { |
| 121 | 121 | echo '<option value="' . esc_attr( $name ) . '"'; |
| 122 | 122 | |
| 123 | - if ( isset( $_GET['discount_type'] ) ) |
|
| 124 | - selected( $name, sanitize_text_field( $_GET['discount_type'] ) ); |
|
| 123 | + if ( isset( $_GET['discount_type'] ) ) { |
|
| 124 | + selected( $name, sanitize_text_field( $_GET['discount_type'] ) ); |
|
| 125 | + } |
|
| 125 | 126 | |
| 126 | 127 | echo '>' . esc_html__( $type, 'invoicing' ) . '</option>'; |
| 127 | 128 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | if ( ! defined( 'ABSPATH' ) ) exit; |
| 7 | 7 | |
| 8 | 8 | if ( ! class_exists( 'WP_List_Table' ) ) { |
| 9 | - include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 9 | + include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | /** |
@@ -14,467 +14,467 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | class WPInv_Subscriptions_List_Table extends WP_List_Table { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * URL of this page |
|
| 19 | - * |
|
| 20 | - * @var string |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - */ |
|
| 23 | - public $base_url; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * Query |
|
| 27 | - * |
|
| 28 | - * @var GetPaid_Subscriptions_Query |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - */ |
|
| 31 | - public $query; |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * Total subscriptions |
|
| 35 | - * |
|
| 36 | - * @var string |
|
| 37 | - * @since 1.0.0 |
|
| 38 | - */ |
|
| 39 | - public $total_count; |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * Current status subscriptions |
|
| 43 | - * |
|
| 44 | - * @var string |
|
| 45 | - * @since 1.0.0 |
|
| 46 | - */ |
|
| 47 | - public $current_total_count; |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * Status counts |
|
| 51 | - * |
|
| 52 | - * @var array |
|
| 53 | - * @since 1.0.19 |
|
| 54 | - */ |
|
| 55 | - public $status_counts; |
|
| 56 | - |
|
| 57 | - /** |
|
| 58 | - * Number of results to show per page |
|
| 59 | - * |
|
| 60 | - * @var int |
|
| 61 | - * @since 1.0.0 |
|
| 62 | - */ |
|
| 63 | - public $per_page = 10; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * Constructor function. |
|
| 67 | - */ |
|
| 68 | - public function __construct() { |
|
| 69 | - |
|
| 70 | - parent::__construct( |
|
| 71 | - array( |
|
| 72 | - 'singular' => 'subscription', |
|
| 73 | - 'plural' => 'subscriptions', |
|
| 74 | - ) |
|
| 75 | - ); |
|
| 76 | - |
|
| 77 | - $this->process_bulk_action(); |
|
| 78 | - |
|
| 79 | - $this->prepare_query(); |
|
| 80 | - |
|
| 81 | - $this->base_url = remove_query_arg( 'status' ); |
|
| 82 | - |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - /** |
|
| 86 | - * Prepares the display query |
|
| 87 | - */ |
|
| 88 | - public function prepare_query() { |
|
| 89 | - |
|
| 90 | - // Prepare query args. |
|
| 91 | - $query = array( |
|
| 92 | - 'number' => $this->per_page, |
|
| 93 | - 'paged' => $this->get_paged(), |
|
| 94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? sanitize_text_field( $_GET['status'] ) : 'all', |
|
| 95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? sanitize_text_field( $_GET['orderby'] ) : 'id', |
|
| 96 | - 'order' => ( isset( $_GET['order'] ) ) ? sanitize_text_field( $_GET['order'] ) : 'DESC', |
|
| 97 | - 'customer_in' => $this->get_user_in(), |
|
| 98 | - ); |
|
| 99 | - |
|
| 100 | - if ( is_array( $query['customer_in'] ) && empty( $query['customer_in'] ) ) { |
|
| 101 | - $this->total_count = 0; |
|
| 102 | - $this->current_total_count = 0; |
|
| 103 | - $this->items = array(); |
|
| 104 | - $this->status_counts = array(); |
|
| 105 | - return; |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - // Prepare class properties. |
|
| 109 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
| 110 | - $this->total_count = $this->query->get_total(); |
|
| 111 | - $this->current_total_count = $this->query->get_total(); |
|
| 112 | - $this->items = $this->query->get_results(); |
|
| 113 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
| 114 | - |
|
| 115 | - if ( 'all' != $query['status'] ) { |
|
| 116 | - unset( $query['status'] ); |
|
| 117 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * Get user in. |
|
| 124 | - * |
|
| 125 | - */ |
|
| 126 | - public function get_user_in() { |
|
| 127 | - |
|
| 128 | - // Abort if no user. |
|
| 129 | - if ( empty( $_GET['s'] ) ) { |
|
| 130 | - return null; |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - // Or invalid user. |
|
| 134 | - $user = wp_unslash( sanitize_text_field( $_REQUEST['s'] ) ); |
|
| 135 | - |
|
| 136 | - if ( empty( $user ) ) { |
|
| 137 | - return null; |
|
| 138 | - } |
|
| 139 | - |
|
| 140 | - // Search matching users. |
|
| 141 | - $user = '*' . $user . '*'; |
|
| 142 | - $users = new WP_User_Query( |
|
| 143 | - array( |
|
| 144 | - 'fields' => 'ID', |
|
| 145 | - 'search' => $user, |
|
| 146 | - 'count_total' => false, |
|
| 147 | - ) |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - return $users->get_results(); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - /** |
|
| 154 | - * Gets the list of views available on this table. |
|
| 155 | - * |
|
| 156 | - * The format is an associative array: |
|
| 157 | - * - `'id' => 'link'` |
|
| 158 | - * |
|
| 159 | - * @since 1.0.0 |
|
| 160 | - * |
|
| 161 | - * @return array |
|
| 162 | - */ |
|
| 163 | - public function get_views() { |
|
| 164 | - |
|
| 165 | - $current = isset( $_GET['status'] ) ? sanitize_text_field( $_GET['status'] ) : 'all'; |
|
| 166 | - $views = array( |
|
| 167 | - |
|
| 168 | - 'all' => sprintf( |
|
| 169 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 170 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
| 171 | - $current === 'all' ? ' class="current"' : '', |
|
| 172 | - __('All','invoicing' ), |
|
| 173 | - $this->total_count |
|
| 174 | - ) |
|
| 175 | - |
|
| 176 | - ); |
|
| 177 | - |
|
| 178 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
| 179 | - |
|
| 180 | - $views[ $status ] = sprintf( |
|
| 181 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 182 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
| 183 | - $current === $status ? ' class="current"' : '', |
|
| 184 | - esc_html( getpaid_get_subscription_status_label( $status ) ), |
|
| 185 | - $count |
|
| 186 | - ); |
|
| 187 | - |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - return $views; |
|
| 191 | - |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - /** |
|
| 195 | - * Render most columns |
|
| 196 | - * |
|
| 197 | - * @access private |
|
| 198 | - * @since 1.0.0 |
|
| 199 | - * @return string |
|
| 200 | - */ |
|
| 201 | - public function column_default( $item, $column_name ) { |
|
| 202 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
| 203 | - } |
|
| 204 | - |
|
| 205 | - /** |
|
| 206 | - * This is how checkbox column renders. |
|
| 207 | - * |
|
| 208 | - * @param WPInv_Subscription $item |
|
| 209 | - * @return string |
|
| 210 | - */ |
|
| 211 | - public function column_cb( $item ) { |
|
| 212 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - /** |
|
| 216 | - * Status column |
|
| 217 | - * |
|
| 218 | - * @param WPInv_Subscription $item |
|
| 219 | - * @since 1.0.0 |
|
| 220 | - * @return string |
|
| 221 | - */ |
|
| 222 | - public function column_status( $item ) { |
|
| 223 | - return $item->get_status_label_html(); |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - /** |
|
| 227 | - * Subscription column |
|
| 228 | - * |
|
| 229 | - * @param WPInv_Subscription $item |
|
| 230 | - * @since 1.0.0 |
|
| 231 | - * @return string |
|
| 232 | - */ |
|
| 233 | - public function column_subscription( $item ) { |
|
| 234 | - |
|
| 235 | - $username = __( '(Missing User)', 'invoicing' ); |
|
| 236 | - |
|
| 237 | - $user = get_userdata( $item->get_customer_id() ); |
|
| 238 | - if ( $user ) { |
|
| 239 | - |
|
| 240 | - $username = sprintf( |
|
| 241 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 242 | - absint( $user->ID ), |
|
| 243 | - ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 244 | - ); |
|
| 245 | - |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
| 249 | - $column_content = sprintf( |
|
| 250 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
| 251 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
| 252 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
| 253 | - $username |
|
| 254 | - ); |
|
| 255 | - |
|
| 256 | - $row_actions = array(); |
|
| 257 | - |
|
| 258 | - // View subscription. |
|
| 259 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
| 260 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
| 261 | - |
|
| 262 | - // View invoice. |
|
| 263 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
| 264 | - |
|
| 265 | - if ( ! empty( $invoice ) ) { |
|
| 266 | - $invoice_url = get_edit_post_link( $invoice ); |
|
| 267 | - $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - $delete_url = esc_url( |
|
| 271 | - wp_nonce_url( |
|
| 272 | - add_query_arg( |
|
| 273 | - array( |
|
| 274 | - 'getpaid-admin-action' => 'subscription_manual_delete', |
|
| 275 | - 'id' => $item->get_id(), |
|
| 276 | - ) |
|
| 277 | - ), |
|
| 278 | - 'getpaid-nonce', |
|
| 279 | - 'getpaid-nonce' |
|
| 280 | - ) |
|
| 281 | - ); |
|
| 282 | - $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
| 283 | - |
|
| 284 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
| 285 | - |
|
| 286 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
| 287 | - } |
|
| 288 | - |
|
| 289 | - /** |
|
| 290 | - * Renewal date column |
|
| 291 | - * |
|
| 292 | - * @param WPInv_Subscription $item |
|
| 293 | - * @since 1.0.0 |
|
| 294 | - * @return string |
|
| 295 | - */ |
|
| 296 | - public function column_renewal_date( $item ) { |
|
| 297 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
| 298 | - } |
|
| 299 | - |
|
| 300 | - /** |
|
| 301 | - * Start date column |
|
| 302 | - * |
|
| 303 | - * @param WPInv_Subscription $item |
|
| 304 | - * @since 1.0.0 |
|
| 305 | - * @return string |
|
| 306 | - */ |
|
| 307 | - public function column_start_date( $item ) { |
|
| 308 | - |
|
| 309 | - $gateway = $item->get_parent_invoice()->get_gateway_title(); |
|
| 310 | - |
|
| 311 | - if ( empty( $gateway ) ) { |
|
| 312 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $item ); |
|
| 316 | - if ( ! empty( $url ) ) { |
|
| 317 | - |
|
| 318 | - return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 319 | - __( 'Via %s', 'invoicing' ), |
|
| 320 | - '<strong><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</a></strong>' |
|
| 321 | - ); |
|
| 322 | - |
|
| 323 | - } |
|
| 324 | - |
|
| 325 | - return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 326 | - __( 'Via %s', 'invoicing' ), |
|
| 327 | - '<strong>' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</strong>' |
|
| 328 | - ); |
|
| 329 | - |
|
| 330 | - } |
|
| 331 | - |
|
| 332 | - /** |
|
| 333 | - * Amount column |
|
| 334 | - * |
|
| 335 | - * @param WPInv_Subscription $item |
|
| 336 | - * @since 1.0.19 |
|
| 337 | - * @return string |
|
| 338 | - */ |
|
| 339 | - public static function column_amount( $item ) { |
|
| 340 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
| 341 | - return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
| 342 | - } |
|
| 343 | - |
|
| 344 | - /** |
|
| 345 | - * Billing Times column |
|
| 346 | - * |
|
| 347 | - * @param WPInv_Subscription $item |
|
| 348 | - * @since 1.0.0 |
|
| 349 | - * @return string |
|
| 350 | - */ |
|
| 351 | - public function column_renewals( $item ) { |
|
| 352 | - $max_bills = $item->get_bill_times(); |
|
| 353 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - /** |
|
| 357 | - * Product ID column |
|
| 358 | - * |
|
| 359 | - * @param WPInv_Subscription $item |
|
| 360 | - * @since 1.0.0 |
|
| 361 | - * @return string |
|
| 362 | - */ |
|
| 363 | - public function column_item( $item ) { |
|
| 364 | - $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
| 365 | - |
|
| 366 | - if ( empty( $subscription_group ) ) { |
|
| 367 | - return $this->generate_item_markup( $item->get_product_id() ); |
|
| 368 | - } |
|
| 369 | - |
|
| 370 | - $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 371 | - return implode( ' | ', $markup ); |
|
| 372 | - |
|
| 373 | - } |
|
| 374 | - |
|
| 375 | - /** |
|
| 376 | - * Generates the items markup. |
|
| 377 | - * |
|
| 378 | - * @param int $item_id |
|
| 379 | - * @since 1.0.0 |
|
| 380 | - * @return string |
|
| 381 | - */ |
|
| 382 | - public static function generate_item_markup( $item_id ) { |
|
| 383 | - $item = get_post( $item_id ); |
|
| 384 | - |
|
| 385 | - if ( ! empty( $item ) ) { |
|
| 386 | - $link = get_edit_post_link( $item ); |
|
| 387 | - $link = esc_url( $link ); |
|
| 388 | - $name = esc_html( get_the_title( $item ) ); |
|
| 389 | - return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
| 390 | - } else { |
|
| 391 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - } |
|
| 395 | - |
|
| 396 | - /** |
|
| 397 | - * Retrieve the current page number |
|
| 398 | - * |
|
| 399 | - * @return int |
|
| 400 | - */ |
|
| 401 | - public function get_paged() { |
|
| 402 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 403 | - } |
|
| 404 | - |
|
| 405 | - /** |
|
| 406 | - * Setup the final data for the table |
|
| 407 | - * |
|
| 408 | - */ |
|
| 409 | - public function prepare_items() { |
|
| 410 | - |
|
| 411 | - $columns = $this->get_columns(); |
|
| 412 | - $hidden = array(); |
|
| 413 | - $sortable = $this->get_sortable_columns(); |
|
| 414 | - |
|
| 415 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 416 | - |
|
| 417 | - $this->set_pagination_args( |
|
| 418 | - array( |
|
| 419 | - 'total_items' => $this->current_total_count, |
|
| 420 | - 'per_page' => $this->per_page, |
|
| 421 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
| 422 | - ) |
|
| 423 | - ); |
|
| 424 | - } |
|
| 425 | - |
|
| 426 | - /** |
|
| 427 | - * Table columns |
|
| 428 | - * |
|
| 429 | - * @return array |
|
| 430 | - */ |
|
| 431 | - public function get_columns(){ |
|
| 432 | - $columns = array( |
|
| 433 | - 'cb' => '<input type="checkbox" />', |
|
| 434 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 435 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 436 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 437 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 438 | - 'item' => __( 'Items', 'invoicing' ), |
|
| 439 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 440 | - ); |
|
| 441 | - |
|
| 442 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - /** |
|
| 446 | - * Sortable table columns. |
|
| 447 | - * |
|
| 448 | - * @return array |
|
| 449 | - */ |
|
| 450 | - public function get_sortable_columns() { |
|
| 451 | - $sortable = array( |
|
| 452 | - 'subscription' => array( 'id', true ), |
|
| 453 | - 'start_date' => array( 'created', true ), |
|
| 454 | - 'renewal_date' => array( 'expiration', true ), |
|
| 455 | - 'renewals' => array( 'bill_times', true ), |
|
| 456 | - 'item' => array( 'product_id', true ), |
|
| 457 | - 'status' => array( 'status', true ), |
|
| 458 | - ); |
|
| 459 | - |
|
| 460 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
| 461 | - } |
|
| 462 | - |
|
| 463 | - /** |
|
| 464 | - * Whether the table has items to display or not |
|
| 465 | - * |
|
| 466 | - * @return bool |
|
| 467 | - */ |
|
| 468 | - public function has_items() { |
|
| 469 | - return ! empty( $this->current_total_count ); |
|
| 470 | - } |
|
| 471 | - |
|
| 472 | - /** |
|
| 473 | - * Processes bulk actions. |
|
| 474 | - * |
|
| 475 | - */ |
|
| 476 | - public function process_bulk_action() { |
|
| 477 | - |
|
| 478 | - } |
|
| 17 | + /** |
|
| 18 | + * URL of this page |
|
| 19 | + * |
|
| 20 | + * @var string |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + */ |
|
| 23 | + public $base_url; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * Query |
|
| 27 | + * |
|
| 28 | + * @var GetPaid_Subscriptions_Query |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + */ |
|
| 31 | + public $query; |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * Total subscriptions |
|
| 35 | + * |
|
| 36 | + * @var string |
|
| 37 | + * @since 1.0.0 |
|
| 38 | + */ |
|
| 39 | + public $total_count; |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * Current status subscriptions |
|
| 43 | + * |
|
| 44 | + * @var string |
|
| 45 | + * @since 1.0.0 |
|
| 46 | + */ |
|
| 47 | + public $current_total_count; |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * Status counts |
|
| 51 | + * |
|
| 52 | + * @var array |
|
| 53 | + * @since 1.0.19 |
|
| 54 | + */ |
|
| 55 | + public $status_counts; |
|
| 56 | + |
|
| 57 | + /** |
|
| 58 | + * Number of results to show per page |
|
| 59 | + * |
|
| 60 | + * @var int |
|
| 61 | + * @since 1.0.0 |
|
| 62 | + */ |
|
| 63 | + public $per_page = 10; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * Constructor function. |
|
| 67 | + */ |
|
| 68 | + public function __construct() { |
|
| 69 | + |
|
| 70 | + parent::__construct( |
|
| 71 | + array( |
|
| 72 | + 'singular' => 'subscription', |
|
| 73 | + 'plural' => 'subscriptions', |
|
| 74 | + ) |
|
| 75 | + ); |
|
| 76 | + |
|
| 77 | + $this->process_bulk_action(); |
|
| 78 | + |
|
| 79 | + $this->prepare_query(); |
|
| 80 | + |
|
| 81 | + $this->base_url = remove_query_arg( 'status' ); |
|
| 82 | + |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + /** |
|
| 86 | + * Prepares the display query |
|
| 87 | + */ |
|
| 88 | + public function prepare_query() { |
|
| 89 | + |
|
| 90 | + // Prepare query args. |
|
| 91 | + $query = array( |
|
| 92 | + 'number' => $this->per_page, |
|
| 93 | + 'paged' => $this->get_paged(), |
|
| 94 | + 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? sanitize_text_field( $_GET['status'] ) : 'all', |
|
| 95 | + 'orderby' => ( isset( $_GET['orderby'] ) ) ? sanitize_text_field( $_GET['orderby'] ) : 'id', |
|
| 96 | + 'order' => ( isset( $_GET['order'] ) ) ? sanitize_text_field( $_GET['order'] ) : 'DESC', |
|
| 97 | + 'customer_in' => $this->get_user_in(), |
|
| 98 | + ); |
|
| 99 | + |
|
| 100 | + if ( is_array( $query['customer_in'] ) && empty( $query['customer_in'] ) ) { |
|
| 101 | + $this->total_count = 0; |
|
| 102 | + $this->current_total_count = 0; |
|
| 103 | + $this->items = array(); |
|
| 104 | + $this->status_counts = array(); |
|
| 105 | + return; |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + // Prepare class properties. |
|
| 109 | + $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
| 110 | + $this->total_count = $this->query->get_total(); |
|
| 111 | + $this->current_total_count = $this->query->get_total(); |
|
| 112 | + $this->items = $this->query->get_results(); |
|
| 113 | + $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
| 114 | + |
|
| 115 | + if ( 'all' != $query['status'] ) { |
|
| 116 | + unset( $query['status'] ); |
|
| 117 | + $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * Get user in. |
|
| 124 | + * |
|
| 125 | + */ |
|
| 126 | + public function get_user_in() { |
|
| 127 | + |
|
| 128 | + // Abort if no user. |
|
| 129 | + if ( empty( $_GET['s'] ) ) { |
|
| 130 | + return null; |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + // Or invalid user. |
|
| 134 | + $user = wp_unslash( sanitize_text_field( $_REQUEST['s'] ) ); |
|
| 135 | + |
|
| 136 | + if ( empty( $user ) ) { |
|
| 137 | + return null; |
|
| 138 | + } |
|
| 139 | + |
|
| 140 | + // Search matching users. |
|
| 141 | + $user = '*' . $user . '*'; |
|
| 142 | + $users = new WP_User_Query( |
|
| 143 | + array( |
|
| 144 | + 'fields' => 'ID', |
|
| 145 | + 'search' => $user, |
|
| 146 | + 'count_total' => false, |
|
| 147 | + ) |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + return $users->get_results(); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + /** |
|
| 154 | + * Gets the list of views available on this table. |
|
| 155 | + * |
|
| 156 | + * The format is an associative array: |
|
| 157 | + * - `'id' => 'link'` |
|
| 158 | + * |
|
| 159 | + * @since 1.0.0 |
|
| 160 | + * |
|
| 161 | + * @return array |
|
| 162 | + */ |
|
| 163 | + public function get_views() { |
|
| 164 | + |
|
| 165 | + $current = isset( $_GET['status'] ) ? sanitize_text_field( $_GET['status'] ) : 'all'; |
|
| 166 | + $views = array( |
|
| 167 | + |
|
| 168 | + 'all' => sprintf( |
|
| 169 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 170 | + esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
| 171 | + $current === 'all' ? ' class="current"' : '', |
|
| 172 | + __('All','invoicing' ), |
|
| 173 | + $this->total_count |
|
| 174 | + ) |
|
| 175 | + |
|
| 176 | + ); |
|
| 177 | + |
|
| 178 | + foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
| 179 | + |
|
| 180 | + $views[ $status ] = sprintf( |
|
| 181 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 182 | + esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
| 183 | + $current === $status ? ' class="current"' : '', |
|
| 184 | + esc_html( getpaid_get_subscription_status_label( $status ) ), |
|
| 185 | + $count |
|
| 186 | + ); |
|
| 187 | + |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + return $views; |
|
| 191 | + |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + /** |
|
| 195 | + * Render most columns |
|
| 196 | + * |
|
| 197 | + * @access private |
|
| 198 | + * @since 1.0.0 |
|
| 199 | + * @return string |
|
| 200 | + */ |
|
| 201 | + public function column_default( $item, $column_name ) { |
|
| 202 | + return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
| 203 | + } |
|
| 204 | + |
|
| 205 | + /** |
|
| 206 | + * This is how checkbox column renders. |
|
| 207 | + * |
|
| 208 | + * @param WPInv_Subscription $item |
|
| 209 | + * @return string |
|
| 210 | + */ |
|
| 211 | + public function column_cb( $item ) { |
|
| 212 | + return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + /** |
|
| 216 | + * Status column |
|
| 217 | + * |
|
| 218 | + * @param WPInv_Subscription $item |
|
| 219 | + * @since 1.0.0 |
|
| 220 | + * @return string |
|
| 221 | + */ |
|
| 222 | + public function column_status( $item ) { |
|
| 223 | + return $item->get_status_label_html(); |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + /** |
|
| 227 | + * Subscription column |
|
| 228 | + * |
|
| 229 | + * @param WPInv_Subscription $item |
|
| 230 | + * @since 1.0.0 |
|
| 231 | + * @return string |
|
| 232 | + */ |
|
| 233 | + public function column_subscription( $item ) { |
|
| 234 | + |
|
| 235 | + $username = __( '(Missing User)', 'invoicing' ); |
|
| 236 | + |
|
| 237 | + $user = get_userdata( $item->get_customer_id() ); |
|
| 238 | + if ( $user ) { |
|
| 239 | + |
|
| 240 | + $username = sprintf( |
|
| 241 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 242 | + absint( $user->ID ), |
|
| 243 | + ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 244 | + ); |
|
| 245 | + |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
| 249 | + $column_content = sprintf( |
|
| 250 | + _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
| 251 | + '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
| 252 | + '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
| 253 | + $username |
|
| 254 | + ); |
|
| 255 | + |
|
| 256 | + $row_actions = array(); |
|
| 257 | + |
|
| 258 | + // View subscription. |
|
| 259 | + $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
| 260 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
| 261 | + |
|
| 262 | + // View invoice. |
|
| 263 | + $invoice = get_post( $item->get_parent_invoice_id() ); |
|
| 264 | + |
|
| 265 | + if ( ! empty( $invoice ) ) { |
|
| 266 | + $invoice_url = get_edit_post_link( $invoice ); |
|
| 267 | + $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + $delete_url = esc_url( |
|
| 271 | + wp_nonce_url( |
|
| 272 | + add_query_arg( |
|
| 273 | + array( |
|
| 274 | + 'getpaid-admin-action' => 'subscription_manual_delete', |
|
| 275 | + 'id' => $item->get_id(), |
|
| 276 | + ) |
|
| 277 | + ), |
|
| 278 | + 'getpaid-nonce', |
|
| 279 | + 'getpaid-nonce' |
|
| 280 | + ) |
|
| 281 | + ); |
|
| 282 | + $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
| 283 | + |
|
| 284 | + $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
| 285 | + |
|
| 286 | + return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
| 287 | + } |
|
| 288 | + |
|
| 289 | + /** |
|
| 290 | + * Renewal date column |
|
| 291 | + * |
|
| 292 | + * @param WPInv_Subscription $item |
|
| 293 | + * @since 1.0.0 |
|
| 294 | + * @return string |
|
| 295 | + */ |
|
| 296 | + public function column_renewal_date( $item ) { |
|
| 297 | + return getpaid_format_date_value( $item->get_expiration() ); |
|
| 298 | + } |
|
| 299 | + |
|
| 300 | + /** |
|
| 301 | + * Start date column |
|
| 302 | + * |
|
| 303 | + * @param WPInv_Subscription $item |
|
| 304 | + * @since 1.0.0 |
|
| 305 | + * @return string |
|
| 306 | + */ |
|
| 307 | + public function column_start_date( $item ) { |
|
| 308 | + |
|
| 309 | + $gateway = $item->get_parent_invoice()->get_gateway_title(); |
|
| 310 | + |
|
| 311 | + if ( empty( $gateway ) ) { |
|
| 312 | + return getpaid_format_date_value( $item->get_date_created() ); |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $item ); |
|
| 316 | + if ( ! empty( $url ) ) { |
|
| 317 | + |
|
| 318 | + return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 319 | + __( 'Via %s', 'invoicing' ), |
|
| 320 | + '<strong><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</a></strong>' |
|
| 321 | + ); |
|
| 322 | + |
|
| 323 | + } |
|
| 324 | + |
|
| 325 | + return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 326 | + __( 'Via %s', 'invoicing' ), |
|
| 327 | + '<strong>' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</strong>' |
|
| 328 | + ); |
|
| 329 | + |
|
| 330 | + } |
|
| 331 | + |
|
| 332 | + /** |
|
| 333 | + * Amount column |
|
| 334 | + * |
|
| 335 | + * @param WPInv_Subscription $item |
|
| 336 | + * @since 1.0.19 |
|
| 337 | + * @return string |
|
| 338 | + */ |
|
| 339 | + public static function column_amount( $item ) { |
|
| 340 | + $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
| 341 | + return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
| 342 | + } |
|
| 343 | + |
|
| 344 | + /** |
|
| 345 | + * Billing Times column |
|
| 346 | + * |
|
| 347 | + * @param WPInv_Subscription $item |
|
| 348 | + * @since 1.0.0 |
|
| 349 | + * @return string |
|
| 350 | + */ |
|
| 351 | + public function column_renewals( $item ) { |
|
| 352 | + $max_bills = $item->get_bill_times(); |
|
| 353 | + return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + /** |
|
| 357 | + * Product ID column |
|
| 358 | + * |
|
| 359 | + * @param WPInv_Subscription $item |
|
| 360 | + * @since 1.0.0 |
|
| 361 | + * @return string |
|
| 362 | + */ |
|
| 363 | + public function column_item( $item ) { |
|
| 364 | + $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
| 365 | + |
|
| 366 | + if ( empty( $subscription_group ) ) { |
|
| 367 | + return $this->generate_item_markup( $item->get_product_id() ); |
|
| 368 | + } |
|
| 369 | + |
|
| 370 | + $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 371 | + return implode( ' | ', $markup ); |
|
| 372 | + |
|
| 373 | + } |
|
| 374 | + |
|
| 375 | + /** |
|
| 376 | + * Generates the items markup. |
|
| 377 | + * |
|
| 378 | + * @param int $item_id |
|
| 379 | + * @since 1.0.0 |
|
| 380 | + * @return string |
|
| 381 | + */ |
|
| 382 | + public static function generate_item_markup( $item_id ) { |
|
| 383 | + $item = get_post( $item_id ); |
|
| 384 | + |
|
| 385 | + if ( ! empty( $item ) ) { |
|
| 386 | + $link = get_edit_post_link( $item ); |
|
| 387 | + $link = esc_url( $link ); |
|
| 388 | + $name = esc_html( get_the_title( $item ) ); |
|
| 389 | + return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
| 390 | + } else { |
|
| 391 | + return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + } |
|
| 395 | + |
|
| 396 | + /** |
|
| 397 | + * Retrieve the current page number |
|
| 398 | + * |
|
| 399 | + * @return int |
|
| 400 | + */ |
|
| 401 | + public function get_paged() { |
|
| 402 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 403 | + } |
|
| 404 | + |
|
| 405 | + /** |
|
| 406 | + * Setup the final data for the table |
|
| 407 | + * |
|
| 408 | + */ |
|
| 409 | + public function prepare_items() { |
|
| 410 | + |
|
| 411 | + $columns = $this->get_columns(); |
|
| 412 | + $hidden = array(); |
|
| 413 | + $sortable = $this->get_sortable_columns(); |
|
| 414 | + |
|
| 415 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 416 | + |
|
| 417 | + $this->set_pagination_args( |
|
| 418 | + array( |
|
| 419 | + 'total_items' => $this->current_total_count, |
|
| 420 | + 'per_page' => $this->per_page, |
|
| 421 | + 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
| 422 | + ) |
|
| 423 | + ); |
|
| 424 | + } |
|
| 425 | + |
|
| 426 | + /** |
|
| 427 | + * Table columns |
|
| 428 | + * |
|
| 429 | + * @return array |
|
| 430 | + */ |
|
| 431 | + public function get_columns(){ |
|
| 432 | + $columns = array( |
|
| 433 | + 'cb' => '<input type="checkbox" />', |
|
| 434 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 435 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 436 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 437 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 438 | + 'item' => __( 'Items', 'invoicing' ), |
|
| 439 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 440 | + ); |
|
| 441 | + |
|
| 442 | + return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + /** |
|
| 446 | + * Sortable table columns. |
|
| 447 | + * |
|
| 448 | + * @return array |
|
| 449 | + */ |
|
| 450 | + public function get_sortable_columns() { |
|
| 451 | + $sortable = array( |
|
| 452 | + 'subscription' => array( 'id', true ), |
|
| 453 | + 'start_date' => array( 'created', true ), |
|
| 454 | + 'renewal_date' => array( 'expiration', true ), |
|
| 455 | + 'renewals' => array( 'bill_times', true ), |
|
| 456 | + 'item' => array( 'product_id', true ), |
|
| 457 | + 'status' => array( 'status', true ), |
|
| 458 | + ); |
|
| 459 | + |
|
| 460 | + return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
| 461 | + } |
|
| 462 | + |
|
| 463 | + /** |
|
| 464 | + * Whether the table has items to display or not |
|
| 465 | + * |
|
| 466 | + * @return bool |
|
| 467 | + */ |
|
| 468 | + public function has_items() { |
|
| 469 | + return ! empty( $this->current_total_count ); |
|
| 470 | + } |
|
| 471 | + |
|
| 472 | + /** |
|
| 473 | + * Processes bulk actions. |
|
| 474 | + * |
|
| 475 | + */ |
|
| 476 | + public function process_bulk_action() { |
|
| 477 | + |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | 480 | } |
@@ -3,9 +3,9 @@ discard block |
||
| 3 | 3 | * Displays a list of all subscriptions rules |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 6 | +if (!defined('ABSPATH')) exit; |
|
| 7 | 7 | |
| 8 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 8 | +if (!class_exists('WP_List_Table')) { |
|
| 9 | 9 | include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
| 10 | 10 | } |
| 11 | 11 | |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $this->prepare_query(); |
| 80 | 80 | |
| 81 | - $this->base_url = remove_query_arg( 'status' ); |
|
| 81 | + $this->base_url = remove_query_arg('status'); |
|
| 82 | 82 | |
| 83 | 83 | } |
| 84 | 84 | |
@@ -91,13 +91,13 @@ discard block |
||
| 91 | 91 | $query = array( |
| 92 | 92 | 'number' => $this->per_page, |
| 93 | 93 | 'paged' => $this->get_paged(), |
| 94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? sanitize_text_field( $_GET['status'] ) : 'all', |
|
| 95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? sanitize_text_field( $_GET['orderby'] ) : 'id', |
|
| 96 | - 'order' => ( isset( $_GET['order'] ) ) ? sanitize_text_field( $_GET['order'] ) : 'DESC', |
|
| 94 | + 'status' => (isset($_GET['status']) && array_key_exists($_GET['status'], getpaid_get_subscription_statuses())) ? sanitize_text_field($_GET['status']) : 'all', |
|
| 95 | + 'orderby' => (isset($_GET['orderby'])) ? sanitize_text_field($_GET['orderby']) : 'id', |
|
| 96 | + 'order' => (isset($_GET['order'])) ? sanitize_text_field($_GET['order']) : 'DESC', |
|
| 97 | 97 | 'customer_in' => $this->get_user_in(), |
| 98 | 98 | ); |
| 99 | 99 | |
| 100 | - if ( is_array( $query['customer_in'] ) && empty( $query['customer_in'] ) ) { |
|
| 100 | + if (is_array($query['customer_in']) && empty($query['customer_in'])) { |
|
| 101 | 101 | $this->total_count = 0; |
| 102 | 102 | $this->current_total_count = 0; |
| 103 | 103 | $this->items = array(); |
@@ -106,15 +106,15 @@ discard block |
||
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | // Prepare class properties. |
| 109 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
| 109 | + $this->query = new GetPaid_Subscriptions_Query($query); |
|
| 110 | 110 | $this->total_count = $this->query->get_total(); |
| 111 | 111 | $this->current_total_count = $this->query->get_total(); |
| 112 | 112 | $this->items = $this->query->get_results(); |
| 113 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
| 113 | + $this->status_counts = getpaid_get_subscription_status_counts($query); |
|
| 114 | 114 | |
| 115 | - if ( 'all' != $query['status'] ) { |
|
| 116 | - unset( $query['status'] ); |
|
| 117 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
| 115 | + if ('all' != $query['status']) { |
|
| 116 | + unset($query['status']); |
|
| 117 | + $this->total_count = getpaid_get_subscriptions($query, 'count'); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | } |
@@ -126,14 +126,14 @@ discard block |
||
| 126 | 126 | public function get_user_in() { |
| 127 | 127 | |
| 128 | 128 | // Abort if no user. |
| 129 | - if ( empty( $_GET['s'] ) ) { |
|
| 129 | + if (empty($_GET['s'])) { |
|
| 130 | 130 | return null; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | // Or invalid user. |
| 134 | - $user = wp_unslash( sanitize_text_field( $_REQUEST['s'] ) ); |
|
| 134 | + $user = wp_unslash(sanitize_text_field($_REQUEST['s'])); |
|
| 135 | 135 | |
| 136 | - if ( empty( $user ) ) { |
|
| 136 | + if (empty($user)) { |
|
| 137 | 137 | return null; |
| 138 | 138 | } |
| 139 | 139 | |
@@ -162,26 +162,26 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | public function get_views() { |
| 164 | 164 | |
| 165 | - $current = isset( $_GET['status'] ) ? sanitize_text_field( $_GET['status'] ) : 'all'; |
|
| 165 | + $current = isset($_GET['status']) ? sanitize_text_field($_GET['status']) : 'all'; |
|
| 166 | 166 | $views = array( |
| 167 | 167 | |
| 168 | 168 | 'all' => sprintf( |
| 169 | 169 | '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
| 170 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
| 170 | + esc_url(add_query_arg('status', false, $this->base_url)), |
|
| 171 | 171 | $current === 'all' ? ' class="current"' : '', |
| 172 | - __('All','invoicing' ), |
|
| 172 | + __('All', 'invoicing'), |
|
| 173 | 173 | $this->total_count |
| 174 | 174 | ) |
| 175 | 175 | |
| 176 | 176 | ); |
| 177 | 177 | |
| 178 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
| 178 | + foreach (array_filter($this->status_counts) as $status => $count) { |
|
| 179 | 179 | |
| 180 | - $views[ $status ] = sprintf( |
|
| 180 | + $views[$status] = sprintf( |
|
| 181 | 181 | '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
| 182 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
| 182 | + esc_url(add_query_arg('status', urlencode($status), $this->base_url)), |
|
| 183 | 183 | $current === $status ? ' class="current"' : '', |
| 184 | - esc_html( getpaid_get_subscription_status_label( $status ) ), |
|
| 184 | + esc_html(getpaid_get_subscription_status_label($status)), |
|
| 185 | 185 | $count |
| 186 | 186 | ); |
| 187 | 187 | |
@@ -198,8 +198,8 @@ discard block |
||
| 198 | 198 | * @since 1.0.0 |
| 199 | 199 | * @return string |
| 200 | 200 | */ |
| 201 | - public function column_default( $item, $column_name ) { |
|
| 202 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
| 201 | + public function column_default($item, $column_name) { |
|
| 202 | + return apply_filters("getpaid_subscriptions_table_column_$column_name", $item->$column_name); |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | /** |
@@ -208,8 +208,8 @@ discard block |
||
| 208 | 208 | * @param WPInv_Subscription $item |
| 209 | 209 | * @return string |
| 210 | 210 | */ |
| 211 | - public function column_cb( $item ) { |
|
| 212 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
| 211 | + public function column_cb($item) { |
|
| 212 | + return sprintf('<input type="checkbox" name="id[]" value="%s" />', esc_html($item->get_id())); |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | /** |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | * @since 1.0.0 |
| 220 | 220 | * @return string |
| 221 | 221 | */ |
| 222 | - public function column_status( $item ) { |
|
| 222 | + public function column_status($item) { |
|
| 223 | 223 | return $item->get_status_label_html(); |
| 224 | 224 | } |
| 225 | 225 | |
@@ -230,44 +230,44 @@ discard block |
||
| 230 | 230 | * @since 1.0.0 |
| 231 | 231 | * @return string |
| 232 | 232 | */ |
| 233 | - public function column_subscription( $item ) { |
|
| 233 | + public function column_subscription($item) { |
|
| 234 | 234 | |
| 235 | - $username = __( '(Missing User)', 'invoicing' ); |
|
| 235 | + $username = __('(Missing User)', 'invoicing'); |
|
| 236 | 236 | |
| 237 | - $user = get_userdata( $item->get_customer_id() ); |
|
| 238 | - if ( $user ) { |
|
| 237 | + $user = get_userdata($item->get_customer_id()); |
|
| 238 | + if ($user) { |
|
| 239 | 239 | |
| 240 | 240 | $username = sprintf( |
| 241 | 241 | '<a href="user-edit.php?user_id=%s">%s</a>', |
| 242 | - absint( $user->ID ), |
|
| 243 | - ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 242 | + absint($user->ID), |
|
| 243 | + !empty($user->display_name) ? esc_html($user->display_name) : sanitize_email($user->user_email) |
|
| 244 | 244 | ); |
| 245 | 245 | |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | 248 | // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
| 249 | 249 | $column_content = sprintf( |
| 250 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
| 251 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
| 252 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
| 250 | + _x('%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing'), |
|
| 251 | + '<a href="' . esc_url(admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($item->get_id()))) . '">', |
|
| 252 | + '<strong>' . esc_attr($item->get_id()) . '</strong>', '</a>', |
|
| 253 | 253 | $username |
| 254 | 254 | ); |
| 255 | 255 | |
| 256 | 256 | $row_actions = array(); |
| 257 | 257 | |
| 258 | 258 | // View subscription. |
| 259 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
| 260 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
| 259 | + $view_url = esc_url(add_query_arg('id', $item->get_id(), admin_url('admin.php?page=wpinv-subscriptions'))); |
|
| 260 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __('View Subscription', 'invoicing') . '</a>'; |
|
| 261 | 261 | |
| 262 | 262 | // View invoice. |
| 263 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
| 263 | + $invoice = get_post($item->get_parent_invoice_id()); |
|
| 264 | 264 | |
| 265 | - if ( ! empty( $invoice ) ) { |
|
| 266 | - $invoice_url = get_edit_post_link( $invoice ); |
|
| 267 | - $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
| 265 | + if (!empty($invoice)) { |
|
| 266 | + $invoice_url = get_edit_post_link($invoice); |
|
| 267 | + $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __('View Invoice', 'invoicing') . '</a>'; |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - $delete_url = esc_url( |
|
| 270 | + $delete_url = esc_url( |
|
| 271 | 271 | wp_nonce_url( |
| 272 | 272 | add_query_arg( |
| 273 | 273 | array( |
@@ -279,11 +279,11 @@ discard block |
||
| 279 | 279 | 'getpaid-nonce' |
| 280 | 280 | ) |
| 281 | 281 | ); |
| 282 | - $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
| 282 | + $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __('Delete Subscription', 'invoicing') . '</a>'; |
|
| 283 | 283 | |
| 284 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
| 284 | + $row_actions = $this->row_actions(apply_filters('getpaid_subscription_table_row_actions', $row_actions, $item)); |
|
| 285 | 285 | |
| 286 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
| 286 | + return "<strong>$column_content</strong>" . $this->column_amount($item) . $row_actions; |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | /** |
@@ -293,8 +293,8 @@ discard block |
||
| 293 | 293 | * @since 1.0.0 |
| 294 | 294 | * @return string |
| 295 | 295 | */ |
| 296 | - public function column_renewal_date( $item ) { |
|
| 297 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
| 296 | + public function column_renewal_date($item) { |
|
| 297 | + return getpaid_format_date_value($item->get_expiration()); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | /** |
@@ -304,27 +304,27 @@ discard block |
||
| 304 | 304 | * @since 1.0.0 |
| 305 | 305 | * @return string |
| 306 | 306 | */ |
| 307 | - public function column_start_date( $item ) { |
|
| 307 | + public function column_start_date($item) { |
|
| 308 | 308 | |
| 309 | 309 | $gateway = $item->get_parent_invoice()->get_gateway_title(); |
| 310 | 310 | |
| 311 | - if ( empty( $gateway ) ) { |
|
| 312 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
| 311 | + if (empty($gateway)) { |
|
| 312 | + return getpaid_format_date_value($item->get_date_created()); |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $item ); |
|
| 316 | - if ( ! empty( $url ) ) { |
|
| 315 | + $url = apply_filters('getpaid_remote_subscription_profile_url', '', $item); |
|
| 316 | + if (!empty($url)) { |
|
| 317 | 317 | |
| 318 | - return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 319 | - __( 'Via %s', 'invoicing' ), |
|
| 320 | - '<strong><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</a></strong>' |
|
| 318 | + return getpaid_format_date_value($item->get_date_created()) . '<br>' . sprintf( |
|
| 319 | + __('Via %s', 'invoicing'), |
|
| 320 | + '<strong><a href="' . esc_url($url) . '" target="_blank">' . esc_html($item->get_parent_invoice()->get_gateway_title()) . '</a></strong>' |
|
| 321 | 321 | ); |
| 322 | 322 | |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 326 | - __( 'Via %s', 'invoicing' ), |
|
| 327 | - '<strong>' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</strong>' |
|
| 325 | + return getpaid_format_date_value($item->get_date_created()) . '<br>' . sprintf( |
|
| 326 | + __('Via %s', 'invoicing'), |
|
| 327 | + '<strong>' . esc_html($item->get_parent_invoice()->get_gateway_title()) . '</strong>' |
|
| 328 | 328 | ); |
| 329 | 329 | |
| 330 | 330 | } |
@@ -336,8 +336,8 @@ discard block |
||
| 336 | 336 | * @since 1.0.19 |
| 337 | 337 | * @return string |
| 338 | 338 | */ |
| 339 | - public static function column_amount( $item ) { |
|
| 340 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
| 339 | + public static function column_amount($item) { |
|
| 340 | + $amount = getpaid_get_formatted_subscription_amount($item); |
|
| 341 | 341 | return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
| 342 | 342 | } |
| 343 | 343 | |
@@ -348,9 +348,9 @@ discard block |
||
| 348 | 348 | * @since 1.0.0 |
| 349 | 349 | * @return string |
| 350 | 350 | */ |
| 351 | - public function column_renewals( $item ) { |
|
| 351 | + public function column_renewals($item) { |
|
| 352 | 352 | $max_bills = $item->get_bill_times(); |
| 353 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 353 | + return $item->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | /** |
@@ -360,15 +360,15 @@ discard block |
||
| 360 | 360 | * @since 1.0.0 |
| 361 | 361 | * @return string |
| 362 | 362 | */ |
| 363 | - public function column_item( $item ) { |
|
| 364 | - $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
| 363 | + public function column_item($item) { |
|
| 364 | + $subscription_group = getpaid_get_invoice_subscription_group($item->get_parent_invoice_id(), $item->get_id()); |
|
| 365 | 365 | |
| 366 | - if ( empty( $subscription_group ) ) { |
|
| 367 | - return $this->generate_item_markup( $item->get_product_id() ); |
|
| 366 | + if (empty($subscription_group)) { |
|
| 367 | + return $this->generate_item_markup($item->get_product_id()); |
|
| 368 | 368 | } |
| 369 | 369 | |
| 370 | - $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 371 | - return implode( ' | ', $markup ); |
|
| 370 | + $markup = array_map(array($this, 'generate_item_markup'), array_keys($subscription_group['items'])); |
|
| 371 | + return implode(' | ', $markup); |
|
| 372 | 372 | |
| 373 | 373 | } |
| 374 | 374 | |
@@ -379,16 +379,16 @@ discard block |
||
| 379 | 379 | * @since 1.0.0 |
| 380 | 380 | * @return string |
| 381 | 381 | */ |
| 382 | - public static function generate_item_markup( $item_id ) { |
|
| 383 | - $item = get_post( $item_id ); |
|
| 382 | + public static function generate_item_markup($item_id) { |
|
| 383 | + $item = get_post($item_id); |
|
| 384 | 384 | |
| 385 | - if ( ! empty( $item ) ) { |
|
| 386 | - $link = get_edit_post_link( $item ); |
|
| 387 | - $link = esc_url( $link ); |
|
| 388 | - $name = esc_html( get_the_title( $item ) ); |
|
| 385 | + if (!empty($item)) { |
|
| 386 | + $link = get_edit_post_link($item); |
|
| 387 | + $link = esc_url($link); |
|
| 388 | + $name = esc_html(get_the_title($item)); |
|
| 389 | 389 | return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
| 390 | 390 | } else { |
| 391 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
| 391 | + return sprintf(__('Item #%s', 'invoicing'), $item_id); |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | } |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | * @return int |
| 400 | 400 | */ |
| 401 | 401 | public function get_paged() { |
| 402 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 402 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | /** |
@@ -412,13 +412,13 @@ discard block |
||
| 412 | 412 | $hidden = array(); |
| 413 | 413 | $sortable = $this->get_sortable_columns(); |
| 414 | 414 | |
| 415 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 415 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 416 | 416 | |
| 417 | 417 | $this->set_pagination_args( |
| 418 | 418 | array( |
| 419 | 419 | 'total_items' => $this->current_total_count, |
| 420 | 420 | 'per_page' => $this->per_page, |
| 421 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
| 421 | + 'total_pages' => ceil($this->current_total_count / $this->per_page) |
|
| 422 | 422 | ) |
| 423 | 423 | ); |
| 424 | 424 | } |
@@ -428,18 +428,18 @@ discard block |
||
| 428 | 428 | * |
| 429 | 429 | * @return array |
| 430 | 430 | */ |
| 431 | - public function get_columns(){ |
|
| 431 | + public function get_columns() { |
|
| 432 | 432 | $columns = array( |
| 433 | 433 | 'cb' => '<input type="checkbox" />', |
| 434 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 435 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 436 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 437 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 438 | - 'item' => __( 'Items', 'invoicing' ), |
|
| 439 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 434 | + 'subscription' => __('Subscription', 'invoicing'), |
|
| 435 | + 'start_date' => __('Start Date', 'invoicing'), |
|
| 436 | + 'renewal_date' => __('Next Payment', 'invoicing'), |
|
| 437 | + 'renewals' => __('Payments', 'invoicing'), |
|
| 438 | + 'item' => __('Items', 'invoicing'), |
|
| 439 | + 'status' => __('Status', 'invoicing'), |
|
| 440 | 440 | ); |
| 441 | 441 | |
| 442 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
| 442 | + return apply_filters('manage_getpaid_subscriptions_table_columns', $columns); |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | /** |
@@ -449,15 +449,15 @@ discard block |
||
| 449 | 449 | */ |
| 450 | 450 | public function get_sortable_columns() { |
| 451 | 451 | $sortable = array( |
| 452 | - 'subscription' => array( 'id', true ), |
|
| 453 | - 'start_date' => array( 'created', true ), |
|
| 454 | - 'renewal_date' => array( 'expiration', true ), |
|
| 455 | - 'renewals' => array( 'bill_times', true ), |
|
| 456 | - 'item' => array( 'product_id', true ), |
|
| 457 | - 'status' => array( 'status', true ), |
|
| 452 | + 'subscription' => array('id', true), |
|
| 453 | + 'start_date' => array('created', true), |
|
| 454 | + 'renewal_date' => array('expiration', true), |
|
| 455 | + 'renewals' => array('bill_times', true), |
|
| 456 | + 'item' => array('product_id', true), |
|
| 457 | + 'status' => array('status', true), |
|
| 458 | 458 | ); |
| 459 | 459 | |
| 460 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
| 460 | + return apply_filters('manage_getpaid_subscriptions_sortable_table_columns', $sortable); |
|
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | /** |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | * @return bool |
| 467 | 467 | */ |
| 468 | 468 | public function has_items() { |
| 469 | - return ! empty( $this->current_total_count ); |
|
| 469 | + return !empty($this->current_total_count); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | 472 | /** |
@@ -7,65 +7,65 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( !defined( 'WPINC' ) ) { |
|
| 11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | -function wpinv_bulk_actions( $actions ) { |
|
| 15 | - if ( isset( $actions['edit'] ) ) { |
|
| 16 | - unset( $actions['edit'] ); |
|
| 14 | +function wpinv_bulk_actions($actions) { |
|
| 15 | + if (isset($actions['edit'])) { |
|
| 16 | + unset($actions['edit']); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | return $actions; |
| 20 | 20 | } |
| 21 | -add_filter( 'bulk_actions-edit-wpi_invoice', 'wpinv_bulk_actions' ); |
|
| 22 | -add_filter( 'bulk_actions-edit-wpi_item', 'wpinv_bulk_actions' ); |
|
| 21 | +add_filter('bulk_actions-edit-wpi_invoice', 'wpinv_bulk_actions'); |
|
| 22 | +add_filter('bulk_actions-edit-wpi_item', 'wpinv_bulk_actions'); |
|
| 23 | 23 | |
| 24 | -function wpinv_admin_post_id( $id = 0 ) { |
|
| 24 | +function wpinv_admin_post_id($id = 0) { |
|
| 25 | 25 | global $post; |
| 26 | 26 | |
| 27 | - if ( isset( $id ) && ! empty( $id ) ) { |
|
| 28 | - return (int)$id; |
|
| 29 | - } else if ( get_the_ID() ) { |
|
| 27 | + if (isset($id) && !empty($id)) { |
|
| 28 | + return (int) $id; |
|
| 29 | + } else if (get_the_ID()) { |
|
| 30 | 30 | return (int) get_the_ID(); |
| 31 | - } else if ( isset( $post->ID ) && !empty( $post->ID ) ) { |
|
| 31 | + } else if (isset($post->ID) && !empty($post->ID)) { |
|
| 32 | 32 | return (int) $post->ID; |
| 33 | - } else if ( isset( $_GET['post'] ) && !empty( $_GET['post'] ) ) { |
|
| 33 | + } else if (isset($_GET['post']) && !empty($_GET['post'])) { |
|
| 34 | 34 | return (int) $_GET['post']; |
| 35 | - } else if ( isset( $_GET['id'] ) && !empty( $_GET['id'] ) ) { |
|
| 35 | + } else if (isset($_GET['id']) && !empty($_GET['id'])) { |
|
| 36 | 36 | return (int) $_GET['id']; |
| 37 | - } else if ( isset( $_POST['id'] ) && !empty( $_POST['id'] ) ) { |
|
| 37 | + } else if (isset($_POST['id']) && !empty($_POST['id'])) { |
|
| 38 | 38 | return (int) $_POST['id']; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | return null; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | -function wpinv_admin_post_type( $id = 0 ) { |
|
| 45 | - if ( !$id ) { |
|
| 44 | +function wpinv_admin_post_type($id = 0) { |
|
| 45 | + if (!$id) { |
|
| 46 | 46 | $id = wpinv_admin_post_id(); |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - $type = get_post_type( $id ); |
|
| 49 | + $type = get_post_type($id); |
|
| 50 | 50 | |
| 51 | - if ( !$type ) { |
|
| 52 | - $type = isset( $_GET['post_type'] ) && !empty( $_GET['post_type'] ) ? sanitize_text_field( $_GET['post_type'] ) : null; |
|
| 51 | + if (!$type) { |
|
| 52 | + $type = isset($_GET['post_type']) && !empty($_GET['post_type']) ? sanitize_text_field($_GET['post_type']) : null; |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - return apply_filters( 'wpinv_admin_post_type', $type, $id ); |
|
| 55 | + return apply_filters('wpinv_admin_post_type', $type, $id); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | function wpinv_admin_messages() { |
| 59 | - settings_errors( 'wpinv-notices' ); |
|
| 59 | + settings_errors('wpinv-notices'); |
|
| 60 | 60 | } |
| 61 | -add_action( 'admin_notices', 'wpinv_admin_messages' ); |
|
| 61 | +add_action('admin_notices', 'wpinv_admin_messages'); |
|
| 62 | 62 | |
| 63 | -add_action( 'admin_init', 'wpinv_show_test_payment_gateway_notice' ); |
|
| 64 | -function wpinv_show_test_payment_gateway_notice(){ |
|
| 65 | - add_action( 'admin_notices', 'wpinv_test_payment_gateway_messages' ); |
|
| 63 | +add_action('admin_init', 'wpinv_show_test_payment_gateway_notice'); |
|
| 64 | +function wpinv_show_test_payment_gateway_notice() { |
|
| 65 | + add_action('admin_notices', 'wpinv_test_payment_gateway_messages'); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | -function wpinv_test_payment_gateway_messages(){ |
|
| 68 | +function wpinv_test_payment_gateway_messages() { |
|
| 69 | 69 | $gateways = wpinv_get_enabled_payment_gateways(); |
| 70 | 70 | $name = array(); $test_gateways = ''; |
| 71 | 71 | if ($gateways) { |
@@ -76,9 +76,9 @@ discard block |
||
| 76 | 76 | } |
| 77 | 77 | $test_gateways = implode(', ', $name); |
| 78 | 78 | } |
| 79 | - if(isset($test_gateways) && !empty($test_gateways) && wpinv_current_user_can_manage_invoicing()){ |
|
| 79 | + if (isset($test_gateways) && !empty($test_gateways) && wpinv_current_user_can_manage_invoicing()) { |
|
| 80 | 80 | $link = admin_url('admin.php?page=wpinv-settings&tab=gateways'); |
| 81 | - $notice = wp_sprintf( __('<strong>Important:</strong> Payment Gateway(s) %s are in testing mode and will not receive real payments. Go to <a href="%s"> Gateway Settings</a>.', 'invoicing'), $test_gateways, $link ); |
|
| 81 | + $notice = wp_sprintf(__('<strong>Important:</strong> Payment Gateway(s) %s are in testing mode and will not receive real payments. Go to <a href="%s"> Gateway Settings</a>.', 'invoicing'), $test_gateways, $link); |
|
| 82 | 82 | ?> |
| 83 | 83 | <div class="notice notice-warning is-dismissible"> |
| 84 | 84 | <p><?php echo $notice; ?></p> |
@@ -95,29 +95,29 @@ discard block |
||
| 95 | 95 | global $wpdb; |
| 96 | 96 | |
| 97 | 97 | // Only do this on our settings page. |
| 98 | - if ( empty( $_GET[ 'page' ] ) || 'wpinv-settings' !== $_GET[ 'page' ] ) { |
|
| 98 | + if (empty($_GET['page']) || 'wpinv-settings' !== $_GET['page']) { |
|
| 99 | 99 | return; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | // Check tables. |
| 103 | - $tables = array( |
|
| 103 | + $tables = array( |
|
| 104 | 104 | "{$wpdb->prefix}wpinv_subscriptions", |
| 105 | 105 | "{$wpdb->prefix}getpaid_invoices", |
| 106 | 106 | "{$wpdb->prefix}getpaid_invoice_items", |
| 107 | 107 | ); |
| 108 | 108 | |
| 109 | - foreach ( $tables as $table ) { |
|
| 110 | - if ( $table != $wpdb->get_var( "SHOW TABLES LIKE '$table'" ) ) { |
|
| 109 | + foreach ($tables as $table) { |
|
| 110 | + if ($table != $wpdb->get_var("SHOW TABLES LIKE '$table'")) { |
|
| 111 | 111 | |
| 112 | - $url = esc_url( |
|
| 112 | + $url = esc_url( |
|
| 113 | 113 | wp_nonce_url( |
| 114 | - add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 114 | + add_query_arg('getpaid-admin-action', 'create_missing_tables'), |
|
| 115 | 115 | 'getpaid-nonce', |
| 116 | 116 | 'getpaid-nonce' |
| 117 | 117 | ) |
| 118 | 118 | ); |
| 119 | - $message = __( 'Some GetPaid database tables are missing. To use GetPaid without any issues, click on the button below to create the missing tables.', 'invoicing' ); |
|
| 120 | - $message2 = __( 'Create Tables', 'invoicing' ); |
|
| 119 | + $message = __('Some GetPaid database tables are missing. To use GetPaid without any issues, click on the button below to create the missing tables.', 'invoicing'); |
|
| 120 | + $message2 = __('Create Tables', 'invoicing'); |
|
| 121 | 121 | echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>"; |
| 122 | 122 | break; |
| 123 | 123 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | } |
| 128 | -add_action( 'admin_notices', 'wpinv_check_for_missing_tables' ); |
|
| 128 | +add_action('admin_notices', 'wpinv_check_for_missing_tables'); |
|
| 129 | 129 | |
| 130 | 130 | add_action('admin_init', 'wpinv_admin_search_by_invoice'); |
| 131 | 131 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | function wpinv_admin_search_by_invoice() { |
| 136 | 136 | global $typenow; |
| 137 | 137 | |
| 138 | - if ($typenow === 'wpi_invoice' || $typenow === 'wpi_quote' ) { |
|
| 138 | + if ($typenow === 'wpi_invoice' || $typenow === 'wpi_quote') { |
|
| 139 | 139 | add_filter('posts_search', 'wpinv_posts_search_example_type', 10, 2); |
| 140 | 140 | } |
| 141 | 141 | } |
@@ -150,9 +150,9 @@ discard block |
||
| 150 | 150 | global $wpdb; |
| 151 | 151 | |
| 152 | 152 | if ($query->is_main_query() && !empty($query->query['s'])) { |
| 153 | - $conditions_str = "{$wpdb->posts}.post_author IN ( SELECT ID FROM {$wpdb->users} WHERE user_email LIKE '%" . esc_sql( $query->query['s'] ) . "%' )"; |
|
| 154 | - if ( ! empty( $search ) ) { |
|
| 155 | - $search = preg_replace( '/^ AND /', '', $search ); |
|
| 153 | + $conditions_str = "{$wpdb->posts}.post_author IN ( SELECT ID FROM {$wpdb->users} WHERE user_email LIKE '%" . esc_sql($query->query['s']) . "%' )"; |
|
| 154 | + if (!empty($search)) { |
|
| 155 | + $search = preg_replace('/^ AND /', '', $search); |
|
| 156 | 156 | $search = " AND ( {$search} OR ( {$conditions_str} ) )"; |
| 157 | 157 | } else { |
| 158 | 158 | $search = " AND ( {$conditions_str} )"; |
@@ -165,17 +165,17 @@ discard block |
||
| 165 | 165 | /** |
| 166 | 166 | * Resets invoice counts. |
| 167 | 167 | */ |
| 168 | -function wpinv_reset_invoice_count(){ |
|
| 169 | - if ( ! empty( $_GET['reset_invoice_count'] ) && isset( $_GET['_nonce'] ) && wp_verify_nonce( sanitize_text_field( $_GET['_nonce'] ), 'reset_invoice_count' ) ) { |
|
| 168 | +function wpinv_reset_invoice_count() { |
|
| 169 | + if (!empty($_GET['reset_invoice_count']) && isset($_GET['_nonce']) && wp_verify_nonce(sanitize_text_field($_GET['_nonce']), 'reset_invoice_count')) { |
|
| 170 | 170 | wpinv_update_option('invoice_sequence_start', 1); |
| 171 | 171 | delete_option('wpinv_last_invoice_number'); |
| 172 | - getpaid_admin()->show_success( __( 'Invoice number sequence reset successfully.', 'invoicing' ) ); |
|
| 173 | - $url = remove_query_arg( array('reset_invoice_count', '_nonce') ); |
|
| 172 | + getpaid_admin()->show_success(__('Invoice number sequence reset successfully.', 'invoicing')); |
|
| 173 | + $url = remove_query_arg(array('reset_invoice_count', '_nonce')); |
|
| 174 | 174 | wp_redirect($url); |
| 175 | 175 | exit(); |
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | -add_action( 'admin_init', 'wpinv_reset_invoice_count' ); |
|
| 178 | +add_action('admin_init', 'wpinv_reset_invoice_count'); |
|
| 179 | 179 | |
| 180 | 180 | /** |
| 181 | 181 | * Displays line items on the invoice edit page. |
@@ -184,29 +184,29 @@ discard block |
||
| 184 | 184 | * @param array $columns |
| 185 | 185 | * @return string |
| 186 | 186 | */ |
| 187 | -function wpinv_admin_get_line_items( $invoice, $columns ) { |
|
| 187 | +function wpinv_admin_get_line_items($invoice, $columns) { |
|
| 188 | 188 | |
| 189 | 189 | ob_start(); |
| 190 | 190 | |
| 191 | - do_action( 'getpaid_admin_before_line_items', $invoice ); |
|
| 191 | + do_action('getpaid_admin_before_line_items', $invoice); |
|
| 192 | 192 | |
| 193 | 193 | $count = 0; |
| 194 | - foreach ( $invoice->get_items() as $item ) { |
|
| 194 | + foreach ($invoice->get_items() as $item) { |
|
| 195 | 195 | |
| 196 | - $item_price = wpinv_price( $item->get_price(), $invoice->get_currency() ); |
|
| 196 | + $item_price = wpinv_price($item->get_price(), $invoice->get_currency()); |
|
| 197 | 197 | $quantity = (int) $item->get_quantity(); |
| 198 | - $item_subtotal = wpinv_price( $item->get_sub_total(), $invoice->get_currency() ); |
|
| 199 | - $summary = apply_filters( 'getpaid_admin_invoice_line_item_summary', $item->get_description(), $item, $invoice ); |
|
| 198 | + $item_subtotal = wpinv_price($item->get_sub_total(), $invoice->get_currency()); |
|
| 199 | + $summary = apply_filters('getpaid_admin_invoice_line_item_summary', $item->get_description(), $item, $invoice); |
|
| 200 | 200 | $item_tax = $item->item_tax; |
| 201 | - $tax_rate = wpinv_round_amount( getpaid_get_invoice_tax_rate( $invoice, $item ), 2, true ) . '%';; |
|
| 202 | - $tax_rate = empty( $tax_rate ) ? ' <span class="tax-rate">(' . $tax_rate . '%)</span>' : ''; |
|
| 201 | + $tax_rate = wpinv_round_amount(getpaid_get_invoice_tax_rate($invoice, $item), 2, true) . '%'; ; |
|
| 202 | + $tax_rate = empty($tax_rate) ? ' <span class="tax-rate">(' . $tax_rate . '%)</span>' : ''; |
|
| 203 | 203 | $line_item_tax = $item_tax . $tax_rate; |
| 204 | - $line_item = '<tr class="item item-' . ( ($count % 2 == 0) ? 'even' : 'odd' ) . '" data-item-id="' . esc_attr( $item->get_id() ) . '">'; |
|
| 204 | + $line_item = '<tr class="item item-' . (($count % 2 == 0) ? 'even' : 'odd') . '" data-item-id="' . esc_attr($item->get_id()) . '">'; |
|
| 205 | 205 | $line_item .= '<td class="id">' . (int) $item->get_id() . '</td>'; |
| 206 | - $line_item .= '<td class="title"><a href="' . get_edit_post_link( $item->get_id() ) . '" target="_blank">' . $item->get_name() . '</a>'; |
|
| 206 | + $line_item .= '<td class="title"><a href="' . get_edit_post_link($item->get_id()) . '" target="_blank">' . $item->get_name() . '</a>'; |
|
| 207 | 207 | |
| 208 | - if ( $summary !== '' ) { |
|
| 209 | - $line_item .= '<span class="meta">' . wpautop( wp_kses_post( $summary ) ) . '</span>'; |
|
| 208 | + if ($summary !== '') { |
|
| 209 | + $line_item .= '<span class="meta">' . wpautop(wp_kses_post($summary)) . '</span>'; |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | $line_item .= '</td>'; |
@@ -214,23 +214,23 @@ discard block |
||
| 214 | 214 | $line_item .= '<td class="qty" data-quantity="' . $quantity . '"> × ' . $quantity . '</td>'; |
| 215 | 215 | $line_item .= '<td class="total">' . $item_subtotal . '</td>'; |
| 216 | 216 | |
| 217 | - if ( wpinv_use_taxes() && $invoice->is_taxable() ) { |
|
| 217 | + if (wpinv_use_taxes() && $invoice->is_taxable()) { |
|
| 218 | 218 | $line_item .= '<td class="tax">' . $line_item_tax . '</td>'; |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | $line_item .= '<td class="action">'; |
| 222 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 222 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
| 223 | 223 | $line_item .= '<i class="fa fa-remove wpinv-item-remove"></i>'; |
| 224 | 224 | } |
| 225 | 225 | $line_item .= '</td>'; |
| 226 | 226 | $line_item .= '</tr>'; |
| 227 | 227 | |
| 228 | - echo apply_filters( 'getpaid_admin_line_item', $line_item, $item, $invoice ); |
|
| 228 | + echo apply_filters('getpaid_admin_line_item', $line_item, $item, $invoice); |
|
| 229 | 229 | |
| 230 | 230 | $count++; |
| 231 | 231 | } |
| 232 | 232 | |
| 233 | - do_action( 'getpaid_admin_after_line_items', $invoice ); |
|
| 233 | + do_action('getpaid_admin_after_line_items', $invoice); |
|
| 234 | 234 | |
| 235 | 235 | return ob_get_clean(); |
| 236 | 236 | } |
@@ -14,91 +14,91 @@ discard block |
||
| 14 | 14 | class GetPaid_Admin { |
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | - * Local path to this plugins admin directory |
|
| 18 | - * |
|
| 19 | - * @var string |
|
| 20 | - */ |
|
| 21 | - public $admin_path; |
|
| 22 | - |
|
| 23 | - /** |
|
| 24 | - * Web path to this plugins admin directory |
|
| 25 | - * |
|
| 26 | - * @var string |
|
| 27 | - */ |
|
| 28 | - public $admin_url; |
|
| 17 | + * Local path to this plugins admin directory |
|
| 18 | + * |
|
| 19 | + * @var string |
|
| 20 | + */ |
|
| 21 | + public $admin_path; |
|
| 22 | + |
|
| 23 | + /** |
|
| 24 | + * Web path to this plugins admin directory |
|
| 25 | + * |
|
| 26 | + * @var string |
|
| 27 | + */ |
|
| 28 | + public $admin_url; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * Reports components. |
|
| 32 | - * |
|
| 33 | - * @var GetPaid_Reports |
|
| 34 | - */ |
|
| 30 | + /** |
|
| 31 | + * Reports components. |
|
| 32 | + * |
|
| 33 | + * @var GetPaid_Reports |
|
| 34 | + */ |
|
| 35 | 35 | public $reports; |
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | - * Class constructor. |
|
| 39 | - */ |
|
| 40 | - public function __construct(){ |
|
| 38 | + * Class constructor. |
|
| 39 | + */ |
|
| 40 | + public function __construct(){ |
|
| 41 | 41 | |
| 42 | 42 | $this->admin_path = plugin_dir_path( __FILE__ ); |
| 43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 44 | - $this->reports = new GetPaid_Reports(); |
|
| 43 | + $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 44 | + $this->reports = new GetPaid_Reports(); |
|
| 45 | 45 | |
| 46 | 46 | if ( is_admin() ) { |
| 47 | - $this->init_admin_hooks(); |
|
| 47 | + $this->init_admin_hooks(); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | - * Init action and filter hooks |
|
| 54 | - * |
|
| 55 | - */ |
|
| 56 | - private function init_admin_hooks() { |
|
| 53 | + * Init action and filter hooks |
|
| 54 | + * |
|
| 55 | + */ |
|
| 56 | + private function init_admin_hooks() { |
|
| 57 | 57 | add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ), 9 ); |
| 58 | 58 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
| 59 | 59 | add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
| 60 | 60 | add_action( 'admin_init', array( $this, 'activation_redirect') ); |
| 61 | 61 | add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
| 62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | - add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | - add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 62 | + add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | + add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | + add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | + add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | + add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | + add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 68 | 68 | add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
| 69 | - add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | - add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 71 | - add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 72 | - add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 73 | - add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 74 | - add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 75 | - add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 76 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 77 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 78 | - |
|
| 79 | - // Setup/welcome |
|
| 80 | - if ( ! empty( $_GET['page'] ) ) { |
|
| 81 | - switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 82 | - case 'gp-setup' : |
|
| 83 | - include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' ); |
|
| 84 | - break; |
|
| 85 | - } |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Register admin scripts |
|
| 92 | - * |
|
| 93 | - */ |
|
| 94 | - public function enqeue_scripts() { |
|
| 69 | + add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | + add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 71 | + add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 72 | + add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 73 | + add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 74 | + add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 75 | + add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 76 | + add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 77 | + do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 78 | + |
|
| 79 | + // Setup/welcome |
|
| 80 | + if ( ! empty( $_GET['page'] ) ) { |
|
| 81 | + switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 82 | + case 'gp-setup' : |
|
| 83 | + include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' ); |
|
| 84 | + break; |
|
| 85 | + } |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Register admin scripts |
|
| 92 | + * |
|
| 93 | + */ |
|
| 94 | + public function enqeue_scripts() { |
|
| 95 | 95 | global $current_screen, $pagenow; |
| 96 | 96 | |
| 97 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 98 | - $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
| 97 | + $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 98 | + $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
| 99 | 99 | |
| 100 | 100 | if ( ! empty( $current_screen->post_type ) ) { |
| 101 | - $page = $current_screen->post_type; |
|
| 101 | + $page = $current_screen->post_type; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | // General styles. |
@@ -119,54 +119,54 @@ discard block |
||
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | // Payment form scripts. |
| 122 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 122 | + if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 123 | 123 | $this->load_payment_form_scripts(); |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - if ( $page == 'wpinv-subscriptions' ) { |
|
| 127 | - wp_enqueue_script( 'postbox' ); |
|
| 128 | - } |
|
| 126 | + if ( $page == 'wpinv-subscriptions' ) { |
|
| 127 | + wp_enqueue_script( 'postbox' ); |
|
| 128 | + } |
|
| 129 | 129 | |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
| 133 | - * Returns admin js translations. |
|
| 134 | - * |
|
| 135 | - */ |
|
| 136 | - protected function get_admin_i18() { |
|
| 133 | + * Returns admin js translations. |
|
| 134 | + * |
|
| 135 | + */ |
|
| 136 | + protected function get_admin_i18() { |
|
| 137 | 137 | global $post; |
| 138 | 138 | |
| 139 | - $date_range = array( |
|
| 140 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
| 141 | - ); |
|
| 139 | + $date_range = array( |
|
| 140 | + 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
| 141 | + ); |
|
| 142 | 142 | |
| 143 | - if ( $date_range['period'] == 'custom' ) { |
|
| 143 | + if ( $date_range['period'] == 'custom' ) { |
|
| 144 | 144 | |
| 145 | - if ( isset( $_GET['from'] ) ) { |
|
| 146 | - $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 147 | - } |
|
| 145 | + if ( isset( $_GET['from'] ) ) { |
|
| 146 | + $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 147 | + } |
|
| 148 | 148 | |
| 149 | - if ( isset( $_GET['to'] ) ) { |
|
| 150 | - $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 151 | - } |
|
| 149 | + if ( isset( $_GET['to'] ) ) { |
|
| 150 | + $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 151 | + } |
|
| 152 | 152 | |
| 153 | - } |
|
| 153 | + } |
|
| 154 | 154 | |
| 155 | 155 | $i18n = array( |
| 156 | 156 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
| 157 | 157 | 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
| 158 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 159 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 160 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
| 161 | - 'date_range' => $date_range, |
|
| 158 | + 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 159 | + 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 160 | + 'rest_root' => esc_url_raw( rest_url() ), |
|
| 161 | + 'date_range' => $date_range, |
|
| 162 | 162 | 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
| 163 | 163 | 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
| 164 | 164 | 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
| 165 | 165 | 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
| 166 | 166 | 'tax' => wpinv_tax_amount(), |
| 167 | 167 | 'discount' => 0, |
| 168 | - 'currency_symbol' => wpinv_currency_symbol(), |
|
| 169 | - 'currency' => wpinv_get_currency(), |
|
| 168 | + 'currency_symbol' => wpinv_currency_symbol(), |
|
| 169 | + 'currency' => wpinv_get_currency(), |
|
| 170 | 170 | 'currency_pos' => wpinv_currency_position(), |
| 171 | 171 | 'thousand_sep' => wpinv_thousands_separator(), |
| 172 | 172 | 'decimal_sep' => wpinv_decimal_separator(), |
@@ -186,119 +186,119 @@ discard block |
||
| 186 | 186 | 'item_description' => __( 'Item Description', 'invoicing' ), |
| 187 | 187 | 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
| 188 | 188 | 'discount_description' => __( 'Discount Description', 'invoicing' ), |
| 189 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
| 190 | - 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 191 | - 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 192 | - 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 193 | - 'graphs' => array_merge( ['refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax'], array_keys( wpinv_get_report_graphs() ) ), |
|
| 189 | + 'searching' => __( 'Searching', 'invoicing' ), |
|
| 190 | + 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 191 | + 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 192 | + 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 193 | + 'graphs' => array_merge( ['refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax'], array_keys( wpinv_get_report_graphs() ) ), |
|
| 194 | 194 | ); |
| 195 | 195 | |
| 196 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 196 | + if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 197 | 197 | |
| 198 | - $invoice = new WPInv_Invoice( $post ); |
|
| 199 | - $i18n['save_invoice'] = sprintf( |
|
| 200 | - __( 'Save %s', 'invoicing' ), |
|
| 201 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 202 | - ); |
|
| 198 | + $invoice = new WPInv_Invoice( $post ); |
|
| 199 | + $i18n['save_invoice'] = sprintf( |
|
| 200 | + __( 'Save %s', 'invoicing' ), |
|
| 201 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 202 | + ); |
|
| 203 | 203 | |
| 204 | - $i18n['invoice_description'] = sprintf( |
|
| 205 | - __( '%s Description', 'invoicing' ), |
|
| 206 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 207 | - ); |
|
| 204 | + $i18n['invoice_description'] = sprintf( |
|
| 205 | + __( '%s Description', 'invoicing' ), |
|
| 206 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 207 | + ); |
|
| 208 | 208 | |
| 209 | - } |
|
| 210 | - return $i18n; |
|
| 211 | - } |
|
| 209 | + } |
|
| 210 | + return $i18n; |
|
| 211 | + } |
|
| 212 | 212 | |
| 213 | - /** |
|
| 214 | - * Change the admin footer text on GetPaid admin pages. |
|
| 215 | - * |
|
| 216 | - * @since 2.0.0 |
|
| 217 | - * @param string $footer_text |
|
| 218 | - * @return string |
|
| 219 | - */ |
|
| 220 | - public function admin_footer_text( $footer_text ) { |
|
| 221 | - global $current_screen; |
|
| 213 | + /** |
|
| 214 | + * Change the admin footer text on GetPaid admin pages. |
|
| 215 | + * |
|
| 216 | + * @since 2.0.0 |
|
| 217 | + * @param string $footer_text |
|
| 218 | + * @return string |
|
| 219 | + */ |
|
| 220 | + public function admin_footer_text( $footer_text ) { |
|
| 221 | + global $current_screen; |
|
| 222 | 222 | |
| 223 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 223 | + $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 224 | 224 | |
| 225 | 225 | if ( ! empty( $current_screen->post_type ) ) { |
| 226 | - $page = $current_screen->post_type; |
|
| 226 | + $page = $current_screen->post_type; |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | // General styles. |
| 230 | 230 | if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
| 231 | 231 | |
| 232 | - // Change the footer text |
|
| 233 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 234 | - |
|
| 235 | - $rating_url = esc_url( |
|
| 236 | - wp_nonce_url( |
|
| 237 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 238 | - 'getpaid-nonce', |
|
| 239 | - 'getpaid-nonce' |
|
| 240 | - ) |
|
| 241 | - ); |
|
| 242 | - |
|
| 243 | - $footer_text = sprintf( |
|
| 244 | - /* translators: %s: five stars */ |
|
| 245 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 246 | - "<a href='$rating_url'>★★★★★</a>" |
|
| 247 | - ); |
|
| 248 | - |
|
| 249 | - } else { |
|
| 250 | - |
|
| 251 | - $footer_text = sprintf( |
|
| 252 | - /* translators: %s: GetPaid */ |
|
| 253 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
| 254 | - "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
| 255 | - ); |
|
| 256 | - |
|
| 257 | - } |
|
| 258 | - |
|
| 259 | - } |
|
| 260 | - |
|
| 261 | - return $footer_text; |
|
| 262 | - } |
|
| 263 | - |
|
| 264 | - /** |
|
| 265 | - * Redirects to wp.org to rate the plugin. |
|
| 266 | - * |
|
| 267 | - * @since 2.0.0 |
|
| 268 | - */ |
|
| 269 | - public function redirect_to_wordpress_rating_page() { |
|
| 270 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 271 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 272 | - exit; |
|
| 273 | - } |
|
| 274 | - |
|
| 275 | - /** |
|
| 276 | - * Loads payment form js. |
|
| 277 | - * |
|
| 278 | - */ |
|
| 279 | - protected function load_payment_form_scripts() { |
|
| 232 | + // Change the footer text |
|
| 233 | + if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 234 | + |
|
| 235 | + $rating_url = esc_url( |
|
| 236 | + wp_nonce_url( |
|
| 237 | + admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 238 | + 'getpaid-nonce', |
|
| 239 | + 'getpaid-nonce' |
|
| 240 | + ) |
|
| 241 | + ); |
|
| 242 | + |
|
| 243 | + $footer_text = sprintf( |
|
| 244 | + /* translators: %s: five stars */ |
|
| 245 | + __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 246 | + "<a href='$rating_url'>★★★★★</a>" |
|
| 247 | + ); |
|
| 248 | + |
|
| 249 | + } else { |
|
| 250 | + |
|
| 251 | + $footer_text = sprintf( |
|
| 252 | + /* translators: %s: GetPaid */ |
|
| 253 | + __( 'Thank you for using %s!', 'invoicing' ), |
|
| 254 | + "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
| 255 | + ); |
|
| 256 | + |
|
| 257 | + } |
|
| 258 | + |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + return $footer_text; |
|
| 262 | + } |
|
| 263 | + |
|
| 264 | + /** |
|
| 265 | + * Redirects to wp.org to rate the plugin. |
|
| 266 | + * |
|
| 267 | + * @since 2.0.0 |
|
| 268 | + */ |
|
| 269 | + public function redirect_to_wordpress_rating_page() { |
|
| 270 | + update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 271 | + wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 272 | + exit; |
|
| 273 | + } |
|
| 274 | + |
|
| 275 | + /** |
|
| 276 | + * Loads payment form js. |
|
| 277 | + * |
|
| 278 | + */ |
|
| 279 | + protected function load_payment_form_scripts() { |
|
| 280 | 280 | global $post; |
| 281 | 281 | |
| 282 | 282 | wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION ); |
| 283 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 284 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 283 | + wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 284 | + wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 285 | 285 | |
| 286 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 287 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 286 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 287 | + wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 288 | 288 | |
| 289 | - wp_localize_script( |
|
| 289 | + wp_localize_script( |
|
| 290 | 290 | 'wpinv-admin-payment-form-script', |
| 291 | 291 | 'wpinvPaymentFormAdmin', |
| 292 | 292 | array( |
| 293 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 294 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 295 | - 'currency' => wpinv_currency_symbol(), |
|
| 296 | - 'position' => wpinv_currency_position(), |
|
| 297 | - 'decimals' => (int) wpinv_decimals(), |
|
| 298 | - 'thousands_sep' => wpinv_thousands_separator(), |
|
| 299 | - 'decimals_sep' => wpinv_decimal_separator(), |
|
| 300 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 301 | - 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
| 293 | + 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 294 | + 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 295 | + 'currency' => wpinv_currency_symbol(), |
|
| 296 | + 'position' => wpinv_currency_position(), |
|
| 297 | + 'decimals' => (int) wpinv_decimals(), |
|
| 298 | + 'thousands_sep' => wpinv_thousands_separator(), |
|
| 299 | + 'decimals_sep' => wpinv_decimal_separator(), |
|
| 300 | + 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 301 | + 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
| 302 | 302 | ) |
| 303 | 303 | ); |
| 304 | 304 | |
@@ -307,20 +307,20 @@ discard block |
||
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | /** |
| 310 | - * Add our classes to admin pages. |
|
| 310 | + * Add our classes to admin pages. |
|
| 311 | 311 | * |
| 312 | 312 | * @param string $classes |
| 313 | 313 | * @return string |
| 314 | - * |
|
| 315 | - */ |
|
| 314 | + * |
|
| 315 | + */ |
|
| 316 | 316 | public function admin_body_class( $classes ) { |
| 317 | - global $pagenow, $post, $current_screen; |
|
| 317 | + global $pagenow, $post, $current_screen; |
|
| 318 | 318 | |
| 319 | 319 | |
| 320 | 320 | $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
| 321 | 321 | |
| 322 | 322 | if ( ! empty( $current_screen->post_type ) ) { |
| 323 | - $page = $current_screen->post_type; |
|
| 323 | + $page = $current_screen->post_type; |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | if ( false !== stripos( $page, 'wpi' ) ) { |
@@ -329,68 +329,68 @@ discard block |
||
| 329 | 329 | |
| 330 | 330 | if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
| 331 | 331 | $classes .= ' wpinv-cpt wpinv'; |
| 332 | - } |
|
| 332 | + } |
|
| 333 | 333 | |
| 334 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 334 | + if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 335 | 335 | $classes .= ' getpaid-is-invoice-cpt'; |
| 336 | 336 | } |
| 337 | 337 | |
| 338 | - return $classes; |
|
| 338 | + return $classes; |
|
| 339 | 339 | } |
| 340 | 340 | |
| 341 | 341 | /** |
| 342 | - * Maybe show the AyeCode Connect Notice. |
|
| 343 | - */ |
|
| 344 | - public function init_ayecode_connect_helper(){ |
|
| 342 | + * Maybe show the AyeCode Connect Notice. |
|
| 343 | + */ |
|
| 344 | + public function init_ayecode_connect_helper(){ |
|
| 345 | 345 | |
| 346 | - // Register with the deactivation survey class. |
|
| 347 | - AyeCode_Deactivation_Survey::instance(array( |
|
| 348 | - 'slug' => 'invoicing', |
|
| 349 | - 'version' => WPINV_VERSION, |
|
| 350 | - 'support_url' => 'https://wpgetpaid.com/support/', |
|
| 351 | - 'documentation_url' => 'https://docs.wpgetpaid.com/', |
|
| 352 | - 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 353 | - )); |
|
| 346 | + // Register with the deactivation survey class. |
|
| 347 | + AyeCode_Deactivation_Survey::instance(array( |
|
| 348 | + 'slug' => 'invoicing', |
|
| 349 | + 'version' => WPINV_VERSION, |
|
| 350 | + 'support_url' => 'https://wpgetpaid.com/support/', |
|
| 351 | + 'documentation_url' => 'https://docs.wpgetpaid.com/', |
|
| 352 | + 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 353 | + )); |
|
| 354 | 354 | |
| 355 | 355 | new AyeCode_Connect_Helper( |
| 356 | 356 | array( |
| 357 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
| 358 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
| 359 | - 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
| 360 | - 'connect_button' => __("Connect Site","invoicing"), |
|
| 361 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
| 362 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
| 363 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
| 357 | + 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
| 358 | + 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
| 359 | + 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
| 360 | + 'connect_button' => __("Connect Site","invoicing"), |
|
| 361 | + 'connecting_button' => __("Connecting...","invoicing"), |
|
| 362 | + 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
| 363 | + 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
| 364 | 364 | ), |
| 365 | 365 | array( 'wpi-addons' ) |
| 366 | 366 | ); |
| 367 | 367 | |
| 368 | 368 | } |
| 369 | 369 | |
| 370 | - /** |
|
| 371 | - * Redirect users to settings on activation. |
|
| 372 | - * |
|
| 373 | - * @return void |
|
| 374 | - */ |
|
| 375 | - public function activation_redirect() { |
|
| 370 | + /** |
|
| 371 | + * Redirect users to settings on activation. |
|
| 372 | + * |
|
| 373 | + * @return void |
|
| 374 | + */ |
|
| 375 | + public function activation_redirect() { |
|
| 376 | 376 | |
| 377 | - $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 377 | + $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 378 | 378 | |
| 379 | - if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 380 | - return; |
|
| 381 | - } |
|
| 379 | + if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 380 | + return; |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - // Bail if activating from network, or bulk |
|
| 384 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 385 | - return; |
|
| 386 | - } |
|
| 383 | + // Bail if activating from network, or bulk |
|
| 384 | + if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 385 | + return; |
|
| 386 | + } |
|
| 387 | 387 | |
| 388 | - update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 388 | + update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 389 | 389 | |
| 390 | 390 | wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) ); |
| 391 | 391 | exit; |
| 392 | 392 | |
| 393 | - } |
|
| 393 | + } |
|
| 394 | 394 | |
| 395 | 395 | /** |
| 396 | 396 | * Fires an admin action after verifying that a user can fire them. |
@@ -404,532 +404,532 @@ discard block |
||
| 404 | 404 | |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | - /** |
|
| 407 | + /** |
|
| 408 | 408 | * Duplicate invoice. |
| 409 | - * |
|
| 410 | - * @param array $args |
|
| 409 | + * |
|
| 410 | + * @param array $args |
|
| 411 | 411 | */ |
| 412 | 412 | public function duplicate_invoice( $args ) { |
| 413 | 413 | |
| 414 | - if ( empty( $args['invoice_id'] ) ) { |
|
| 415 | - return; |
|
| 416 | - } |
|
| 414 | + if ( empty( $args['invoice_id'] ) ) { |
|
| 415 | + return; |
|
| 416 | + } |
|
| 417 | 417 | |
| 418 | - $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 418 | + $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 419 | 419 | |
| 420 | - if ( ! $invoice->exists() ) { |
|
| 421 | - return; |
|
| 422 | - } |
|
| 420 | + if ( ! $invoice->exists() ) { |
|
| 421 | + return; |
|
| 422 | + } |
|
| 423 | 423 | |
| 424 | - $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 425 | - $new_invoice->save(); |
|
| 424 | + $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 425 | + $new_invoice->save(); |
|
| 426 | 426 | |
| 427 | - if ( $new_invoice->exists() ) { |
|
| 427 | + if ( $new_invoice->exists() ) { |
|
| 428 | 428 | |
| 429 | - getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) ); |
|
| 429 | + getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) ); |
|
| 430 | 430 | |
| 431 | - wp_safe_redirect( |
|
| 432 | - add_query_arg( |
|
| 433 | - array( |
|
| 434 | - 'action' => 'edit', |
|
| 435 | - 'post' => $new_invoice->get_id(), |
|
| 436 | - ), |
|
| 437 | - admin_url( 'post.php' ) |
|
| 438 | - ) |
|
| 439 | - ); |
|
| 440 | - exit; |
|
| 431 | + wp_safe_redirect( |
|
| 432 | + add_query_arg( |
|
| 433 | + array( |
|
| 434 | + 'action' => 'edit', |
|
| 435 | + 'post' => $new_invoice->get_id(), |
|
| 436 | + ), |
|
| 437 | + admin_url( 'post.php' ) |
|
| 438 | + ) |
|
| 439 | + ); |
|
| 440 | + exit; |
|
| 441 | 441 | |
| 442 | - } |
|
| 442 | + } |
|
| 443 | 443 | |
| 444 | - getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) ); |
|
| 444 | + getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) ); |
|
| 445 | 445 | |
| 446 | - } |
|
| 446 | + } |
|
| 447 | 447 | |
| 448 | - /** |
|
| 448 | + /** |
|
| 449 | 449 | * Sends a payment reminder to a customer. |
| 450 | - * |
|
| 451 | - * @param array $args |
|
| 450 | + * |
|
| 451 | + * @param array $args |
|
| 452 | 452 | */ |
| 453 | 453 | public function duplicate_payment_form( $args ) { |
| 454 | 454 | |
| 455 | - if ( empty( $args['form_id'] ) ) { |
|
| 456 | - return; |
|
| 457 | - } |
|
| 458 | - |
|
| 459 | - $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 455 | + if ( empty( $args['form_id'] ) ) { |
|
| 456 | + return; |
|
| 457 | + } |
|
| 460 | 458 | |
| 461 | - if ( ! $form->exists() ) { |
|
| 462 | - return; |
|
| 463 | - } |
|
| 459 | + $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 464 | 460 | |
| 465 | - $new_form = new GetPaid_Payment_Form(); |
|
| 466 | - $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 467 | - $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 468 | - $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 469 | - $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 470 | - $new_form->save(); |
|
| 461 | + if ( ! $form->exists() ) { |
|
| 462 | + return; |
|
| 463 | + } |
|
| 471 | 464 | |
| 472 | - if ( $new_form->exists() ) { |
|
| 473 | - $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 474 | - $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 475 | - } else { |
|
| 476 | - $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 477 | - $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 478 | - } |
|
| 465 | + $new_form = new GetPaid_Payment_Form(); |
|
| 466 | + $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 467 | + $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 468 | + $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 469 | + $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 470 | + $new_form->save(); |
|
| 471 | + |
|
| 472 | + if ( $new_form->exists() ) { |
|
| 473 | + $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 474 | + $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 475 | + } else { |
|
| 476 | + $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 477 | + $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | - wp_redirect( $url ); |
|
| 481 | - exit; |
|
| 482 | - } |
|
| 480 | + wp_redirect( $url ); |
|
| 481 | + exit; |
|
| 482 | + } |
|
| 483 | 483 | |
| 484 | - /** |
|
| 484 | + /** |
|
| 485 | 485 | * Sends a payment reminder to a customer. |
| 486 | - * |
|
| 487 | - * @param array $args |
|
| 486 | + * |
|
| 487 | + * @param array $args |
|
| 488 | 488 | */ |
| 489 | 489 | public function send_customer_invoice( $args ) { |
| 490 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 491 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 492 | - exit; |
|
| 493 | - } |
|
| 490 | + getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 491 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 492 | + exit; |
|
| 493 | + } |
|
| 494 | 494 | |
| 495 | - /** |
|
| 495 | + /** |
|
| 496 | 496 | * Sends a payment reminder to a customer. |
| 497 | - * |
|
| 498 | - * @param array $args |
|
| 497 | + * |
|
| 498 | + * @param array $args |
|
| 499 | 499 | */ |
| 500 | 500 | public function send_customer_payment_reminder( $args ) { |
| 501 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 501 | + $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 502 | 502 | |
| 503 | - if ( $sent ) { |
|
| 504 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 505 | - } else { |
|
| 506 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 507 | - } |
|
| 503 | + if ( $sent ) { |
|
| 504 | + $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 505 | + } else { |
|
| 506 | + $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 507 | + } |
|
| 508 | 508 | |
| 509 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 510 | - exit; |
|
| 511 | - } |
|
| 509 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 510 | + exit; |
|
| 511 | + } |
|
| 512 | 512 | |
| 513 | - /** |
|
| 513 | + /** |
|
| 514 | 514 | * Resets tax rates. |
| 515 | - * |
|
| 515 | + * |
|
| 516 | 516 | */ |
| 517 | 517 | public function admin_reset_tax_rates() { |
| 518 | 518 | |
| 519 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 520 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 521 | - exit; |
|
| 519 | + update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 520 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 521 | + exit; |
|
| 522 | 522 | |
| 523 | - } |
|
| 523 | + } |
|
| 524 | 524 | |
| 525 | - /** |
|
| 525 | + /** |
|
| 526 | 526 | * Resets admin pages. |
| 527 | - * |
|
| 527 | + * |
|
| 528 | 528 | */ |
| 529 | 529 | public function admin_create_missing_pages() { |
| 530 | - $installer = new GetPaid_Installer(); |
|
| 531 | - $installer->create_pages(); |
|
| 532 | - $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 533 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 534 | - exit; |
|
| 535 | - } |
|
| 536 | - |
|
| 537 | - /** |
|
| 530 | + $installer = new GetPaid_Installer(); |
|
| 531 | + $installer->create_pages(); |
|
| 532 | + $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 533 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 534 | + exit; |
|
| 535 | + } |
|
| 536 | + |
|
| 537 | + /** |
|
| 538 | 538 | * Creates an missing admin tables. |
| 539 | - * |
|
| 539 | + * |
|
| 540 | 540 | */ |
| 541 | 541 | public function admin_create_missing_tables() { |
| 542 | - global $wpdb; |
|
| 543 | - $installer = new GetPaid_Installer(); |
|
| 542 | + global $wpdb; |
|
| 543 | + $installer = new GetPaid_Installer(); |
|
| 544 | 544 | |
| 545 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 546 | - $installer->create_subscriptions_table(); |
|
| 545 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 546 | + $installer->create_subscriptions_table(); |
|
| 547 | 547 | |
| 548 | - if ( $wpdb->last_error !== '' ) { |
|
| 549 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 550 | - } |
|
| 551 | - } |
|
| 548 | + if ( $wpdb->last_error !== '' ) { |
|
| 549 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 550 | + } |
|
| 551 | + } |
|
| 552 | 552 | |
| 553 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 554 | - $installer->create_invoices_table(); |
|
| 553 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 554 | + $installer->create_invoices_table(); |
|
| 555 | 555 | |
| 556 | - if ( $wpdb->last_error !== '' ) { |
|
| 557 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 558 | - } |
|
| 559 | - } |
|
| 556 | + if ( $wpdb->last_error !== '' ) { |
|
| 557 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 558 | + } |
|
| 559 | + } |
|
| 560 | 560 | |
| 561 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 562 | - $installer->create_invoice_items_table(); |
|
| 561 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 562 | + $installer->create_invoice_items_table(); |
|
| 563 | 563 | |
| 564 | - if ( $wpdb->last_error !== '' ) { |
|
| 565 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 566 | - } |
|
| 567 | - } |
|
| 564 | + if ( $wpdb->last_error !== '' ) { |
|
| 565 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 566 | + } |
|
| 567 | + } |
|
| 568 | 568 | |
| 569 | - if ( ! $this->has_notices() ) { |
|
| 570 | - $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 571 | - } |
|
| 569 | + if ( ! $this->has_notices() ) { |
|
| 570 | + $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 571 | + } |
|
| 572 | 572 | |
| 573 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 574 | - exit; |
|
| 575 | - } |
|
| 573 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 574 | + exit; |
|
| 575 | + } |
|
| 576 | 576 | |
| 577 | - /** |
|
| 577 | + /** |
|
| 578 | 578 | * Migrates old invoices to the new database tables. |
| 579 | - * |
|
| 579 | + * |
|
| 580 | 580 | */ |
| 581 | 581 | public function admin_migrate_old_invoices() { |
| 582 | 582 | |
| 583 | - // Migrate the invoices. |
|
| 584 | - $installer = new GetPaid_Installer(); |
|
| 585 | - $installer->migrate_old_invoices(); |
|
| 583 | + // Migrate the invoices. |
|
| 584 | + $installer = new GetPaid_Installer(); |
|
| 585 | + $installer->migrate_old_invoices(); |
|
| 586 | 586 | |
| 587 | - // Show an admin message. |
|
| 588 | - $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 587 | + // Show an admin message. |
|
| 588 | + $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 589 | 589 | |
| 590 | - // Redirect the admin. |
|
| 591 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 592 | - exit; |
|
| 590 | + // Redirect the admin. |
|
| 591 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 592 | + exit; |
|
| 593 | 593 | |
| 594 | - } |
|
| 594 | + } |
|
| 595 | 595 | |
| 596 | - /** |
|
| 596 | + /** |
|
| 597 | 597 | * Download customers. |
| 598 | - * |
|
| 598 | + * |
|
| 599 | 599 | */ |
| 600 | 600 | public function admin_download_customers() { |
| 601 | - global $wpdb; |
|
| 601 | + global $wpdb; |
|
| 602 | 602 | |
| 603 | - $output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) ); |
|
| 603 | + $output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) ); |
|
| 604 | 604 | |
| 605 | - header( "Content-Type:text/csv" ); |
|
| 606 | - header( "Content-Disposition:attachment;filename=customers.csv" ); |
|
| 605 | + header( "Content-Type:text/csv" ); |
|
| 606 | + header( "Content-Disposition:attachment;filename=customers.csv" ); |
|
| 607 | 607 | |
| 608 | - $post_types = ''; |
|
| 608 | + $post_types = ''; |
|
| 609 | 609 | |
| 610 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 611 | - $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
| 612 | - } |
|
| 610 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 611 | + $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
| 612 | + } |
|
| 613 | 613 | |
| 614 | - $post_types = rtrim( $post_types, ' OR' ); |
|
| 614 | + $post_types = rtrim( $post_types, ' OR' ); |
|
| 615 | 615 | |
| 616 | - $customers = $wpdb->get_col( |
|
| 617 | - $wpdb->prepare( |
|
| 618 | - "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" |
|
| 619 | - ) |
|
| 620 | - ); |
|
| 616 | + $customers = $wpdb->get_col( |
|
| 617 | + $wpdb->prepare( |
|
| 618 | + "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" |
|
| 619 | + ) |
|
| 620 | + ); |
|
| 621 | 621 | |
| 622 | - $columns = array( |
|
| 623 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 624 | - 'email' => __( 'Email', 'invoicing' ), |
|
| 625 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 626 | - 'state' => __( 'State', 'invoicing' ), |
|
| 627 | - 'city' => __( 'City', 'invoicing' ), |
|
| 628 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 629 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 630 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 631 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 632 | - 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 633 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 634 | - 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 635 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
| 636 | - ); |
|
| 622 | + $columns = array( |
|
| 623 | + 'name' => __( 'Name', 'invoicing' ), |
|
| 624 | + 'email' => __( 'Email', 'invoicing' ), |
|
| 625 | + 'country' => __( 'Country', 'invoicing' ), |
|
| 626 | + 'state' => __( 'State', 'invoicing' ), |
|
| 627 | + 'city' => __( 'City', 'invoicing' ), |
|
| 628 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 629 | + 'address' => __( 'Address', 'invoicing' ), |
|
| 630 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
| 631 | + 'company' => __( 'Company', 'invoicing' ), |
|
| 632 | + 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 633 | + 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 634 | + 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 635 | + 'signup' => __( 'Date created', 'invoicing' ), |
|
| 636 | + ); |
|
| 637 | 637 | |
| 638 | - // Output the csv column headers. |
|
| 639 | - fputcsv( $output, array_values( $columns ) ); |
|
| 638 | + // Output the csv column headers. |
|
| 639 | + fputcsv( $output, array_values( $columns ) ); |
|
| 640 | 640 | |
| 641 | - // Loop through |
|
| 642 | - $table = new WPInv_Customers_Table(); |
|
| 643 | - foreach ( $customers as $customer_id ) { |
|
| 641 | + // Loop through |
|
| 642 | + $table = new WPInv_Customers_Table(); |
|
| 643 | + foreach ( $customers as $customer_id ) { |
|
| 644 | 644 | |
| 645 | - $user = get_user_by( 'id', $customer_id ); |
|
| 646 | - $row = array(); |
|
| 647 | - if ( empty( $user ) ) { |
|
| 648 | - continue; |
|
| 649 | - } |
|
| 645 | + $user = get_user_by( 'id', $customer_id ); |
|
| 646 | + $row = array(); |
|
| 647 | + if ( empty( $user ) ) { |
|
| 648 | + continue; |
|
| 649 | + } |
|
| 650 | 650 | |
| 651 | - foreach ( array_keys( $columns ) as $column ) { |
|
| 651 | + foreach ( array_keys( $columns ) as $column ) { |
|
| 652 | 652 | |
| 653 | - $method = 'column_' . $column; |
|
| 653 | + $method = 'column_' . $column; |
|
| 654 | 654 | |
| 655 | - if ( 'name' == $column ) { |
|
| 656 | - $value = esc_html( $user->display_name ); |
|
| 657 | - } else if( 'email' == $column ) { |
|
| 658 | - $value = sanitize_email( $user->user_email ); |
|
| 659 | - } else if ( is_callable( array( $table, $method ) ) ) { |
|
| 660 | - $value = strip_tags( $table->$method( $user ) ); |
|
| 661 | - } |
|
| 655 | + if ( 'name' == $column ) { |
|
| 656 | + $value = esc_html( $user->display_name ); |
|
| 657 | + } else if( 'email' == $column ) { |
|
| 658 | + $value = sanitize_email( $user->user_email ); |
|
| 659 | + } else if ( is_callable( array( $table, $method ) ) ) { |
|
| 660 | + $value = strip_tags( $table->$method( $user ) ); |
|
| 661 | + } |
|
| 662 | 662 | |
| 663 | - if ( empty( $value ) ) { |
|
| 664 | - $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 665 | - } |
|
| 663 | + if ( empty( $value ) ) { |
|
| 664 | + $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 665 | + } |
|
| 666 | 666 | |
| 667 | - $row[] = $value; |
|
| 667 | + $row[] = $value; |
|
| 668 | 668 | |
| 669 | - } |
|
| 669 | + } |
|
| 670 | 670 | |
| 671 | - fputcsv( $output, $row ); |
|
| 672 | - } |
|
| 671 | + fputcsv( $output, $row ); |
|
| 672 | + } |
|
| 673 | 673 | |
| 674 | - fclose( $output ); |
|
| 675 | - exit; |
|
| 674 | + fclose( $output ); |
|
| 675 | + exit; |
|
| 676 | 676 | |
| 677 | - } |
|
| 677 | + } |
|
| 678 | 678 | |
| 679 | - /** |
|
| 679 | + /** |
|
| 680 | 680 | * Installs a plugin. |
| 681 | - * |
|
| 682 | - * @param array $data |
|
| 681 | + * |
|
| 682 | + * @param array $data |
|
| 683 | 683 | */ |
| 684 | 684 | public function admin_install_plugin( $data ) { |
| 685 | 685 | |
| 686 | - if ( ! empty( $data['plugins'] ) ) { |
|
| 687 | - include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 688 | - wp_cache_flush(); |
|
| 686 | + if ( ! empty( $data['plugins'] ) ) { |
|
| 687 | + include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 688 | + wp_cache_flush(); |
|
| 689 | 689 | |
| 690 | - foreach ( $data['plugins'] as $slug => $file ) { |
|
| 691 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 692 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 693 | - $installed = $upgrader->install( $plugin_zip ); |
|
| 690 | + foreach ( $data['plugins'] as $slug => $file ) { |
|
| 691 | + $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 692 | + $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 693 | + $installed = $upgrader->install( $plugin_zip ); |
|
| 694 | 694 | |
| 695 | - if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 696 | - activate_plugin( $file, '', false, true ); |
|
| 697 | - } else { |
|
| 698 | - wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 699 | - } |
|
| 695 | + if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 696 | + activate_plugin( $file, '', false, true ); |
|
| 697 | + } else { |
|
| 698 | + wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 699 | + } |
|
| 700 | 700 | |
| 701 | - } |
|
| 701 | + } |
|
| 702 | 702 | |
| 703 | - } |
|
| 703 | + } |
|
| 704 | 704 | |
| 705 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 706 | - wp_safe_redirect( $redirect ); |
|
| 707 | - exit; |
|
| 705 | + $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 706 | + wp_safe_redirect( $redirect ); |
|
| 707 | + exit; |
|
| 708 | 708 | |
| 709 | - } |
|
| 709 | + } |
|
| 710 | 710 | |
| 711 | - /** |
|
| 711 | + /** |
|
| 712 | 712 | * Connects a gateway. |
| 713 | - * |
|
| 714 | - * @param array $data |
|
| 713 | + * |
|
| 714 | + * @param array $data |
|
| 715 | 715 | */ |
| 716 | 716 | public function admin_connect_gateway( $data ) { |
| 717 | 717 | |
| 718 | - if ( ! empty( $data['plugin'] ) ) { |
|
| 718 | + if ( ! empty( $data['plugin'] ) ) { |
|
| 719 | 719 | |
| 720 | - $gateway = sanitize_key( $data['plugin'] ); |
|
| 721 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 720 | + $gateway = sanitize_key( $data['plugin'] ); |
|
| 721 | + $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 722 | 722 | |
| 723 | - if ( ! empty( $connect_url ) ) { |
|
| 724 | - wp_redirect( $connect_url ); |
|
| 725 | - exit; |
|
| 726 | - } |
|
| 723 | + if ( ! empty( $connect_url ) ) { |
|
| 724 | + wp_redirect( $connect_url ); |
|
| 725 | + exit; |
|
| 726 | + } |
|
| 727 | 727 | |
| 728 | - if ( 'stripe' == $data['plugin'] ) { |
|
| 729 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 730 | - include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 731 | - wp_cache_flush(); |
|
| 728 | + if ( 'stripe' == $data['plugin'] ) { |
|
| 729 | + require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 730 | + include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 731 | + wp_cache_flush(); |
|
| 732 | 732 | |
| 733 | - if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 734 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 735 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 736 | - $upgrader->install( $plugin_zip ); |
|
| 737 | - } |
|
| 733 | + if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 734 | + $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 735 | + $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 736 | + $upgrader->install( $plugin_zip ); |
|
| 737 | + } |
|
| 738 | 738 | |
| 739 | - activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 740 | - } |
|
| 739 | + activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 740 | + } |
|
| 741 | 741 | |
| 742 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 743 | - if ( ! empty( $connect_url ) ) { |
|
| 744 | - wp_redirect( $connect_url ); |
|
| 745 | - exit; |
|
| 746 | - } |
|
| 742 | + $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 743 | + if ( ! empty( $connect_url ) ) { |
|
| 744 | + wp_redirect( $connect_url ); |
|
| 745 | + exit; |
|
| 746 | + } |
|
| 747 | 747 | |
| 748 | - } |
|
| 748 | + } |
|
| 749 | 749 | |
| 750 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 751 | - wp_safe_redirect( $redirect ); |
|
| 752 | - exit; |
|
| 750 | + $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 751 | + wp_safe_redirect( $redirect ); |
|
| 752 | + exit; |
|
| 753 | 753 | |
| 754 | - } |
|
| 754 | + } |
|
| 755 | 755 | |
| 756 | - /** |
|
| 756 | + /** |
|
| 757 | 757 | * Recalculates discounts. |
| 758 | - * |
|
| 758 | + * |
|
| 759 | 759 | */ |
| 760 | 760 | public function admin_recalculate_discounts() { |
| 761 | - global $wpdb; |
|
| 761 | + global $wpdb; |
|
| 762 | 762 | |
| 763 | - // Fetch all invoices that have discount codes. |
|
| 764 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 765 | - $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 763 | + // Fetch all invoices that have discount codes. |
|
| 764 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 765 | + $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 766 | 766 | |
| 767 | - foreach ( $invoices as $invoice ) { |
|
| 767 | + foreach ( $invoices as $invoice ) { |
|
| 768 | 768 | |
| 769 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 769 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 770 | 770 | |
| 771 | - if ( ! $invoice->exists() ) { |
|
| 772 | - continue; |
|
| 773 | - } |
|
| 771 | + if ( ! $invoice->exists() ) { |
|
| 772 | + continue; |
|
| 773 | + } |
|
| 774 | 774 | |
| 775 | - // Abort if the discount does not exist or does not apply here. |
|
| 776 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 777 | - if ( ! $discount->exists() ) { |
|
| 778 | - continue; |
|
| 779 | - } |
|
| 775 | + // Abort if the discount does not exist or does not apply here. |
|
| 776 | + $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 777 | + if ( ! $discount->exists() ) { |
|
| 778 | + continue; |
|
| 779 | + } |
|
| 780 | 780 | |
| 781 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 782 | - $invoice->recalculate_total(); |
|
| 781 | + $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 782 | + $invoice->recalculate_total(); |
|
| 783 | 783 | |
| 784 | - if ( $invoice->get_total_discount() > 0 ) { |
|
| 785 | - $invoice->save(); |
|
| 786 | - } |
|
| 784 | + if ( $invoice->get_total_discount() > 0 ) { |
|
| 785 | + $invoice->save(); |
|
| 786 | + } |
|
| 787 | 787 | |
| 788 | - } |
|
| 788 | + } |
|
| 789 | 789 | |
| 790 | - // Show an admin message. |
|
| 791 | - $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 790 | + // Show an admin message. |
|
| 791 | + $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 792 | 792 | |
| 793 | - // Redirect the admin. |
|
| 794 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 795 | - exit; |
|
| 793 | + // Redirect the admin. |
|
| 794 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 795 | + exit; |
|
| 796 | 796 | |
| 797 | - } |
|
| 797 | + } |
|
| 798 | 798 | |
| 799 | 799 | /** |
| 800 | - * Returns an array of admin notices. |
|
| 801 | - * |
|
| 802 | - * @since 1.0.19 |
|
| 800 | + * Returns an array of admin notices. |
|
| 801 | + * |
|
| 802 | + * @since 1.0.19 |
|
| 803 | 803 | * @return array |
| 804 | - */ |
|
| 805 | - public function get_notices() { |
|
| 806 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
| 804 | + */ |
|
| 805 | + public function get_notices() { |
|
| 806 | + $notices = get_option( 'wpinv_admin_notices' ); |
|
| 807 | 807 | return is_array( $notices ) ? $notices : array(); |
| 808 | - } |
|
| 808 | + } |
|
| 809 | 809 | |
| 810 | - /** |
|
| 811 | - * Checks if we have any admin notices. |
|
| 812 | - * |
|
| 813 | - * @since 2.0.4 |
|
| 810 | + /** |
|
| 811 | + * Checks if we have any admin notices. |
|
| 812 | + * |
|
| 813 | + * @since 2.0.4 |
|
| 814 | 814 | * @return array |
| 815 | - */ |
|
| 816 | - public function has_notices() { |
|
| 817 | - return count( $this->get_notices() ) > 0; |
|
| 818 | - } |
|
| 819 | - |
|
| 820 | - /** |
|
| 821 | - * Clears all admin notices |
|
| 822 | - * |
|
| 823 | - * @access public |
|
| 824 | - * @since 1.0.19 |
|
| 825 | - */ |
|
| 826 | - public function clear_notices() { |
|
| 827 | - delete_option( 'wpinv_admin_notices' ); |
|
| 828 | - } |
|
| 829 | - |
|
| 830 | - /** |
|
| 831 | - * Saves a new admin notice |
|
| 832 | - * |
|
| 833 | - * @access public |
|
| 834 | - * @since 1.0.19 |
|
| 835 | - */ |
|
| 836 | - public function save_notice( $type, $message ) { |
|
| 837 | - $notices = $this->get_notices(); |
|
| 838 | - |
|
| 839 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
| 840 | - $notices[ $type ] = array(); |
|
| 841 | - } |
|
| 842 | - |
|
| 843 | - $notices[ $type ][] = $message; |
|
| 844 | - |
|
| 845 | - update_option( 'wpinv_admin_notices', $notices ); |
|
| 846 | - } |
|
| 847 | - |
|
| 848 | - /** |
|
| 849 | - * Displays a success notice |
|
| 850 | - * |
|
| 851 | - * @param string $msg The message to qeue. |
|
| 852 | - * @access public |
|
| 853 | - * @since 1.0.19 |
|
| 854 | - */ |
|
| 855 | - public function show_success( $msg ) { |
|
| 856 | - $this->save_notice( 'success', $msg ); |
|
| 857 | - } |
|
| 858 | - |
|
| 859 | - /** |
|
| 860 | - * Displays a error notice |
|
| 861 | - * |
|
| 862 | - * @access public |
|
| 863 | - * @param string $msg The message to qeue. |
|
| 864 | - * @since 1.0.19 |
|
| 865 | - */ |
|
| 866 | - public function show_error( $msg ) { |
|
| 867 | - $this->save_notice( 'error', $msg ); |
|
| 868 | - } |
|
| 869 | - |
|
| 870 | - /** |
|
| 871 | - * Displays a warning notice |
|
| 872 | - * |
|
| 873 | - * @access public |
|
| 874 | - * @param string $msg The message to qeue. |
|
| 875 | - * @since 1.0.19 |
|
| 876 | - */ |
|
| 877 | - public function show_warning( $msg ) { |
|
| 878 | - $this->save_notice( 'warning', $msg ); |
|
| 879 | - } |
|
| 880 | - |
|
| 881 | - /** |
|
| 882 | - * Displays a info notice |
|
| 883 | - * |
|
| 884 | - * @access public |
|
| 885 | - * @param string $msg The message to qeue. |
|
| 886 | - * @since 1.0.19 |
|
| 887 | - */ |
|
| 888 | - public function show_info( $msg ) { |
|
| 889 | - $this->save_notice( 'info', $msg ); |
|
| 890 | - } |
|
| 891 | - |
|
| 892 | - /** |
|
| 893 | - * Show notices |
|
| 894 | - * |
|
| 895 | - * @access public |
|
| 896 | - * @since 1.0.19 |
|
| 897 | - */ |
|
| 898 | - public function show_notices() { |
|
| 815 | + */ |
|
| 816 | + public function has_notices() { |
|
| 817 | + return count( $this->get_notices() ) > 0; |
|
| 818 | + } |
|
| 819 | + |
|
| 820 | + /** |
|
| 821 | + * Clears all admin notices |
|
| 822 | + * |
|
| 823 | + * @access public |
|
| 824 | + * @since 1.0.19 |
|
| 825 | + */ |
|
| 826 | + public function clear_notices() { |
|
| 827 | + delete_option( 'wpinv_admin_notices' ); |
|
| 828 | + } |
|
| 829 | + |
|
| 830 | + /** |
|
| 831 | + * Saves a new admin notice |
|
| 832 | + * |
|
| 833 | + * @access public |
|
| 834 | + * @since 1.0.19 |
|
| 835 | + */ |
|
| 836 | + public function save_notice( $type, $message ) { |
|
| 837 | + $notices = $this->get_notices(); |
|
| 838 | + |
|
| 839 | + if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
| 840 | + $notices[ $type ] = array(); |
|
| 841 | + } |
|
| 842 | + |
|
| 843 | + $notices[ $type ][] = $message; |
|
| 844 | + |
|
| 845 | + update_option( 'wpinv_admin_notices', $notices ); |
|
| 846 | + } |
|
| 847 | + |
|
| 848 | + /** |
|
| 849 | + * Displays a success notice |
|
| 850 | + * |
|
| 851 | + * @param string $msg The message to qeue. |
|
| 852 | + * @access public |
|
| 853 | + * @since 1.0.19 |
|
| 854 | + */ |
|
| 855 | + public function show_success( $msg ) { |
|
| 856 | + $this->save_notice( 'success', $msg ); |
|
| 857 | + } |
|
| 858 | + |
|
| 859 | + /** |
|
| 860 | + * Displays a error notice |
|
| 861 | + * |
|
| 862 | + * @access public |
|
| 863 | + * @param string $msg The message to qeue. |
|
| 864 | + * @since 1.0.19 |
|
| 865 | + */ |
|
| 866 | + public function show_error( $msg ) { |
|
| 867 | + $this->save_notice( 'error', $msg ); |
|
| 868 | + } |
|
| 869 | + |
|
| 870 | + /** |
|
| 871 | + * Displays a warning notice |
|
| 872 | + * |
|
| 873 | + * @access public |
|
| 874 | + * @param string $msg The message to qeue. |
|
| 875 | + * @since 1.0.19 |
|
| 876 | + */ |
|
| 877 | + public function show_warning( $msg ) { |
|
| 878 | + $this->save_notice( 'warning', $msg ); |
|
| 879 | + } |
|
| 880 | + |
|
| 881 | + /** |
|
| 882 | + * Displays a info notice |
|
| 883 | + * |
|
| 884 | + * @access public |
|
| 885 | + * @param string $msg The message to qeue. |
|
| 886 | + * @since 1.0.19 |
|
| 887 | + */ |
|
| 888 | + public function show_info( $msg ) { |
|
| 889 | + $this->save_notice( 'info', $msg ); |
|
| 890 | + } |
|
| 891 | + |
|
| 892 | + /** |
|
| 893 | + * Show notices |
|
| 894 | + * |
|
| 895 | + * @access public |
|
| 896 | + * @since 1.0.19 |
|
| 897 | + */ |
|
| 898 | + public function show_notices() { |
|
| 899 | 899 | |
| 900 | 900 | $notices = $this->get_notices(); |
| 901 | 901 | $this->clear_notices(); |
| 902 | 902 | |
| 903 | - foreach ( $notices as $type => $messages ) { |
|
| 903 | + foreach ( $notices as $type => $messages ) { |
|
| 904 | 904 | |
| 905 | - if ( ! is_array( $messages ) ) { |
|
| 906 | - continue; |
|
| 907 | - } |
|
| 905 | + if ( ! is_array( $messages ) ) { |
|
| 906 | + continue; |
|
| 907 | + } |
|
| 908 | 908 | |
| 909 | 909 | $type = sanitize_key( $type ); |
| 910 | - foreach ( $messages as $message ) { |
|
| 910 | + foreach ( $messages as $message ) { |
|
| 911 | 911 | $message = wp_kses_post( $message ); |
| 912 | - echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
|
| 912 | + echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
|
| 913 | 913 | } |
| 914 | 914 | |
| 915 | 915 | } |
| 916 | 916 | |
| 917 | - foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 918 | - |
|
| 919 | - if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 920 | - $url = wp_nonce_url( |
|
| 921 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 922 | - 'getpaid-nonce', |
|
| 923 | - 'getpaid-nonce' |
|
| 924 | - ); |
|
| 925 | - $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 926 | - $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 927 | - echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>"; |
|
| 928 | - break; |
|
| 929 | - } |
|
| 917 | + foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 918 | + |
|
| 919 | + if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 920 | + $url = wp_nonce_url( |
|
| 921 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 922 | + 'getpaid-nonce', |
|
| 923 | + 'getpaid-nonce' |
|
| 924 | + ); |
|
| 925 | + $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 926 | + $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 927 | + echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>"; |
|
| 928 | + break; |
|
| 929 | + } |
|
| 930 | 930 | |
| 931 | - } |
|
| 931 | + } |
|
| 932 | 932 | |
| 933 | - } |
|
| 933 | + } |
|
| 934 | 934 | |
| 935 | 935 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * The main admin class. |
@@ -37,13 +37,13 @@ discard block |
||
| 37 | 37 | /** |
| 38 | 38 | * Class constructor. |
| 39 | 39 | */ |
| 40 | - public function __construct(){ |
|
| 40 | + public function __construct() { |
|
| 41 | 41 | |
| 42 | - $this->admin_path = plugin_dir_path( __FILE__ ); |
|
| 43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 42 | + $this->admin_path = plugin_dir_path(__FILE__); |
|
| 43 | + $this->admin_url = plugins_url('/', __FILE__); |
|
| 44 | 44 | $this->reports = new GetPaid_Reports(); |
| 45 | 45 | |
| 46 | - if ( is_admin() ) { |
|
| 46 | + if (is_admin()) { |
|
| 47 | 47 | $this->init_admin_hooks(); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -54,33 +54,33 @@ discard block |
||
| 54 | 54 | * |
| 55 | 55 | */ |
| 56 | 56 | private function init_admin_hooks() { |
| 57 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ), 9 ); |
|
| 58 | - add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
|
| 59 | - add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
|
| 60 | - add_action( 'admin_init', array( $this, 'activation_redirect') ); |
|
| 61 | - add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
|
| 62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | - add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | - add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 68 | - add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
|
| 69 | - add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | - add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 71 | - add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 72 | - add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 73 | - add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 74 | - add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 75 | - add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 76 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 77 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 57 | + add_action('admin_enqueue_scripts', array($this, 'enqeue_scripts'), 9); |
|
| 58 | + add_filter('admin_body_class', array($this, 'admin_body_class')); |
|
| 59 | + add_action('admin_init', array($this, 'init_ayecode_connect_helper')); |
|
| 60 | + add_action('admin_init', array($this, 'activation_redirect')); |
|
| 61 | + add_action('admin_init', array($this, 'maybe_do_admin_action')); |
|
| 62 | + add_action('admin_notices', array($this, 'show_notices')); |
|
| 63 | + add_action('getpaid_authenticated_admin_action_rate_plugin', array($this, 'redirect_to_wordpress_rating_page')); |
|
| 64 | + add_action('getpaid_authenticated_admin_action_duplicate_form', array($this, 'duplicate_payment_form')); |
|
| 65 | + add_action('getpaid_authenticated_admin_action_duplicate_invoice', array($this, 'duplicate_invoice')); |
|
| 66 | + add_action('getpaid_authenticated_admin_action_send_invoice', array($this, 'send_customer_invoice')); |
|
| 67 | + add_action('getpaid_authenticated_admin_action_send_invoice_reminder', array($this, 'send_customer_payment_reminder')); |
|
| 68 | + add_action('getpaid_authenticated_admin_action_reset_tax_rates', array($this, 'admin_reset_tax_rates')); |
|
| 69 | + add_action('getpaid_authenticated_admin_action_create_missing_pages', array($this, 'admin_create_missing_pages')); |
|
| 70 | + add_action('getpaid_authenticated_admin_action_create_missing_tables', array($this, 'admin_create_missing_tables')); |
|
| 71 | + add_action('getpaid_authenticated_admin_action_migrate_old_invoices', array($this, 'admin_migrate_old_invoices')); |
|
| 72 | + add_action('getpaid_authenticated_admin_action_download_customers', array($this, 'admin_download_customers')); |
|
| 73 | + add_action('getpaid_authenticated_admin_action_recalculate_discounts', array($this, 'admin_recalculate_discounts')); |
|
| 74 | + add_action('getpaid_authenticated_admin_action_install_plugin', array($this, 'admin_install_plugin')); |
|
| 75 | + add_action('getpaid_authenticated_admin_action_connect_gateway', array($this, 'admin_connect_gateway')); |
|
| 76 | + add_filter('admin_footer_text', array($this, 'admin_footer_text')); |
|
| 77 | + do_action('getpaid_init_admin_hooks', $this); |
|
| 78 | 78 | |
| 79 | 79 | // Setup/welcome |
| 80 | - if ( ! empty( $_GET['page'] ) ) { |
|
| 81 | - switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 80 | + if (!empty($_GET['page'])) { |
|
| 81 | + switch (sanitize_text_field($_GET['page'])) { |
|
| 82 | 82 | case 'gp-setup' : |
| 83 | - include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' ); |
|
| 83 | + include_once(dirname(__FILE__) . '/class-getpaid-admin-setup-wizard.php'); |
|
| 84 | 84 | break; |
| 85 | 85 | } |
| 86 | 86 | } |
@@ -94,37 +94,37 @@ discard block |
||
| 94 | 94 | public function enqeue_scripts() { |
| 95 | 95 | global $current_screen, $pagenow; |
| 96 | 96 | |
| 97 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 97 | + $page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : ''; |
|
| 98 | 98 | $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
| 99 | 99 | |
| 100 | - if ( ! empty( $current_screen->post_type ) ) { |
|
| 100 | + if (!empty($current_screen->post_type)) { |
|
| 101 | 101 | $page = $current_screen->post_type; |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | // General styles. |
| 105 | - if ( false !== stripos( $page, 'wpi' ) || false !== stripos( $page, 'getpaid' ) || 'gp-setup' == $page || false !== stripos( $page, 'geodir-tickets' ) ) { |
|
| 105 | + if (false !== stripos($page, 'wpi') || false !== stripos($page, 'getpaid') || 'gp-setup' == $page || false !== stripos($page, 'geodir-tickets')) { |
|
| 106 | 106 | |
| 107 | 107 | // Styles. |
| 108 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/admin.css' ); |
|
| 109 | - wp_enqueue_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array( 'wp-color-picker' ), $version ); |
|
| 110 | - wp_enqueue_style( 'select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all' ); |
|
| 108 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/css/admin.css'); |
|
| 109 | + wp_enqueue_style('wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array('wp-color-picker'), $version); |
|
| 110 | + wp_enqueue_style('select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all'); |
|
| 111 | 111 | |
| 112 | 112 | // Scripts. |
| 113 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array( 'jquery' ), WPINV_VERSION ); |
|
| 113 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array('jquery'), WPINV_VERSION); |
|
| 114 | 114 | |
| 115 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin.js' ); |
|
| 116 | - wp_enqueue_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array( 'jquery', 'wp-color-picker', 'jquery-ui-tooltip' ), $version ); |
|
| 117 | - wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', apply_filters( 'wpinv_admin_js_localize', $this->get_admin_i18() ) ); |
|
| 115 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin.js'); |
|
| 116 | + wp_enqueue_script('wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array('jquery', 'wp-color-picker', 'jquery-ui-tooltip'), $version); |
|
| 117 | + wp_localize_script('wpinv-admin-script', 'WPInv_Admin', apply_filters('wpinv_admin_js_localize', $this->get_admin_i18())); |
|
| 118 | 118 | |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | // Payment form scripts. |
| 122 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 122 | + if ('wpi_payment_form' == $page && $editing) { |
|
| 123 | 123 | $this->load_payment_form_scripts(); |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - if ( $page == 'wpinv-subscriptions' ) { |
|
| 127 | - wp_enqueue_script( 'postbox' ); |
|
| 126 | + if ($page == 'wpinv-subscriptions') { |
|
| 127 | + wp_enqueue_script('postbox'); |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | } |
@@ -137,32 +137,32 @@ discard block |
||
| 137 | 137 | global $post; |
| 138 | 138 | |
| 139 | 139 | $date_range = array( |
| 140 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
| 140 | + 'period' => isset($_GET['date_range']) ? sanitize_text_field($_GET['date_range']) : '7_days' |
|
| 141 | 141 | ); |
| 142 | 142 | |
| 143 | - if ( $date_range['period'] == 'custom' ) { |
|
| 143 | + if ($date_range['period'] == 'custom') { |
|
| 144 | 144 | |
| 145 | - if ( isset( $_GET['from'] ) ) { |
|
| 146 | - $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 145 | + if (isset($_GET['from'])) { |
|
| 146 | + $date_range['after'] = date('Y-m-d', strtotime(sanitize_text_field($_GET['from']), current_time('timestamp')) - DAY_IN_SECONDS); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - if ( isset( $_GET['to'] ) ) { |
|
| 150 | - $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 149 | + if (isset($_GET['to'])) { |
|
| 150 | + $date_range['before'] = date('Y-m-d', strtotime(sanitize_text_field($_GET['to']), current_time('timestamp')) + DAY_IN_SECONDS); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | $i18n = array( |
| 156 | - 'ajax_url' => admin_url( 'admin-ajax.php' ), |
|
| 157 | - 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
|
| 158 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 159 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 160 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
| 156 | + 'ajax_url' => admin_url('admin-ajax.php'), |
|
| 157 | + 'post_ID' => isset($post->ID) ? $post->ID : '', |
|
| 158 | + 'wpinv_nonce' => wp_create_nonce('wpinv-nonce'), |
|
| 159 | + 'rest_nonce' => wp_create_nonce('wp_rest'), |
|
| 160 | + 'rest_root' => esc_url_raw(rest_url()), |
|
| 161 | 161 | 'date_range' => $date_range, |
| 162 | - 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
|
| 163 | - 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
|
| 164 | - 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
|
| 165 | - 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
|
| 162 | + 'add_invoice_note_nonce' => wp_create_nonce('add-invoice-note'), |
|
| 163 | + 'delete_invoice_note_nonce' => wp_create_nonce('delete-invoice-note'), |
|
| 164 | + 'invoice_item_nonce' => wp_create_nonce('invoice-item'), |
|
| 165 | + 'billing_details_nonce' => wp_create_nonce('get-billing-details'), |
|
| 166 | 166 | 'tax' => wpinv_tax_amount(), |
| 167 | 167 | 'discount' => 0, |
| 168 | 168 | 'currency_symbol' => wpinv_currency_symbol(), |
@@ -171,39 +171,39 @@ discard block |
||
| 171 | 171 | 'thousand_sep' => wpinv_thousands_separator(), |
| 172 | 172 | 'decimal_sep' => wpinv_decimal_separator(), |
| 173 | 173 | 'decimals' => wpinv_decimals(), |
| 174 | - 'save_invoice' => __( 'Save Invoice', 'invoicing' ), |
|
| 175 | - 'status_publish' => wpinv_status_nicename( 'publish' ), |
|
| 176 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
| 177 | - 'delete_tax_rate' => __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ), |
|
| 178 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
| 179 | - 'FillBillingDetails' => __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ), |
|
| 180 | - 'confirmCalcTotals' => __( 'Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing' ), |
|
| 181 | - 'AreYouSure' => __( 'Are you sure?', 'invoicing' ), |
|
| 182 | - 'errDeleteItem' => __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ), |
|
| 183 | - 'delete_subscription' => __( 'Are you sure you want to delete this subscription?', 'invoicing' ), |
|
| 184 | - 'action_edit' => __( 'Edit', 'invoicing' ), |
|
| 185 | - 'action_cancel' => __( 'Cancel', 'invoicing' ), |
|
| 186 | - 'item_description' => __( 'Item Description', 'invoicing' ), |
|
| 187 | - 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
|
| 188 | - 'discount_description' => __( 'Discount Description', 'invoicing' ), |
|
| 189 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
| 190 | - 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 191 | - 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 192 | - 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 193 | - 'graphs' => array_merge( ['refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax'], array_keys( wpinv_get_report_graphs() ) ), |
|
| 174 | + 'save_invoice' => __('Save Invoice', 'invoicing'), |
|
| 175 | + 'status_publish' => wpinv_status_nicename('publish'), |
|
| 176 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
| 177 | + 'delete_tax_rate' => __('Are you sure you wish to delete this tax rate?', 'invoicing'), |
|
| 178 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
| 179 | + 'FillBillingDetails' => __('Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing'), |
|
| 180 | + 'confirmCalcTotals' => __('Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing'), |
|
| 181 | + 'AreYouSure' => __('Are you sure?', 'invoicing'), |
|
| 182 | + 'errDeleteItem' => __('This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing'), |
|
| 183 | + 'delete_subscription' => __('Are you sure you want to delete this subscription?', 'invoicing'), |
|
| 184 | + 'action_edit' => __('Edit', 'invoicing'), |
|
| 185 | + 'action_cancel' => __('Cancel', 'invoicing'), |
|
| 186 | + 'item_description' => __('Item Description', 'invoicing'), |
|
| 187 | + 'invoice_description' => __('Invoice Description', 'invoicing'), |
|
| 188 | + 'discount_description' => __('Discount Description', 'invoicing'), |
|
| 189 | + 'searching' => __('Searching', 'invoicing'), |
|
| 190 | + 'loading' => __('Loading...', 'invoicing'), |
|
| 191 | + 'search_customers' => __('Enter customer name or email', 'invoicing'), |
|
| 192 | + 'search_items' => __('Enter item name', 'invoicing'), |
|
| 193 | + 'graphs' => array_merge(['refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax'], array_keys(wpinv_get_report_graphs())), |
|
| 194 | 194 | ); |
| 195 | 195 | |
| 196 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 196 | + if (!empty($post) && getpaid_is_invoice_post_type($post->post_type)) { |
|
| 197 | 197 | |
| 198 | - $invoice = new WPInv_Invoice( $post ); |
|
| 198 | + $invoice = new WPInv_Invoice($post); |
|
| 199 | 199 | $i18n['save_invoice'] = sprintf( |
| 200 | - __( 'Save %s', 'invoicing' ), |
|
| 201 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 200 | + __('Save %s', 'invoicing'), |
|
| 201 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 202 | 202 | ); |
| 203 | 203 | |
| 204 | 204 | $i18n['invoice_description'] = sprintf( |
| 205 | - __( '%s Description', 'invoicing' ), |
|
| 206 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 205 | + __('%s Description', 'invoicing'), |
|
| 206 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 207 | 207 | ); |
| 208 | 208 | |
| 209 | 209 | } |
@@ -217,24 +217,24 @@ discard block |
||
| 217 | 217 | * @param string $footer_text |
| 218 | 218 | * @return string |
| 219 | 219 | */ |
| 220 | - public function admin_footer_text( $footer_text ) { |
|
| 220 | + public function admin_footer_text($footer_text) { |
|
| 221 | 221 | global $current_screen; |
| 222 | 222 | |
| 223 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 223 | + $page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : ''; |
|
| 224 | 224 | |
| 225 | - if ( ! empty( $current_screen->post_type ) ) { |
|
| 225 | + if (!empty($current_screen->post_type)) { |
|
| 226 | 226 | $page = $current_screen->post_type; |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | // General styles. |
| 230 | - if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
|
| 230 | + if (apply_filters('getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing()) && false !== stripos($page, 'wpi')) { |
|
| 231 | 231 | |
| 232 | 232 | // Change the footer text |
| 233 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 233 | + if (!get_user_meta(get_current_user_id(), 'getpaid_admin_footer_text_rated', true)) { |
|
| 234 | 234 | |
| 235 | - $rating_url = esc_url( |
|
| 235 | + $rating_url = esc_url( |
|
| 236 | 236 | wp_nonce_url( |
| 237 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 237 | + admin_url('admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin'), |
|
| 238 | 238 | 'getpaid-nonce', |
| 239 | 239 | 'getpaid-nonce' |
| 240 | 240 | ) |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | |
| 243 | 243 | $footer_text = sprintf( |
| 244 | 244 | /* translators: %s: five stars */ |
| 245 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 245 | + __('If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing'), |
|
| 246 | 246 | "<a href='$rating_url'>★★★★★</a>" |
| 247 | 247 | ); |
| 248 | 248 | |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | |
| 251 | 251 | $footer_text = sprintf( |
| 252 | 252 | /* translators: %s: GetPaid */ |
| 253 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
| 253 | + __('Thank you for using %s!', 'invoicing'), |
|
| 254 | 254 | "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
| 255 | 255 | ); |
| 256 | 256 | |
@@ -267,8 +267,8 @@ discard block |
||
| 267 | 267 | * @since 2.0.0 |
| 268 | 268 | */ |
| 269 | 269 | public function redirect_to_wordpress_rating_page() { |
| 270 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 271 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 270 | + update_user_meta(get_current_user_id(), 'getpaid_admin_footer_text_rated', 1); |
|
| 271 | + wp_redirect('https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post'); |
|
| 272 | 272 | exit; |
| 273 | 273 | } |
| 274 | 274 | |
@@ -279,30 +279,30 @@ discard block |
||
| 279 | 279 | protected function load_payment_form_scripts() { |
| 280 | 280 | global $post; |
| 281 | 281 | |
| 282 | - wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION ); |
|
| 283 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 284 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 282 | + wp_enqueue_script('vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION); |
|
| 283 | + wp_enqueue_script('sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION); |
|
| 284 | + wp_enqueue_script('vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array('sortable', 'vue'), WPINV_VERSION); |
|
| 285 | 285 | |
| 286 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 287 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 286 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js'); |
|
| 287 | + wp_register_script('wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array('wpinv-admin-script', 'vue_draggable', 'wp-hooks'), $version); |
|
| 288 | 288 | |
| 289 | 289 | wp_localize_script( |
| 290 | 290 | 'wpinv-admin-payment-form-script', |
| 291 | 291 | 'wpinvPaymentFormAdmin', |
| 292 | 292 | array( |
| 293 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 294 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 293 | + 'elements' => wpinv_get_data('payment-form-elements'), |
|
| 294 | + 'form_elements' => getpaid_get_payment_form_elements($post->ID), |
|
| 295 | 295 | 'currency' => wpinv_currency_symbol(), |
| 296 | 296 | 'position' => wpinv_currency_position(), |
| 297 | 297 | 'decimals' => (int) wpinv_decimals(), |
| 298 | 298 | 'thousands_sep' => wpinv_thousands_separator(), |
| 299 | 299 | 'decimals_sep' => wpinv_decimal_separator(), |
| 300 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 300 | + 'form_items' => gepaid_get_form_items($post->ID), |
|
| 301 | 301 | 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
| 302 | 302 | ) |
| 303 | 303 | ); |
| 304 | 304 | |
| 305 | - wp_enqueue_script( 'wpinv-admin-payment-form-script' ); |
|
| 305 | + wp_enqueue_script('wpinv-admin-payment-form-script'); |
|
| 306 | 306 | |
| 307 | 307 | } |
| 308 | 308 | |
@@ -313,25 +313,25 @@ discard block |
||
| 313 | 313 | * @return string |
| 314 | 314 | * |
| 315 | 315 | */ |
| 316 | - public function admin_body_class( $classes ) { |
|
| 316 | + public function admin_body_class($classes) { |
|
| 317 | 317 | global $pagenow, $post, $current_screen; |
| 318 | 318 | |
| 319 | 319 | |
| 320 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 320 | + $page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : ''; |
|
| 321 | 321 | |
| 322 | - if ( ! empty( $current_screen->post_type ) ) { |
|
| 322 | + if (!empty($current_screen->post_type)) { |
|
| 323 | 323 | $page = $current_screen->post_type; |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - if ( false !== stripos( $page, 'wpi' ) ) { |
|
| 327 | - $classes .= ' wpi-' . sanitize_key( $page ); |
|
| 326 | + if (false !== stripos($page, 'wpi')) { |
|
| 327 | + $classes .= ' wpi-' . sanitize_key($page); |
|
| 328 | 328 | } |
| 329 | 329 | |
| 330 | - if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
|
| 330 | + if (in_array($page, wpinv_parse_list('wpi_invoice wpi_payment_form wpi_quote'))) { |
|
| 331 | 331 | $classes .= ' wpinv-cpt wpinv'; |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 334 | + if (getpaid_is_invoice_post_type($page)) { |
|
| 335 | 335 | $classes .= ' getpaid-is-invoice-cpt'; |
| 336 | 336 | } |
| 337 | 337 | |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | /** |
| 342 | 342 | * Maybe show the AyeCode Connect Notice. |
| 343 | 343 | */ |
| 344 | - public function init_ayecode_connect_helper(){ |
|
| 344 | + public function init_ayecode_connect_helper() { |
|
| 345 | 345 | |
| 346 | 346 | // Register with the deactivation survey class. |
| 347 | 347 | AyeCode_Deactivation_Survey::instance(array( |
@@ -349,20 +349,20 @@ discard block |
||
| 349 | 349 | 'version' => WPINV_VERSION, |
| 350 | 350 | 'support_url' => 'https://wpgetpaid.com/support/', |
| 351 | 351 | 'documentation_url' => 'https://docs.wpgetpaid.com/', |
| 352 | - 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 352 | + 'activated' => (int) get_option('gepaid_installed_on'), |
|
| 353 | 353 | )); |
| 354 | 354 | |
| 355 | 355 | new AyeCode_Connect_Helper( |
| 356 | 356 | array( |
| 357 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
| 358 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
| 359 | - 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
| 360 | - 'connect_button' => __("Connect Site","invoicing"), |
|
| 361 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
| 362 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
| 363 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
| 357 | + 'connect_title' => __("WP Invoicing - an AyeCode product!", "invoicing"), |
|
| 358 | + 'connect_external' => __("Please confirm you wish to connect your site?", "invoicing"), |
|
| 359 | + 'connect' => sprintf(__("<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s", "invoicing"), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>"), |
|
| 360 | + 'connect_button' => __("Connect Site", "invoicing"), |
|
| 361 | + 'connecting_button' => __("Connecting...", "invoicing"), |
|
| 362 | + 'error_localhost' => __("This service will only work with a live domain, not a localhost.", "invoicing"), |
|
| 363 | + 'error' => __("Something went wrong, please refresh and try again.", "invoicing"), |
|
| 364 | 364 | ), |
| 365 | - array( 'wpi-addons' ) |
|
| 365 | + array('wpi-addons') |
|
| 366 | 366 | ); |
| 367 | 367 | |
| 368 | 368 | } |
@@ -374,20 +374,20 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | public function activation_redirect() { |
| 376 | 376 | |
| 377 | - $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 377 | + $redirected = get_option('wpinv_redirected_to_settings'); |
|
| 378 | 378 | |
| 379 | - if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 379 | + if (!empty($redirected) || wp_doing_ajax() || !current_user_can('manage_options')) { |
|
| 380 | 380 | return; |
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | // Bail if activating from network, or bulk |
| 384 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 384 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
| 385 | 385 | return; |
| 386 | 386 | } |
| 387 | 387 | |
| 388 | - update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 388 | + update_option('wpinv_redirected_to_settings', 1); |
|
| 389 | 389 | |
| 390 | - wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 390 | + wp_safe_redirect(admin_url('index.php?page=gp-setup')); |
|
| 391 | 391 | exit; |
| 392 | 392 | |
| 393 | 393 | } |
@@ -397,9 +397,9 @@ discard block |
||
| 397 | 397 | */ |
| 398 | 398 | public function maybe_do_admin_action() { |
| 399 | 399 | |
| 400 | - if ( wpinv_current_user_can_manage_invoicing() && isset( $_REQUEST['getpaid-admin-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
| 401 | - $key = sanitize_key( $_REQUEST['getpaid-admin-action'] ); |
|
| 402 | - do_action( "getpaid_authenticated_admin_action_$key", $_REQUEST ); |
|
| 400 | + if (wpinv_current_user_can_manage_invoicing() && isset($_REQUEST['getpaid-admin-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
| 401 | + $key = sanitize_key($_REQUEST['getpaid-admin-action']); |
|
| 402 | + do_action("getpaid_authenticated_admin_action_$key", $_REQUEST); |
|
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | } |
@@ -409,24 +409,24 @@ discard block |
||
| 409 | 409 | * |
| 410 | 410 | * @param array $args |
| 411 | 411 | */ |
| 412 | - public function duplicate_invoice( $args ) { |
|
| 412 | + public function duplicate_invoice($args) { |
|
| 413 | 413 | |
| 414 | - if ( empty( $args['invoice_id'] ) ) { |
|
| 414 | + if (empty($args['invoice_id'])) { |
|
| 415 | 415 | return; |
| 416 | 416 | } |
| 417 | 417 | |
| 418 | - $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 418 | + $invoice = new WPInv_Invoice((int) $args['invoice_id']); |
|
| 419 | 419 | |
| 420 | - if ( ! $invoice->exists() ) { |
|
| 420 | + if (!$invoice->exists()) { |
|
| 421 | 421 | return; |
| 422 | 422 | } |
| 423 | 423 | |
| 424 | - $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 424 | + $new_invoice = getpaid_duplicate_invoice($invoice); |
|
| 425 | 425 | $new_invoice->save(); |
| 426 | 426 | |
| 427 | - if ( $new_invoice->exists() ) { |
|
| 427 | + if ($new_invoice->exists()) { |
|
| 428 | 428 | |
| 429 | - getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) ); |
|
| 429 | + getpaid_admin()->show_success(__('Invoice duplicated successfully.', 'newsletter-optin-box')); |
|
| 430 | 430 | |
| 431 | 431 | wp_safe_redirect( |
| 432 | 432 | add_query_arg( |
@@ -434,14 +434,14 @@ discard block |
||
| 434 | 434 | 'action' => 'edit', |
| 435 | 435 | 'post' => $new_invoice->get_id(), |
| 436 | 436 | ), |
| 437 | - admin_url( 'post.php' ) |
|
| 437 | + admin_url('post.php') |
|
| 438 | 438 | ) |
| 439 | 439 | ); |
| 440 | 440 | exit; |
| 441 | 441 | |
| 442 | 442 | } |
| 443 | 443 | |
| 444 | - getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) ); |
|
| 444 | + getpaid_admin()->show_error(__('There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box')); |
|
| 445 | 445 | |
| 446 | 446 | } |
| 447 | 447 | |
@@ -450,34 +450,34 @@ discard block |
||
| 450 | 450 | * |
| 451 | 451 | * @param array $args |
| 452 | 452 | */ |
| 453 | - public function duplicate_payment_form( $args ) { |
|
| 453 | + public function duplicate_payment_form($args) { |
|
| 454 | 454 | |
| 455 | - if ( empty( $args['form_id'] ) ) { |
|
| 455 | + if (empty($args['form_id'])) { |
|
| 456 | 456 | return; |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | - $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 459 | + $form = new GetPaid_Payment_Form((int) $args['form_id']); |
|
| 460 | 460 | |
| 461 | - if ( ! $form->exists() ) { |
|
| 461 | + if (!$form->exists()) { |
|
| 462 | 462 | return; |
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | $new_form = new GetPaid_Payment_Form(); |
| 466 | - $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 467 | - $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 468 | - $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 469 | - $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 466 | + $new_form->set_author($form->get_author('edit')); |
|
| 467 | + $new_form->set_name($form->get_name('edit') . __('(copy)', 'invoicing')); |
|
| 468 | + $new_form->set_elements($form->get_elements('edit')); |
|
| 469 | + $new_form->set_items($form->get_items('edit')); |
|
| 470 | 470 | $new_form->save(); |
| 471 | 471 | |
| 472 | - if ( $new_form->exists() ) { |
|
| 473 | - $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 474 | - $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 472 | + if ($new_form->exists()) { |
|
| 473 | + $this->show_success(__('Form duplicated successfully', 'invoicing')); |
|
| 474 | + $url = get_edit_post_link($new_form->get_id(), 'edit'); |
|
| 475 | 475 | } else { |
| 476 | - $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 477 | - $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 476 | + $this->show_error(__('Unable to duplicate form', 'invoicing')); |
|
| 477 | + $url = remove_query_arg(array('getpaid-admin-action', 'form_id', 'getpaid-nonce')); |
|
| 478 | 478 | } |
| 479 | 479 | |
| 480 | - wp_redirect( $url ); |
|
| 480 | + wp_redirect($url); |
|
| 481 | 481 | exit; |
| 482 | 482 | } |
| 483 | 483 | |
@@ -486,9 +486,9 @@ discard block |
||
| 486 | 486 | * |
| 487 | 487 | * @param array $args |
| 488 | 488 | */ |
| 489 | - public function send_customer_invoice( $args ) { |
|
| 490 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 491 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 489 | + public function send_customer_invoice($args) { |
|
| 490 | + getpaid()->get('invoice_emails')->user_invoice(new WPInv_Invoice($args['invoice_id']), true); |
|
| 491 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
| 492 | 492 | exit; |
| 493 | 493 | } |
| 494 | 494 | |
@@ -497,16 +497,16 @@ discard block |
||
| 497 | 497 | * |
| 498 | 498 | * @param array $args |
| 499 | 499 | */ |
| 500 | - public function send_customer_payment_reminder( $args ) { |
|
| 501 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 500 | + public function send_customer_payment_reminder($args) { |
|
| 501 | + $sent = getpaid()->get('invoice_emails')->force_send_overdue_notice(new WPInv_Invoice($args['invoice_id'])); |
|
| 502 | 502 | |
| 503 | - if ( $sent ) { |
|
| 504 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 503 | + if ($sent) { |
|
| 504 | + $this->show_success(__('Payment reminder was successfully sent to the customer', 'invoicing')); |
|
| 505 | 505 | } else { |
| 506 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 506 | + $this->show_error(__('Could not sent payment reminder to the customer', 'invoicing')); |
|
| 507 | 507 | } |
| 508 | 508 | |
| 509 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 509 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
| 510 | 510 | exit; |
| 511 | 511 | } |
| 512 | 512 | |
@@ -516,8 +516,8 @@ discard block |
||
| 516 | 516 | */ |
| 517 | 517 | public function admin_reset_tax_rates() { |
| 518 | 518 | |
| 519 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 520 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 519 | + update_option('wpinv_tax_rates', wpinv_get_data('tax-rates')); |
|
| 520 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
| 521 | 521 | exit; |
| 522 | 522 | |
| 523 | 523 | } |
@@ -529,8 +529,8 @@ discard block |
||
| 529 | 529 | public function admin_create_missing_pages() { |
| 530 | 530 | $installer = new GetPaid_Installer(); |
| 531 | 531 | $installer->create_pages(); |
| 532 | - $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 533 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 532 | + $this->show_success(__('GetPaid pages updated.', 'invoicing')); |
|
| 533 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
| 534 | 534 | exit; |
| 535 | 535 | } |
| 536 | 536 | |
@@ -542,35 +542,35 @@ discard block |
||
| 542 | 542 | global $wpdb; |
| 543 | 543 | $installer = new GetPaid_Installer(); |
| 544 | 544 | |
| 545 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 545 | + if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'") != $wpdb->prefix . 'wpinv_subscriptions') { |
|
| 546 | 546 | $installer->create_subscriptions_table(); |
| 547 | 547 | |
| 548 | - if ( $wpdb->last_error !== '' ) { |
|
| 549 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 548 | + if ($wpdb->last_error !== '') { |
|
| 549 | + $this->show_error(__('Your GetPaid tables have been updated:', 'invoicing') . ' ' . $wpdb->last_error); |
|
| 550 | 550 | } |
| 551 | 551 | } |
| 552 | 552 | |
| 553 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 553 | + if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'") != $wpdb->prefix . 'getpaid_invoices') { |
|
| 554 | 554 | $installer->create_invoices_table(); |
| 555 | 555 | |
| 556 | - if ( $wpdb->last_error !== '' ) { |
|
| 557 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 556 | + if ($wpdb->last_error !== '') { |
|
| 557 | + $this->show_error(__('Your GetPaid tables have been updated:', 'invoicing') . ' ' . $wpdb->last_error); |
|
| 558 | 558 | } |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 561 | + if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'") != $wpdb->prefix . 'getpaid_invoice_items') { |
|
| 562 | 562 | $installer->create_invoice_items_table(); |
| 563 | 563 | |
| 564 | - if ( $wpdb->last_error !== '' ) { |
|
| 565 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 564 | + if ($wpdb->last_error !== '') { |
|
| 565 | + $this->show_error(__('Your GetPaid tables have been updated:', 'invoicing') . ' ' . $wpdb->last_error); |
|
| 566 | 566 | } |
| 567 | 567 | } |
| 568 | 568 | |
| 569 | - if ( ! $this->has_notices() ) { |
|
| 570 | - $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 569 | + if (!$this->has_notices()) { |
|
| 570 | + $this->show_success(__('Your GetPaid tables have been updated.', 'invoicing')); |
|
| 571 | 571 | } |
| 572 | 572 | |
| 573 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 573 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
| 574 | 574 | exit; |
| 575 | 575 | } |
| 576 | 576 | |
@@ -585,10 +585,10 @@ discard block |
||
| 585 | 585 | $installer->migrate_old_invoices(); |
| 586 | 586 | |
| 587 | 587 | // Show an admin message. |
| 588 | - $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 588 | + $this->show_success(__('Your invoices have been migrated.', 'invoicing')); |
|
| 589 | 589 | |
| 590 | 590 | // Redirect the admin. |
| 591 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 591 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
| 592 | 592 | exit; |
| 593 | 593 | |
| 594 | 594 | } |
@@ -600,18 +600,18 @@ discard block |
||
| 600 | 600 | public function admin_download_customers() { |
| 601 | 601 | global $wpdb; |
| 602 | 602 | |
| 603 | - $output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) ); |
|
| 603 | + $output = fopen('php://output', 'w') or die(__('Unsupported server', 'invoicing')); |
|
| 604 | 604 | |
| 605 | - header( "Content-Type:text/csv" ); |
|
| 606 | - header( "Content-Disposition:attachment;filename=customers.csv" ); |
|
| 605 | + header("Content-Type:text/csv"); |
|
| 606 | + header("Content-Disposition:attachment;filename=customers.csv"); |
|
| 607 | 607 | |
| 608 | 608 | $post_types = ''; |
| 609 | 609 | |
| 610 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 611 | - $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
| 610 | + foreach (array_keys(getpaid_get_invoice_post_types()) as $post_type) { |
|
| 611 | + $post_types .= $wpdb->prepare("post_type=%s OR ", $post_type); |
|
| 612 | 612 | } |
| 613 | 613 | |
| 614 | - $post_types = rtrim( $post_types, ' OR' ); |
|
| 614 | + $post_types = rtrim($post_types, ' OR'); |
|
| 615 | 615 | |
| 616 | 616 | $customers = $wpdb->get_col( |
| 617 | 617 | $wpdb->prepare( |
@@ -620,58 +620,58 @@ discard block |
||
| 620 | 620 | ); |
| 621 | 621 | |
| 622 | 622 | $columns = array( |
| 623 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 624 | - 'email' => __( 'Email', 'invoicing' ), |
|
| 625 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 626 | - 'state' => __( 'State', 'invoicing' ), |
|
| 627 | - 'city' => __( 'City', 'invoicing' ), |
|
| 628 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 629 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 630 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 631 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 632 | - 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 633 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 634 | - 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 635 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
| 623 | + 'name' => __('Name', 'invoicing'), |
|
| 624 | + 'email' => __('Email', 'invoicing'), |
|
| 625 | + 'country' => __('Country', 'invoicing'), |
|
| 626 | + 'state' => __('State', 'invoicing'), |
|
| 627 | + 'city' => __('City', 'invoicing'), |
|
| 628 | + 'zip' => __('ZIP', 'invoicing'), |
|
| 629 | + 'address' => __('Address', 'invoicing'), |
|
| 630 | + 'phone' => __('Phone', 'invoicing'), |
|
| 631 | + 'company' => __('Company', 'invoicing'), |
|
| 632 | + 'company_id' => __('Company ID', 'invoicing'), |
|
| 633 | + 'invoices' => __('Invoices', 'invoicing'), |
|
| 634 | + 'total_raw' => __('Total Spend', 'invoicing'), |
|
| 635 | + 'signup' => __('Date created', 'invoicing'), |
|
| 636 | 636 | ); |
| 637 | 637 | |
| 638 | 638 | // Output the csv column headers. |
| 639 | - fputcsv( $output, array_values( $columns ) ); |
|
| 639 | + fputcsv($output, array_values($columns)); |
|
| 640 | 640 | |
| 641 | 641 | // Loop through |
| 642 | 642 | $table = new WPInv_Customers_Table(); |
| 643 | - foreach ( $customers as $customer_id ) { |
|
| 643 | + foreach ($customers as $customer_id) { |
|
| 644 | 644 | |
| 645 | - $user = get_user_by( 'id', $customer_id ); |
|
| 645 | + $user = get_user_by('id', $customer_id); |
|
| 646 | 646 | $row = array(); |
| 647 | - if ( empty( $user ) ) { |
|
| 647 | + if (empty($user)) { |
|
| 648 | 648 | continue; |
| 649 | 649 | } |
| 650 | 650 | |
| 651 | - foreach ( array_keys( $columns ) as $column ) { |
|
| 651 | + foreach (array_keys($columns) as $column) { |
|
| 652 | 652 | |
| 653 | 653 | $method = 'column_' . $column; |
| 654 | 654 | |
| 655 | - if ( 'name' == $column ) { |
|
| 656 | - $value = esc_html( $user->display_name ); |
|
| 657 | - } else if( 'email' == $column ) { |
|
| 658 | - $value = sanitize_email( $user->user_email ); |
|
| 659 | - } else if ( is_callable( array( $table, $method ) ) ) { |
|
| 660 | - $value = strip_tags( $table->$method( $user ) ); |
|
| 655 | + if ('name' == $column) { |
|
| 656 | + $value = esc_html($user->display_name); |
|
| 657 | + } else if ('email' == $column) { |
|
| 658 | + $value = sanitize_email($user->user_email); |
|
| 659 | + } else if (is_callable(array($table, $method))) { |
|
| 660 | + $value = strip_tags($table->$method($user)); |
|
| 661 | 661 | } |
| 662 | 662 | |
| 663 | - if ( empty( $value ) ) { |
|
| 664 | - $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 663 | + if (empty($value)) { |
|
| 664 | + $value = esc_html(get_user_meta($user->ID, '_wpinv_' . $column, true)); |
|
| 665 | 665 | } |
| 666 | 666 | |
| 667 | 667 | $row[] = $value; |
| 668 | 668 | |
| 669 | 669 | } |
| 670 | 670 | |
| 671 | - fputcsv( $output, $row ); |
|
| 671 | + fputcsv($output, $row); |
|
| 672 | 672 | } |
| 673 | 673 | |
| 674 | - fclose( $output ); |
|
| 674 | + fclose($output); |
|
| 675 | 675 | exit; |
| 676 | 676 | |
| 677 | 677 | } |
@@ -681,29 +681,29 @@ discard block |
||
| 681 | 681 | * |
| 682 | 682 | * @param array $data |
| 683 | 683 | */ |
| 684 | - public function admin_install_plugin( $data ) { |
|
| 684 | + public function admin_install_plugin($data) { |
|
| 685 | 685 | |
| 686 | - if ( ! empty( $data['plugins'] ) ) { |
|
| 686 | + if (!empty($data['plugins'])) { |
|
| 687 | 687 | include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
| 688 | 688 | wp_cache_flush(); |
| 689 | 689 | |
| 690 | - foreach ( $data['plugins'] as $slug => $file ) { |
|
| 691 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 692 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 693 | - $installed = $upgrader->install( $plugin_zip ); |
|
| 690 | + foreach ($data['plugins'] as $slug => $file) { |
|
| 691 | + $plugin_zip = esc_url('https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip'); |
|
| 692 | + $upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin()); |
|
| 693 | + $installed = $upgrader->install($plugin_zip); |
|
| 694 | 694 | |
| 695 | - if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 696 | - activate_plugin( $file, '', false, true ); |
|
| 695 | + if (!is_wp_error($installed) && $installed) { |
|
| 696 | + activate_plugin($file, '', false, true); |
|
| 697 | 697 | } else { |
| 698 | - wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 698 | + wpinv_error_log($upgrader->skin->get_upgrade_messages(), false); |
|
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | } |
| 702 | 702 | |
| 703 | 703 | } |
| 704 | 704 | |
| 705 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 706 | - wp_safe_redirect( $redirect ); |
|
| 705 | + $redirect = isset($data['redirect']) ? esc_url_raw($data['redirect']) : admin_url('plugins.php'); |
|
| 706 | + wp_safe_redirect($redirect); |
|
| 707 | 707 | exit; |
| 708 | 708 | |
| 709 | 709 | } |
@@ -713,42 +713,42 @@ discard block |
||
| 713 | 713 | * |
| 714 | 714 | * @param array $data |
| 715 | 715 | */ |
| 716 | - public function admin_connect_gateway( $data ) { |
|
| 716 | + public function admin_connect_gateway($data) { |
|
| 717 | 717 | |
| 718 | - if ( ! empty( $data['plugin'] ) ) { |
|
| 718 | + if (!empty($data['plugin'])) { |
|
| 719 | 719 | |
| 720 | - $gateway = sanitize_key( $data['plugin'] ); |
|
| 721 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 720 | + $gateway = sanitize_key($data['plugin']); |
|
| 721 | + $connect_url = apply_filters("getpaid_get_{$gateway}_connect_url", false, $data); |
|
| 722 | 722 | |
| 723 | - if ( ! empty( $connect_url ) ) { |
|
| 724 | - wp_redirect( $connect_url ); |
|
| 723 | + if (!empty($connect_url)) { |
|
| 724 | + wp_redirect($connect_url); |
|
| 725 | 725 | exit; |
| 726 | 726 | } |
| 727 | 727 | |
| 728 | - if ( 'stripe' == $data['plugin'] ) { |
|
| 728 | + if ('stripe' == $data['plugin']) { |
|
| 729 | 729 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 730 | 730 | include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
| 731 | 731 | wp_cache_flush(); |
| 732 | 732 | |
| 733 | - if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 734 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 735 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 736 | - $upgrader->install( $plugin_zip ); |
|
| 733 | + if (!array_key_exists('getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins())) { |
|
| 734 | + $plugin_zip = esc_url('https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip'); |
|
| 735 | + $upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin()); |
|
| 736 | + $upgrader->install($plugin_zip); |
|
| 737 | 737 | } |
| 738 | 738 | |
| 739 | - activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 739 | + activate_plugin('getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true); |
|
| 740 | 740 | } |
| 741 | 741 | |
| 742 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 743 | - if ( ! empty( $connect_url ) ) { |
|
| 744 | - wp_redirect( $connect_url ); |
|
| 742 | + $connect_url = apply_filters("getpaid_get_{$gateway}_connect_url", false, $data); |
|
| 743 | + if (!empty($connect_url)) { |
|
| 744 | + wp_redirect($connect_url); |
|
| 745 | 745 | exit; |
| 746 | 746 | } |
| 747 | 747 | |
| 748 | 748 | } |
| 749 | 749 | |
| 750 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 751 | - wp_safe_redirect( $redirect ); |
|
| 750 | + $redirect = isset($data['redirect']) ? esc_url_raw(urldecode($data['redirect'])) : admin_url('admin.php?page=wpinv-settings&tab=gateways'); |
|
| 751 | + wp_safe_redirect($redirect); |
|
| 752 | 752 | exit; |
| 753 | 753 | |
| 754 | 754 | } |
@@ -762,36 +762,36 @@ discard block |
||
| 762 | 762 | |
| 763 | 763 | // Fetch all invoices that have discount codes. |
| 764 | 764 | $table = $wpdb->prefix . 'getpaid_invoices'; |
| 765 | - $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 765 | + $invoices = $wpdb->get_col("SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''"); |
|
| 766 | 766 | |
| 767 | - foreach ( $invoices as $invoice ) { |
|
| 767 | + foreach ($invoices as $invoice) { |
|
| 768 | 768 | |
| 769 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 769 | + $invoice = new WPInv_Invoice($invoice); |
|
| 770 | 770 | |
| 771 | - if ( ! $invoice->exists() ) { |
|
| 771 | + if (!$invoice->exists()) { |
|
| 772 | 772 | continue; |
| 773 | 773 | } |
| 774 | 774 | |
| 775 | 775 | // Abort if the discount does not exist or does not apply here. |
| 776 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 777 | - if ( ! $discount->exists() ) { |
|
| 776 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
| 777 | + if (!$discount->exists()) { |
|
| 778 | 778 | continue; |
| 779 | 779 | } |
| 780 | 780 | |
| 781 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 781 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
| 782 | 782 | $invoice->recalculate_total(); |
| 783 | 783 | |
| 784 | - if ( $invoice->get_total_discount() > 0 ) { |
|
| 784 | + if ($invoice->get_total_discount() > 0) { |
|
| 785 | 785 | $invoice->save(); |
| 786 | 786 | } |
| 787 | 787 | |
| 788 | 788 | } |
| 789 | 789 | |
| 790 | 790 | // Show an admin message. |
| 791 | - $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 791 | + $this->show_success(__('Discounts have been recalculated.', 'invoicing')); |
|
| 792 | 792 | |
| 793 | 793 | // Redirect the admin. |
| 794 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 794 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
| 795 | 795 | exit; |
| 796 | 796 | |
| 797 | 797 | } |
@@ -803,8 +803,8 @@ discard block |
||
| 803 | 803 | * @return array |
| 804 | 804 | */ |
| 805 | 805 | public function get_notices() { |
| 806 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
| 807 | - return is_array( $notices ) ? $notices : array(); |
|
| 806 | + $notices = get_option('wpinv_admin_notices'); |
|
| 807 | + return is_array($notices) ? $notices : array(); |
|
| 808 | 808 | } |
| 809 | 809 | |
| 810 | 810 | /** |
@@ -814,7 +814,7 @@ discard block |
||
| 814 | 814 | * @return array |
| 815 | 815 | */ |
| 816 | 816 | public function has_notices() { |
| 817 | - return count( $this->get_notices() ) > 0; |
|
| 817 | + return count($this->get_notices()) > 0; |
|
| 818 | 818 | } |
| 819 | 819 | |
| 820 | 820 | /** |
@@ -824,7 +824,7 @@ discard block |
||
| 824 | 824 | * @since 1.0.19 |
| 825 | 825 | */ |
| 826 | 826 | public function clear_notices() { |
| 827 | - delete_option( 'wpinv_admin_notices' ); |
|
| 827 | + delete_option('wpinv_admin_notices'); |
|
| 828 | 828 | } |
| 829 | 829 | |
| 830 | 830 | /** |
@@ -833,16 +833,16 @@ discard block |
||
| 833 | 833 | * @access public |
| 834 | 834 | * @since 1.0.19 |
| 835 | 835 | */ |
| 836 | - public function save_notice( $type, $message ) { |
|
| 836 | + public function save_notice($type, $message) { |
|
| 837 | 837 | $notices = $this->get_notices(); |
| 838 | 838 | |
| 839 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
| 840 | - $notices[ $type ] = array(); |
|
| 839 | + if (empty($notices[$type]) || !is_array($notices[$type])) { |
|
| 840 | + $notices[$type] = array(); |
|
| 841 | 841 | } |
| 842 | 842 | |
| 843 | - $notices[ $type ][] = $message; |
|
| 843 | + $notices[$type][] = $message; |
|
| 844 | 844 | |
| 845 | - update_option( 'wpinv_admin_notices', $notices ); |
|
| 845 | + update_option('wpinv_admin_notices', $notices); |
|
| 846 | 846 | } |
| 847 | 847 | |
| 848 | 848 | /** |
@@ -852,8 +852,8 @@ discard block |
||
| 852 | 852 | * @access public |
| 853 | 853 | * @since 1.0.19 |
| 854 | 854 | */ |
| 855 | - public function show_success( $msg ) { |
|
| 856 | - $this->save_notice( 'success', $msg ); |
|
| 855 | + public function show_success($msg) { |
|
| 856 | + $this->save_notice('success', $msg); |
|
| 857 | 857 | } |
| 858 | 858 | |
| 859 | 859 | /** |
@@ -863,8 +863,8 @@ discard block |
||
| 863 | 863 | * @param string $msg The message to qeue. |
| 864 | 864 | * @since 1.0.19 |
| 865 | 865 | */ |
| 866 | - public function show_error( $msg ) { |
|
| 867 | - $this->save_notice( 'error', $msg ); |
|
| 866 | + public function show_error($msg) { |
|
| 867 | + $this->save_notice('error', $msg); |
|
| 868 | 868 | } |
| 869 | 869 | |
| 870 | 870 | /** |
@@ -874,8 +874,8 @@ discard block |
||
| 874 | 874 | * @param string $msg The message to qeue. |
| 875 | 875 | * @since 1.0.19 |
| 876 | 876 | */ |
| 877 | - public function show_warning( $msg ) { |
|
| 878 | - $this->save_notice( 'warning', $msg ); |
|
| 877 | + public function show_warning($msg) { |
|
| 878 | + $this->save_notice('warning', $msg); |
|
| 879 | 879 | } |
| 880 | 880 | |
| 881 | 881 | /** |
@@ -885,8 +885,8 @@ discard block |
||
| 885 | 885 | * @param string $msg The message to qeue. |
| 886 | 886 | * @since 1.0.19 |
| 887 | 887 | */ |
| 888 | - public function show_info( $msg ) { |
|
| 889 | - $this->save_notice( 'info', $msg ); |
|
| 888 | + public function show_info($msg) { |
|
| 889 | + $this->save_notice('info', $msg); |
|
| 890 | 890 | } |
| 891 | 891 | |
| 892 | 892 | /** |
@@ -900,30 +900,30 @@ discard block |
||
| 900 | 900 | $notices = $this->get_notices(); |
| 901 | 901 | $this->clear_notices(); |
| 902 | 902 | |
| 903 | - foreach ( $notices as $type => $messages ) { |
|
| 903 | + foreach ($notices as $type => $messages) { |
|
| 904 | 904 | |
| 905 | - if ( ! is_array( $messages ) ) { |
|
| 905 | + if (!is_array($messages)) { |
|
| 906 | 906 | continue; |
| 907 | 907 | } |
| 908 | 908 | |
| 909 | - $type = sanitize_key( $type ); |
|
| 910 | - foreach ( $messages as $message ) { |
|
| 911 | - $message = wp_kses_post( $message ); |
|
| 909 | + $type = sanitize_key($type); |
|
| 910 | + foreach ($messages as $message) { |
|
| 911 | + $message = wp_kses_post($message); |
|
| 912 | 912 | echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
| 913 | 913 | } |
| 914 | 914 | |
| 915 | 915 | } |
| 916 | 916 | |
| 917 | - foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 917 | + foreach (array('checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page') as $page) { |
|
| 918 | 918 | |
| 919 | - if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 920 | - $url = wp_nonce_url( |
|
| 921 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 919 | + if (!is_numeric(wpinv_get_option($page, false))) { |
|
| 920 | + $url = wp_nonce_url( |
|
| 921 | + add_query_arg('getpaid-admin-action', 'create_missing_pages'), |
|
| 922 | 922 | 'getpaid-nonce', |
| 923 | 923 | 'getpaid-nonce' |
| 924 | 924 | ); |
| 925 | - $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 926 | - $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 925 | + $message = __('Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing'); |
|
| 926 | + $message2 = __('Generate Pages', 'invoicing'); |
|
| 927 | 927 | echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>"; |
| 928 | 928 | break; |
| 929 | 929 | } |
@@ -5,110 +5,110 @@ discard block |
||
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | - exit; // Exit if accessed directly |
|
| 8 | + exit; // Exit if accessed directly |
|
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | if ( ! class_exists( 'GetPaid_Admin_Profile', false ) ) : |
| 12 | 12 | |
| 13 | - /** |
|
| 14 | - * GetPaid_Admin_Profile Class. |
|
| 15 | - */ |
|
| 16 | - class GetPaid_Admin_Profile { |
|
| 17 | - |
|
| 18 | - /** |
|
| 19 | - * Hook in tabs. |
|
| 20 | - */ |
|
| 21 | - public function __construct() { |
|
| 22 | - add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | - add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 24 | - |
|
| 25 | - add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | - add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Get Address Fields for the edit user pages. |
|
| 31 | - * |
|
| 32 | - * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
| 33 | - */ |
|
| 34 | - public function get_customer_meta_fields() { |
|
| 35 | - |
|
| 36 | - $show_fields = apply_filters( |
|
| 37 | - 'getpaid_customer_meta_fields', |
|
| 38 | - array( |
|
| 39 | - 'billing' => array( |
|
| 40 | - 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 41 | - 'fields' => array( |
|
| 42 | - '_wpinv_first_name' => array( |
|
| 43 | - 'label' => __( 'First name', 'invoicing' ), |
|
| 44 | - 'description' => '', |
|
| 45 | - ), |
|
| 46 | - '_wpinv_last_name' => array( |
|
| 47 | - 'label' => __( 'Last name', 'invoicing' ), |
|
| 48 | - 'description' => '', |
|
| 49 | - ), |
|
| 50 | - '_wpinv_company' => array( |
|
| 51 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 52 | - 'description' => '', |
|
| 53 | - ), |
|
| 54 | - '_wpinv_company_id' => array( |
|
| 55 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
| 56 | - 'description' => '', |
|
| 57 | - ), |
|
| 58 | - '_wpinv_address' => array( |
|
| 59 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 60 | - 'description' => '', |
|
| 61 | - ), |
|
| 62 | - '_wpinv_city' => array( |
|
| 63 | - 'label' => __( 'City', 'invoicing' ), |
|
| 64 | - 'description' => '', |
|
| 65 | - ), |
|
| 66 | - '_wpinv_zip' => array( |
|
| 67 | - 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 68 | - 'description' => '', |
|
| 69 | - ), |
|
| 70 | - '_wpinv_country' => array( |
|
| 71 | - 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 72 | - 'description' => '', |
|
| 73 | - 'class' => 'getpaid_js_field-country', |
|
| 74 | - 'type' => 'select', |
|
| 75 | - 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 76 | - ), |
|
| 77 | - '_wpinv_state' => array( |
|
| 78 | - 'label' => __( 'State / County', 'invoicing' ), |
|
| 79 | - 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 80 | - 'class' => 'getpaid_js_field-state regular-text', |
|
| 81 | - ), |
|
| 82 | - '_wpinv_phone' => array( |
|
| 83 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 84 | - 'description' => '', |
|
| 85 | - ), |
|
| 86 | - '_wpinv_vat_number' => array( |
|
| 87 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 88 | - 'description' => '', |
|
| 89 | - ), |
|
| 90 | - ), |
|
| 91 | - ), |
|
| 92 | - ) |
|
| 93 | - ); |
|
| 94 | - return $show_fields; |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - /** |
|
| 98 | - * Show Address Fields on edit user pages. |
|
| 99 | - * |
|
| 100 | - * @param WP_User $user |
|
| 101 | - */ |
|
| 102 | - public function add_customer_meta_fields( $user ) { |
|
| 103 | - |
|
| 104 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 105 | - return; |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - $show_fields = $this->get_customer_meta_fields(); |
|
| 109 | - |
|
| 110 | - foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 111 | - ?> |
|
| 13 | + /** |
|
| 14 | + * GetPaid_Admin_Profile Class. |
|
| 15 | + */ |
|
| 16 | + class GetPaid_Admin_Profile { |
|
| 17 | + |
|
| 18 | + /** |
|
| 19 | + * Hook in tabs. |
|
| 20 | + */ |
|
| 21 | + public function __construct() { |
|
| 22 | + add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | + add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 24 | + |
|
| 25 | + add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | + add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Get Address Fields for the edit user pages. |
|
| 31 | + * |
|
| 32 | + * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
| 33 | + */ |
|
| 34 | + public function get_customer_meta_fields() { |
|
| 35 | + |
|
| 36 | + $show_fields = apply_filters( |
|
| 37 | + 'getpaid_customer_meta_fields', |
|
| 38 | + array( |
|
| 39 | + 'billing' => array( |
|
| 40 | + 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 41 | + 'fields' => array( |
|
| 42 | + '_wpinv_first_name' => array( |
|
| 43 | + 'label' => __( 'First name', 'invoicing' ), |
|
| 44 | + 'description' => '', |
|
| 45 | + ), |
|
| 46 | + '_wpinv_last_name' => array( |
|
| 47 | + 'label' => __( 'Last name', 'invoicing' ), |
|
| 48 | + 'description' => '', |
|
| 49 | + ), |
|
| 50 | + '_wpinv_company' => array( |
|
| 51 | + 'label' => __( 'Company', 'invoicing' ), |
|
| 52 | + 'description' => '', |
|
| 53 | + ), |
|
| 54 | + '_wpinv_company_id' => array( |
|
| 55 | + 'label' => __( 'Company ID', 'invoicing' ), |
|
| 56 | + 'description' => '', |
|
| 57 | + ), |
|
| 58 | + '_wpinv_address' => array( |
|
| 59 | + 'label' => __( 'Address', 'invoicing' ), |
|
| 60 | + 'description' => '', |
|
| 61 | + ), |
|
| 62 | + '_wpinv_city' => array( |
|
| 63 | + 'label' => __( 'City', 'invoicing' ), |
|
| 64 | + 'description' => '', |
|
| 65 | + ), |
|
| 66 | + '_wpinv_zip' => array( |
|
| 67 | + 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 68 | + 'description' => '', |
|
| 69 | + ), |
|
| 70 | + '_wpinv_country' => array( |
|
| 71 | + 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 72 | + 'description' => '', |
|
| 73 | + 'class' => 'getpaid_js_field-country', |
|
| 74 | + 'type' => 'select', |
|
| 75 | + 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 76 | + ), |
|
| 77 | + '_wpinv_state' => array( |
|
| 78 | + 'label' => __( 'State / County', 'invoicing' ), |
|
| 79 | + 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 80 | + 'class' => 'getpaid_js_field-state regular-text', |
|
| 81 | + ), |
|
| 82 | + '_wpinv_phone' => array( |
|
| 83 | + 'label' => __( 'Phone', 'invoicing' ), |
|
| 84 | + 'description' => '', |
|
| 85 | + ), |
|
| 86 | + '_wpinv_vat_number' => array( |
|
| 87 | + 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 88 | + 'description' => '', |
|
| 89 | + ), |
|
| 90 | + ), |
|
| 91 | + ), |
|
| 92 | + ) |
|
| 93 | + ); |
|
| 94 | + return $show_fields; |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + /** |
|
| 98 | + * Show Address Fields on edit user pages. |
|
| 99 | + * |
|
| 100 | + * @param WP_User $user |
|
| 101 | + */ |
|
| 102 | + public function add_customer_meta_fields( $user ) { |
|
| 103 | + |
|
| 104 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 105 | + return; |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + $show_fields = $this->get_customer_meta_fields(); |
|
| 109 | + |
|
| 110 | + foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 111 | + ?> |
|
| 112 | 112 | <h2><?php echo esc_html( $fieldset['title'] ); ?></h2> |
| 113 | 113 | <table class="form-table" id="<?php echo esc_attr( 'getpaid-fieldset-' . $fieldset_key ); ?>"> |
| 114 | 114 | <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> |
@@ -120,9 +120,9 @@ discard block |
||
| 120 | 120 | <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> |
| 121 | 121 | <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?> wpi_select2" style="width: 25em;"> |
| 122 | 122 | <?php |
| 123 | - $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 124 | - foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 125 | - ?> |
|
| 123 | + $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 124 | + foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 125 | + ?> |
|
| 126 | 126 | <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> |
| 127 | 127 | <?php endforeach; ?> |
| 128 | 128 | </select> |
@@ -137,52 +137,52 @@ discard block |
||
| 137 | 137 | <?php endforeach; ?> |
| 138 | 138 | </table> |
| 139 | 139 | <?php |
| 140 | - endforeach; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * Save Address Fields on edit user pages. |
|
| 145 | - * |
|
| 146 | - * @param int $user_id User ID of the user being saved |
|
| 147 | - */ |
|
| 148 | - public function save_customer_meta_fields( $user_id ) { |
|
| 149 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 150 | - return; |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - $save_fields = $this->get_customer_meta_fields(); |
|
| 154 | - |
|
| 155 | - foreach ( $save_fields as $fieldset ) { |
|
| 156 | - |
|
| 157 | - foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 158 | - |
|
| 159 | - if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 160 | - update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
| 161 | - } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 162 | - update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 163 | - } |
|
| 164 | - } |
|
| 165 | - } |
|
| 166 | - } |
|
| 167 | - |
|
| 168 | - /** |
|
| 169 | - * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
| 170 | - * |
|
| 171 | - * @since 3.1.0 |
|
| 172 | - * @param int $user_id User ID of the user being edited |
|
| 173 | - * @param string $key Key for user meta field |
|
| 174 | - * @return string |
|
| 175 | - */ |
|
| 176 | - protected function get_user_meta( $user_id, $key ) { |
|
| 177 | - $value = get_user_meta( $user_id, $key, true ); |
|
| 178 | - $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 179 | - if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 180 | - $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - return $value; |
|
| 184 | - } |
|
| 185 | - } |
|
| 140 | + endforeach; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * Save Address Fields on edit user pages. |
|
| 145 | + * |
|
| 146 | + * @param int $user_id User ID of the user being saved |
|
| 147 | + */ |
|
| 148 | + public function save_customer_meta_fields( $user_id ) { |
|
| 149 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 150 | + return; |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + $save_fields = $this->get_customer_meta_fields(); |
|
| 154 | + |
|
| 155 | + foreach ( $save_fields as $fieldset ) { |
|
| 156 | + |
|
| 157 | + foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 158 | + |
|
| 159 | + if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 160 | + update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
| 161 | + } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 162 | + update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 163 | + } |
|
| 164 | + } |
|
| 165 | + } |
|
| 166 | + } |
|
| 167 | + |
|
| 168 | + /** |
|
| 169 | + * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
| 170 | + * |
|
| 171 | + * @since 3.1.0 |
|
| 172 | + * @param int $user_id User ID of the user being edited |
|
| 173 | + * @param string $key Key for user meta field |
|
| 174 | + * @return string |
|
| 175 | + */ |
|
| 176 | + protected function get_user_meta( $user_id, $key ) { |
|
| 177 | + $value = get_user_meta( $user_id, $key, true ); |
|
| 178 | + $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 179 | + if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 180 | + $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + return $value; |
|
| 184 | + } |
|
| 185 | + } |
|
| 186 | 186 | |
| 187 | 187 | endif; |
| 188 | 188 | |
@@ -4,11 +4,11 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 7 | +if (!defined('ABSPATH')) { |
|
| 8 | 8 | exit; // Exit if accessed directly |
| 9 | 9 | } |
| 10 | 10 | |
| 11 | -if ( ! class_exists( 'GetPaid_Admin_Profile', false ) ) : |
|
| 11 | +if (!class_exists('GetPaid_Admin_Profile', false)) : |
|
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | 14 | * GetPaid_Admin_Profile Class. |
@@ -19,11 +19,11 @@ discard block |
||
| 19 | 19 | * Hook in tabs. |
| 20 | 20 | */ |
| 21 | 21 | public function __construct() { |
| 22 | - add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | - add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 22 | + add_action('show_user_profile', array($this, 'add_customer_meta_fields'), 100); |
|
| 23 | + add_action('edit_user_profile', array($this, 'add_customer_meta_fields'), 100); |
|
| 24 | 24 | |
| 25 | - add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | - add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 25 | + add_action('personal_options_update', array($this, 'save_customer_meta_fields')); |
|
| 26 | + add_action('edit_user_profile_update', array($this, 'save_customer_meta_fields')); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -37,54 +37,54 @@ discard block |
||
| 37 | 37 | 'getpaid_customer_meta_fields', |
| 38 | 38 | array( |
| 39 | 39 | 'billing' => array( |
| 40 | - 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 40 | + 'title' => __('Billing Details (GetPaid)', 'invoicing'), |
|
| 41 | 41 | 'fields' => array( |
| 42 | 42 | '_wpinv_first_name' => array( |
| 43 | - 'label' => __( 'First name', 'invoicing' ), |
|
| 43 | + 'label' => __('First name', 'invoicing'), |
|
| 44 | 44 | 'description' => '', |
| 45 | 45 | ), |
| 46 | 46 | '_wpinv_last_name' => array( |
| 47 | - 'label' => __( 'Last name', 'invoicing' ), |
|
| 47 | + 'label' => __('Last name', 'invoicing'), |
|
| 48 | 48 | 'description' => '', |
| 49 | 49 | ), |
| 50 | 50 | '_wpinv_company' => array( |
| 51 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 51 | + 'label' => __('Company', 'invoicing'), |
|
| 52 | 52 | 'description' => '', |
| 53 | 53 | ), |
| 54 | 54 | '_wpinv_company_id' => array( |
| 55 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
| 55 | + 'label' => __('Company ID', 'invoicing'), |
|
| 56 | 56 | 'description' => '', |
| 57 | 57 | ), |
| 58 | 58 | '_wpinv_address' => array( |
| 59 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 59 | + 'label' => __('Address', 'invoicing'), |
|
| 60 | 60 | 'description' => '', |
| 61 | 61 | ), |
| 62 | 62 | '_wpinv_city' => array( |
| 63 | - 'label' => __( 'City', 'invoicing' ), |
|
| 63 | + 'label' => __('City', 'invoicing'), |
|
| 64 | 64 | 'description' => '', |
| 65 | 65 | ), |
| 66 | 66 | '_wpinv_zip' => array( |
| 67 | - 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 67 | + 'label' => __('Postcode / ZIP', 'invoicing'), |
|
| 68 | 68 | 'description' => '', |
| 69 | 69 | ), |
| 70 | 70 | '_wpinv_country' => array( |
| 71 | - 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 71 | + 'label' => __('Country / Region', 'invoicing'), |
|
| 72 | 72 | 'description' => '', |
| 73 | 73 | 'class' => 'getpaid_js_field-country', |
| 74 | 74 | 'type' => 'select', |
| 75 | - 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 75 | + 'options' => array('' => __('Select a country / region…', 'invoicing')) + wpinv_get_country_list(), |
|
| 76 | 76 | ), |
| 77 | 77 | '_wpinv_state' => array( |
| 78 | - 'label' => __( 'State / County', 'invoicing' ), |
|
| 79 | - 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 78 | + 'label' => __('State / County', 'invoicing'), |
|
| 79 | + 'description' => __('State / County or state code', 'invoicing'), |
|
| 80 | 80 | 'class' => 'getpaid_js_field-state regular-text', |
| 81 | 81 | ), |
| 82 | 82 | '_wpinv_phone' => array( |
| 83 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 83 | + 'label' => __('Phone', 'invoicing'), |
|
| 84 | 84 | 'description' => '', |
| 85 | 85 | ), |
| 86 | 86 | '_wpinv_vat_number' => array( |
| 87 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 87 | + 'label' => __('VAT Number', 'invoicing'), |
|
| 88 | 88 | 'description' => '', |
| 89 | 89 | ), |
| 90 | 90 | ), |
@@ -99,39 +99,39 @@ discard block |
||
| 99 | 99 | * |
| 100 | 100 | * @param WP_User $user |
| 101 | 101 | */ |
| 102 | - public function add_customer_meta_fields( $user ) { |
|
| 102 | + public function add_customer_meta_fields($user) { |
|
| 103 | 103 | |
| 104 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 104 | + if (!apply_filters('getpaid_current_user_can_edit_customer_meta_fields', current_user_can('manage_options'), $user->ID)) { |
|
| 105 | 105 | return; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | $show_fields = $this->get_customer_meta_fields(); |
| 109 | 109 | |
| 110 | - foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 110 | + foreach ($show_fields as $fieldset_key => $fieldset) : |
|
| 111 | 111 | ?> |
| 112 | - <h2><?php echo esc_html( $fieldset['title'] ); ?></h2> |
|
| 113 | - <table class="form-table" id="<?php echo esc_attr( 'getpaid-fieldset-' . $fieldset_key ); ?>"> |
|
| 114 | - <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> |
|
| 112 | + <h2><?php echo esc_html($fieldset['title']); ?></h2> |
|
| 113 | + <table class="form-table" id="<?php echo esc_attr('getpaid-fieldset-' . $fieldset_key); ?>"> |
|
| 114 | + <?php foreach ($fieldset['fields'] as $key => $field) : ?> |
|
| 115 | 115 | <tr> |
| 116 | 116 | <th> |
| 117 | - <label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field['label'] ); ?></label> |
|
| 117 | + <label for="<?php echo esc_attr($key); ?>"><?php echo esc_html($field['label']); ?></label> |
|
| 118 | 118 | </th> |
| 119 | 119 | <td> |
| 120 | - <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> |
|
| 121 | - <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?> wpi_select2" style="width: 25em;"> |
|
| 120 | + <?php if (!empty($field['type']) && 'select' === $field['type']) : ?> |
|
| 121 | + <select name="<?php echo esc_attr($key); ?>" id="<?php echo esc_attr($key); ?>" class="<?php echo esc_attr($field['class']); ?> wpi_select2" style="width: 25em;"> |
|
| 122 | 122 | <?php |
| 123 | - $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 124 | - foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 123 | + $selected = esc_attr(get_user_meta($user->ID, $key, true)); |
|
| 124 | + foreach ($field['options'] as $option_key => $option_value) : |
|
| 125 | 125 | ?> |
| 126 | - <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> |
|
| 126 | + <option value="<?php echo esc_attr($option_key); ?>" <?php selected($selected, $option_key, true); ?>><?php echo esc_html($option_value); ?></option> |
|
| 127 | 127 | <?php endforeach; ?> |
| 128 | 128 | </select> |
| 129 | - <?php elseif ( ! empty( $field['type'] ) && 'checkbox' === $field['type'] ) : ?> |
|
| 130 | - <input type="checkbox" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="1" class="<?php echo esc_attr( $field['class'] ); ?>" <?php checked( (int) get_user_meta( $user->ID, $key, true ), 1, true ); ?> /> |
|
| 129 | + <?php elseif (!empty($field['type']) && 'checkbox' === $field['type']) : ?> |
|
| 130 | + <input type="checkbox" name="<?php echo esc_attr($key); ?>" id="<?php echo esc_attr($key); ?>" value="1" class="<?php echo esc_attr($field['class']); ?>" <?php checked((int) get_user_meta($user->ID, $key, true), 1, true); ?> /> |
|
| 131 | 131 | <?php else : ?> |
| 132 | - <input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> |
|
| 132 | + <input type="text" name="<?php echo esc_attr($key); ?>" id="<?php echo esc_attr($key); ?>" value="<?php echo esc_attr($this->get_user_meta($user->ID, $key)); ?>" class="<?php echo (!empty($field['class']) ? esc_attr($field['class']) : 'regular-text'); ?>" /> |
|
| 133 | 133 | <?php endif; ?> |
| 134 | - <p class="description"><?php echo wp_kses_post( $field['description'] ); ?></p> |
|
| 134 | + <p class="description"><?php echo wp_kses_post($field['description']); ?></p> |
|
| 135 | 135 | </td> |
| 136 | 136 | </tr> |
| 137 | 137 | <?php endforeach; ?> |
@@ -145,21 +145,21 @@ discard block |
||
| 145 | 145 | * |
| 146 | 146 | * @param int $user_id User ID of the user being saved |
| 147 | 147 | */ |
| 148 | - public function save_customer_meta_fields( $user_id ) { |
|
| 149 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 148 | + public function save_customer_meta_fields($user_id) { |
|
| 149 | + if (!apply_filters('getpaid_current_user_can_edit_customer_meta_fields', current_user_can('manage_options'), $user_id)) { |
|
| 150 | 150 | return; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | $save_fields = $this->get_customer_meta_fields(); |
| 154 | 154 | |
| 155 | - foreach ( $save_fields as $fieldset ) { |
|
| 155 | + foreach ($save_fields as $fieldset) { |
|
| 156 | 156 | |
| 157 | - foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 157 | + foreach ($fieldset['fields'] as $key => $field) { |
|
| 158 | 158 | |
| 159 | - if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 160 | - update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
| 161 | - } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 162 | - update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 159 | + if (isset($field['type']) && 'checkbox' === $field['type']) { |
|
| 160 | + update_user_meta($user_id, $key, !empty($_POST[$key])); |
|
| 161 | + } elseif (isset($_POST[$key])) { |
|
| 162 | + update_user_meta($user_id, $key, wpinv_clean($_POST[$key])); |
|
| 163 | 163 | } |
| 164 | 164 | } |
| 165 | 165 | } |
@@ -173,11 +173,11 @@ discard block |
||
| 173 | 173 | * @param string $key Key for user meta field |
| 174 | 174 | * @return string |
| 175 | 175 | */ |
| 176 | - protected function get_user_meta( $user_id, $key ) { |
|
| 177 | - $value = get_user_meta( $user_id, $key, true ); |
|
| 178 | - $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 179 | - if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 180 | - $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 176 | + protected function get_user_meta($user_id, $key) { |
|
| 177 | + $value = get_user_meta($user_id, $key, true); |
|
| 178 | + $existing_fields = array('_wpinv_first_name', '_wpinv_last_name'); |
|
| 179 | + if (!$value && in_array($key, $existing_fields)) { |
|
| 180 | + $value = get_user_meta($user_id, str_replace('_wpinv_', '', $key), true); |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | return $value; |
@@ -12,276 +12,276 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Metaboxes { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Only save metaboxes once. |
|
| 17 | - * |
|
| 18 | - * @var boolean |
|
| 19 | - */ |
|
| 20 | - private static $saved_meta_boxes = false; |
|
| 21 | - |
|
| 22 | 15 | /** |
| 23 | - * Hook in methods. |
|
| 24 | - */ |
|
| 25 | - public static function init() { |
|
| 26 | - |
|
| 27 | - // Register metaboxes. |
|
| 28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 29 | - |
|
| 30 | - // Remove metaboxes. |
|
| 31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 32 | - |
|
| 33 | - // Rename metaboxes. |
|
| 34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 35 | - |
|
| 36 | - // Save metaboxes. |
|
| 37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | - } |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Register core metaboxes. |
|
| 42 | - */ |
|
| 43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
| 44 | - |
|
| 45 | - // For invoices... |
|
| 46 | - self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 47 | - |
|
| 48 | - // For payment forms. |
|
| 49 | - self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 50 | - |
|
| 51 | - // For invoice items. |
|
| 52 | - self::add_item_meta_boxes( $post_type ); |
|
| 53 | - |
|
| 54 | - // For invoice discounts. |
|
| 55 | - if ( $post_type == 'wpi_discount' ) { |
|
| 56 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - } |
|
| 16 | + * Only save metaboxes once. |
|
| 17 | + * |
|
| 18 | + * @var boolean |
|
| 19 | + */ |
|
| 20 | + private static $saved_meta_boxes = false; |
|
| 60 | 21 | |
| 61 | - /** |
|
| 62 | - * Register core metaboxes. |
|
| 63 | - */ |
|
| 64 | - protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 22 | + /** |
|
| 23 | + * Hook in methods. |
|
| 24 | + */ |
|
| 25 | + public static function init() { |
|
| 65 | 26 | |
| 66 | - // For payment forms. |
|
| 67 | - if ( $post_type == 'wpi_payment_form' ) { |
|
| 27 | + // Register metaboxes. |
|
| 28 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 68 | 29 | |
| 69 | - // Design payment form. |
|
| 70 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 30 | + // Remove metaboxes. |
|
| 31 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 71 | 32 | |
| 72 | - // Payment form information. |
|
| 73 | - if ( $post->ID != wpinv_get_default_payment_form() ) { |
|
| 74 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 75 | - } |
|
| 33 | + // Rename metaboxes. |
|
| 34 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 76 | 35 | |
| 77 | - } |
|
| 36 | + // Save metaboxes. |
|
| 37 | + add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | + } |
|
| 78 | 39 | |
| 79 | - } |
|
| 40 | + /** |
|
| 41 | + * Register core metaboxes. |
|
| 42 | + */ |
|
| 43 | + public static function add_meta_boxes( $post_type, $post ) { |
|
| 80 | 44 | |
| 81 | - /** |
|
| 82 | - * Register core metaboxes. |
|
| 83 | - */ |
|
| 84 | - protected static function add_item_meta_boxes( $post_type ) { |
|
| 45 | + // For invoices... |
|
| 46 | + self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 85 | 47 | |
| 86 | - if ( $post_type == 'wpi_item' ) { |
|
| 48 | + // For payment forms. |
|
| 49 | + self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 87 | 50 | |
| 88 | - // Item details. |
|
| 89 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 51 | + // For invoice items. |
|
| 52 | + self::add_item_meta_boxes( $post_type ); |
|
| 90 | 53 | |
| 91 | - // If taxes are enabled, register the tax metabox. |
|
| 92 | - if ( wpinv_use_taxes() ) { |
|
| 93 | - add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 94 | - } |
|
| 54 | + // For invoice discounts. |
|
| 55 | + if ( $post_type == 'wpi_discount' ) { |
|
| 56 | + add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 57 | + } |
|
| 95 | 58 | |
| 96 | - // Item info. |
|
| 97 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 59 | + } |
|
| 98 | 60 | |
| 99 | - } |
|
| 61 | + /** |
|
| 62 | + * Register core metaboxes. |
|
| 63 | + */ |
|
| 64 | + protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 100 | 65 | |
| 101 | - } |
|
| 66 | + // For payment forms. |
|
| 67 | + if ( $post_type == 'wpi_payment_form' ) { |
|
| 102 | 68 | |
| 103 | - /** |
|
| 104 | - * Register invoice metaboxes. |
|
| 105 | - */ |
|
| 106 | - protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 69 | + // Design payment form. |
|
| 70 | + add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 107 | 71 | |
| 108 | - // For invoices... |
|
| 109 | - if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 110 | - $invoice = new WPInv_Invoice( $post ); |
|
| 72 | + // Payment form information. |
|
| 73 | + if ( $post->ID != wpinv_get_default_payment_form() ) { |
|
| 74 | + add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 75 | + } |
|
| 111 | 76 | |
| 112 | - // Resend invoice. |
|
| 113 | - if ( ! $invoice->is_draft() ) { |
|
| 77 | + } |
|
| 114 | 78 | |
| 115 | - add_meta_box( |
|
| 116 | - 'wpinv-mb-resend-invoice', |
|
| 117 | - sprintf( |
|
| 118 | - __( 'Resend %s', 'invoicing' ), |
|
| 119 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 120 | - ), |
|
| 121 | - 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
| 122 | - $post_type, |
|
| 123 | - 'side', |
|
| 124 | - 'low' |
|
| 125 | - ); |
|
| 79 | + } |
|
| 126 | 80 | |
| 127 | - } |
|
| 81 | + /** |
|
| 82 | + * Register core metaboxes. |
|
| 83 | + */ |
|
| 84 | + protected static function add_item_meta_boxes( $post_type ) { |
|
| 128 | 85 | |
| 129 | - // Subscriptions. |
|
| 130 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 131 | - if ( ! empty( $subscriptions ) ) { |
|
| 86 | + if ( $post_type == 'wpi_item' ) { |
|
| 132 | 87 | |
| 133 | - if ( is_array( $subscriptions ) ) { |
|
| 134 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 135 | - } else { |
|
| 136 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 137 | - } |
|
| 88 | + // Item details. |
|
| 89 | + add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 138 | 90 | |
| 139 | - if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 140 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 141 | - } |
|
| 91 | + // If taxes are enabled, register the tax metabox. |
|
| 92 | + if ( wpinv_use_taxes() ) { |
|
| 93 | + add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 94 | + } |
|
| 142 | 95 | |
| 143 | - } |
|
| 96 | + // Item info. |
|
| 97 | + add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 144 | 98 | |
| 145 | - // Invoice details. |
|
| 146 | - add_meta_box( |
|
| 147 | - 'wpinv-details', |
|
| 148 | - sprintf( |
|
| 149 | - __( '%s Details', 'invoicing' ), |
|
| 150 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 151 | - ), |
|
| 152 | - 'GetPaid_Meta_Box_Invoice_Details::output', |
|
| 153 | - $post_type, |
|
| 154 | - 'side' |
|
| 155 | - ); |
|
| 99 | + } |
|
| 156 | 100 | |
| 157 | - // Payment details. |
|
| 158 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 101 | + } |
|
| 159 | 102 | |
| 160 | - // Billing details. |
|
| 161 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 103 | + /** |
|
| 104 | + * Register invoice metaboxes. |
|
| 105 | + */ |
|
| 106 | + protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 107 | + |
|
| 108 | + // For invoices... |
|
| 109 | + if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 110 | + $invoice = new WPInv_Invoice( $post ); |
|
| 111 | + |
|
| 112 | + // Resend invoice. |
|
| 113 | + if ( ! $invoice->is_draft() ) { |
|
| 114 | + |
|
| 115 | + add_meta_box( |
|
| 116 | + 'wpinv-mb-resend-invoice', |
|
| 117 | + sprintf( |
|
| 118 | + __( 'Resend %s', 'invoicing' ), |
|
| 119 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 120 | + ), |
|
| 121 | + 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
| 122 | + $post_type, |
|
| 123 | + 'side', |
|
| 124 | + 'low' |
|
| 125 | + ); |
|
| 126 | + |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + // Subscriptions. |
|
| 130 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 131 | + if ( ! empty( $subscriptions ) ) { |
|
| 132 | + |
|
| 133 | + if ( is_array( $subscriptions ) ) { |
|
| 134 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 135 | + } else { |
|
| 136 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 140 | + add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + // Invoice details. |
|
| 146 | + add_meta_box( |
|
| 147 | + 'wpinv-details', |
|
| 148 | + sprintf( |
|
| 149 | + __( '%s Details', 'invoicing' ), |
|
| 150 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 151 | + ), |
|
| 152 | + 'GetPaid_Meta_Box_Invoice_Details::output', |
|
| 153 | + $post_type, |
|
| 154 | + 'side' |
|
| 155 | + ); |
|
| 156 | + |
|
| 157 | + // Payment details. |
|
| 158 | + add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 159 | + |
|
| 160 | + // Billing details. |
|
| 161 | + add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 162 | 162 | |
| 163 | - // Invoice items. |
|
| 164 | - add_meta_box( |
|
| 165 | - 'wpinv-items', |
|
| 166 | - sprintf( |
|
| 167 | - __( '%s Items', 'invoicing' ), |
|
| 168 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 169 | - ), |
|
| 170 | - 'GetPaid_Meta_Box_Invoice_Items::output', |
|
| 171 | - $post_type, |
|
| 172 | - 'normal', |
|
| 173 | - 'high' |
|
| 174 | - ); |
|
| 163 | + // Invoice items. |
|
| 164 | + add_meta_box( |
|
| 165 | + 'wpinv-items', |
|
| 166 | + sprintf( |
|
| 167 | + __( '%s Items', 'invoicing' ), |
|
| 168 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 169 | + ), |
|
| 170 | + 'GetPaid_Meta_Box_Invoice_Items::output', |
|
| 171 | + $post_type, |
|
| 172 | + 'normal', |
|
| 173 | + 'high' |
|
| 174 | + ); |
|
| 175 | 175 | |
| 176 | - // Invoice notes. |
|
| 177 | - add_meta_box( |
|
| 178 | - 'wpinv-notes', |
|
| 179 | - sprintf( |
|
| 180 | - __( '%s Notes', 'invoicing' ), |
|
| 181 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 182 | - ), |
|
| 183 | - 'WPInv_Meta_Box_Notes::output', |
|
| 184 | - $post_type, |
|
| 185 | - 'side', |
|
| 186 | - 'low' |
|
| 187 | - ); |
|
| 188 | - |
|
| 189 | - // Shipping Address. |
|
| 190 | - if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 191 | - add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - // Payment form information. |
|
| 195 | - if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 196 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - } |
|
| 202 | - |
|
| 203 | - /** |
|
| 204 | - * Remove some metaboxes. |
|
| 205 | - */ |
|
| 206 | - public static function remove_meta_boxes() { |
|
| 207 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - /** |
|
| 211 | - * Rename other metaboxes. |
|
| 212 | - */ |
|
| 213 | - public static function rename_meta_boxes() { |
|
| 176 | + // Invoice notes. |
|
| 177 | + add_meta_box( |
|
| 178 | + 'wpinv-notes', |
|
| 179 | + sprintf( |
|
| 180 | + __( '%s Notes', 'invoicing' ), |
|
| 181 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 182 | + ), |
|
| 183 | + 'WPInv_Meta_Box_Notes::output', |
|
| 184 | + $post_type, |
|
| 185 | + 'side', |
|
| 186 | + 'low' |
|
| 187 | + ); |
|
| 188 | + |
|
| 189 | + // Shipping Address. |
|
| 190 | + if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 191 | + add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + // Payment form information. |
|
| 195 | + if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 196 | + add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + } |
|
| 202 | + |
|
| 203 | + /** |
|
| 204 | + * Remove some metaboxes. |
|
| 205 | + */ |
|
| 206 | + public static function remove_meta_boxes() { |
|
| 207 | + remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + /** |
|
| 211 | + * Rename other metaboxes. |
|
| 212 | + */ |
|
| 213 | + public static function rename_meta_boxes() { |
|
| 214 | 214 | |
| 215 | - } |
|
| 216 | - |
|
| 217 | - /** |
|
| 218 | - * Check if we're saving, then trigger an action based on the post type. |
|
| 219 | - * |
|
| 220 | - * @param int $post_id Post ID. |
|
| 221 | - * @param object $post Post object. |
|
| 222 | - */ |
|
| 223 | - public static function save_meta_boxes( $post_id, $post ) { |
|
| 224 | - $post_id = absint( $post_id ); |
|
| 225 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 226 | - |
|
| 227 | - // Do not save for ajax requests. |
|
| 228 | - if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 229 | - return; |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - // $post_id and $post are required |
|
| 233 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 234 | - return; |
|
| 235 | - } |
|
| 236 | - |
|
| 237 | - // Dont' save meta boxes for revisions or autosaves. |
|
| 238 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 239 | - return; |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - // Check the nonce. |
|
| 243 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 244 | - return; |
|
| 245 | - } |
|
| 246 | - |
|
| 247 | - // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 248 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 249 | - return; |
|
| 250 | - } |
|
| 251 | - |
|
| 252 | - // Check user has permission to edit. |
|
| 253 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 254 | - return; |
|
| 255 | - } |
|
| 256 | - |
|
| 257 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 258 | - |
|
| 259 | - // We need this save event to run once to avoid potential endless loops. |
|
| 260 | - self::$saved_meta_boxes = true; |
|
| 261 | - |
|
| 262 | - return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 263 | - |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - // Ensure this is our post type. |
|
| 267 | - $post_types_map = array( |
|
| 268 | - 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 269 | - 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 270 | - 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 271 | - ); |
|
| 272 | - |
|
| 273 | - // Is this our post type? |
|
| 274 | - if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 275 | - return; |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - // We need this save event to run once to avoid potential endless loops. |
|
| 279 | - self::$saved_meta_boxes = true; |
|
| 215 | + } |
|
| 216 | + |
|
| 217 | + /** |
|
| 218 | + * Check if we're saving, then trigger an action based on the post type. |
|
| 219 | + * |
|
| 220 | + * @param int $post_id Post ID. |
|
| 221 | + * @param object $post Post object. |
|
| 222 | + */ |
|
| 223 | + public static function save_meta_boxes( $post_id, $post ) { |
|
| 224 | + $post_id = absint( $post_id ); |
|
| 225 | + $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 226 | + |
|
| 227 | + // Do not save for ajax requests. |
|
| 228 | + if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 229 | + return; |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + // $post_id and $post are required |
|
| 233 | + if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 234 | + return; |
|
| 235 | + } |
|
| 236 | + |
|
| 237 | + // Dont' save meta boxes for revisions or autosaves. |
|
| 238 | + if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 239 | + return; |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + // Check the nonce. |
|
| 243 | + if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 244 | + return; |
|
| 245 | + } |
|
| 246 | + |
|
| 247 | + // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 248 | + if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 249 | + return; |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + // Check user has permission to edit. |
|
| 253 | + if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 254 | + return; |
|
| 255 | + } |
|
| 256 | + |
|
| 257 | + if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 258 | + |
|
| 259 | + // We need this save event to run once to avoid potential endless loops. |
|
| 260 | + self::$saved_meta_boxes = true; |
|
| 261 | + |
|
| 262 | + return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 263 | + |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + // Ensure this is our post type. |
|
| 267 | + $post_types_map = array( |
|
| 268 | + 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 269 | + 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 270 | + 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 271 | + ); |
|
| 272 | + |
|
| 273 | + // Is this our post type? |
|
| 274 | + if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 275 | + return; |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + // We need this save event to run once to avoid potential endless loops. |
|
| 279 | + self::$saved_meta_boxes = true; |
|
| 280 | 280 | |
| 281 | - // Save the post. |
|
| 282 | - $class = $post_types_map[ $post->post_type ]; |
|
| 283 | - $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 281 | + // Save the post. |
|
| 282 | + $class = $post_types_map[ $post->post_type ]; |
|
| 283 | + $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 284 | 284 | |
| 285 | - } |
|
| 285 | + } |
|
| 286 | 286 | |
| 287 | 287 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Metaboxes Admin Class |
@@ -25,35 +25,35 @@ discard block |
||
| 25 | 25 | public static function init() { |
| 26 | 26 | |
| 27 | 27 | // Register metaboxes. |
| 28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 28 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2); |
|
| 29 | 29 | |
| 30 | 30 | // Remove metaboxes. |
| 31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 31 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30); |
|
| 32 | 32 | |
| 33 | 33 | // Rename metaboxes. |
| 34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 34 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45); |
|
| 35 | 35 | |
| 36 | 36 | // Save metaboxes. |
| 37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 37 | + add_action('save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * Register core metaboxes. |
| 42 | 42 | */ |
| 43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
| 43 | + public static function add_meta_boxes($post_type, $post) { |
|
| 44 | 44 | |
| 45 | 45 | // For invoices... |
| 46 | - self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 46 | + self::add_invoice_meta_boxes($post_type, $post); |
|
| 47 | 47 | |
| 48 | 48 | // For payment forms. |
| 49 | - self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 49 | + self::add_payment_form_meta_boxes($post_type, $post); |
|
| 50 | 50 | |
| 51 | 51 | // For invoice items. |
| 52 | - self::add_item_meta_boxes( $post_type ); |
|
| 52 | + self::add_item_meta_boxes($post_type); |
|
| 53 | 53 | |
| 54 | 54 | // For invoice discounts. |
| 55 | - if ( $post_type == 'wpi_discount' ) { |
|
| 56 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 55 | + if ($post_type == 'wpi_discount') { |
|
| 56 | + add_meta_box('wpinv_discount_details', __('Discount Details', 'invoicing'), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high'); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | } |
@@ -61,17 +61,17 @@ discard block |
||
| 61 | 61 | /** |
| 62 | 62 | * Register core metaboxes. |
| 63 | 63 | */ |
| 64 | - protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 64 | + protected static function add_payment_form_meta_boxes($post_type, $post) { |
|
| 65 | 65 | |
| 66 | 66 | // For payment forms. |
| 67 | - if ( $post_type == 'wpi_payment_form' ) { |
|
| 67 | + if ($post_type == 'wpi_payment_form') { |
|
| 68 | 68 | |
| 69 | 69 | // Design payment form. |
| 70 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 70 | + add_meta_box('wpinv-payment-form-design', __('Payment Form', 'invoicing'), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal'); |
|
| 71 | 71 | |
| 72 | 72 | // Payment form information. |
| 73 | - if ( $post->ID != wpinv_get_default_payment_form() ) { |
|
| 74 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 73 | + if ($post->ID != wpinv_get_default_payment_form()) { |
|
| 74 | + add_meta_box('wpinv-payment-form-info', __('Details', 'invoicing'), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side'); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | } |
@@ -81,20 +81,20 @@ discard block |
||
| 81 | 81 | /** |
| 82 | 82 | * Register core metaboxes. |
| 83 | 83 | */ |
| 84 | - protected static function add_item_meta_boxes( $post_type ) { |
|
| 84 | + protected static function add_item_meta_boxes($post_type) { |
|
| 85 | 85 | |
| 86 | - if ( $post_type == 'wpi_item' ) { |
|
| 86 | + if ($post_type == 'wpi_item') { |
|
| 87 | 87 | |
| 88 | 88 | // Item details. |
| 89 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 89 | + add_meta_box('wpinv_item_details', __('Item Details', 'invoicing'), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high'); |
|
| 90 | 90 | |
| 91 | 91 | // If taxes are enabled, register the tax metabox. |
| 92 | - if ( wpinv_use_taxes() ) { |
|
| 93 | - add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 92 | + if (wpinv_use_taxes()) { |
|
| 93 | + add_meta_box('wpinv_item_vat', __('Tax', 'invoicing'), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high'); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | // Item info. |
| 97 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 97 | + add_meta_box('wpinv_field_item_info', __('Item info', 'invoicing'), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core'); |
|
| 98 | 98 | |
| 99 | 99 | } |
| 100 | 100 | |
@@ -103,20 +103,20 @@ discard block |
||
| 103 | 103 | /** |
| 104 | 104 | * Register invoice metaboxes. |
| 105 | 105 | */ |
| 106 | - protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 106 | + protected static function add_invoice_meta_boxes($post_type, $post) { |
|
| 107 | 107 | |
| 108 | 108 | // For invoices... |
| 109 | - if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 110 | - $invoice = new WPInv_Invoice( $post ); |
|
| 109 | + if (getpaid_is_invoice_post_type($post_type)) { |
|
| 110 | + $invoice = new WPInv_Invoice($post); |
|
| 111 | 111 | |
| 112 | 112 | // Resend invoice. |
| 113 | - if ( ! $invoice->is_draft() ) { |
|
| 113 | + if (!$invoice->is_draft()) { |
|
| 114 | 114 | |
| 115 | 115 | add_meta_box( |
| 116 | 116 | 'wpinv-mb-resend-invoice', |
| 117 | 117 | sprintf( |
| 118 | - __( 'Resend %s', 'invoicing' ), |
|
| 119 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 118 | + __('Resend %s', 'invoicing'), |
|
| 119 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 120 | 120 | ), |
| 121 | 121 | 'GetPaid_Meta_Box_Resend_Invoice::output', |
| 122 | 122 | $post_type, |
@@ -127,17 +127,17 @@ discard block |
||
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | // Subscriptions. |
| 130 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 131 | - if ( ! empty( $subscriptions ) ) { |
|
| 130 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
| 131 | + if (!empty($subscriptions)) { |
|
| 132 | 132 | |
| 133 | - if ( is_array( $subscriptions ) ) { |
|
| 134 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 133 | + if (is_array($subscriptions)) { |
|
| 134 | + add_meta_box('wpinv-mb-subscriptions', __('Related Subscriptions', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced'); |
|
| 135 | 135 | } else { |
| 136 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 136 | + add_meta_box('wpinv-mb-subscriptions', __('Subscription Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced'); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 140 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 139 | + if (getpaid_count_subscription_invoices($invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id()) > 1) { |
|
| 140 | + add_meta_box('wpinv-mb-subscription-invoices', __('Related Payments', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced'); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | } |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | add_meta_box( |
| 147 | 147 | 'wpinv-details', |
| 148 | 148 | sprintf( |
| 149 | - __( '%s Details', 'invoicing' ), |
|
| 150 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 149 | + __('%s Details', 'invoicing'), |
|
| 150 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 151 | 151 | ), |
| 152 | 152 | 'GetPaid_Meta_Box_Invoice_Details::output', |
| 153 | 153 | $post_type, |
@@ -155,17 +155,17 @@ discard block |
||
| 155 | 155 | ); |
| 156 | 156 | |
| 157 | 157 | // Payment details. |
| 158 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 158 | + add_meta_box('wpinv-payment-meta', __('Payment Meta', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default'); |
|
| 159 | 159 | |
| 160 | 160 | // Billing details. |
| 161 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 161 | + add_meta_box('wpinv-address', __('Billing Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high'); |
|
| 162 | 162 | |
| 163 | 163 | // Invoice items. |
| 164 | 164 | add_meta_box( |
| 165 | 165 | 'wpinv-items', |
| 166 | 166 | sprintf( |
| 167 | - __( '%s Items', 'invoicing' ), |
|
| 168 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 167 | + __('%s Items', 'invoicing'), |
|
| 168 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 169 | 169 | ), |
| 170 | 170 | 'GetPaid_Meta_Box_Invoice_Items::output', |
| 171 | 171 | $post_type, |
@@ -177,8 +177,8 @@ discard block |
||
| 177 | 177 | add_meta_box( |
| 178 | 178 | 'wpinv-notes', |
| 179 | 179 | sprintf( |
| 180 | - __( '%s Notes', 'invoicing' ), |
|
| 181 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 180 | + __('%s Notes', 'invoicing'), |
|
| 181 | + ucfirst($invoice->get_invoice_quote_type()) |
|
| 182 | 182 | ), |
| 183 | 183 | 'WPInv_Meta_Box_Notes::output', |
| 184 | 184 | $post_type, |
@@ -187,13 +187,13 @@ discard block |
||
| 187 | 187 | ); |
| 188 | 188 | |
| 189 | 189 | // Shipping Address. |
| 190 | - if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 191 | - add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 190 | + if (get_post_meta($invoice->get_id(), 'shipping_address', true)) { |
|
| 191 | + add_meta_box('wpinv-invoice-shipping-details', __('Shipping Address', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high'); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | // Payment form information. |
| 195 | - if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 196 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 195 | + if (get_post_meta($invoice->get_id(), 'payment_form_data', true)) { |
|
| 196 | + add_meta_box('wpinv-invoice-payment-form-details', __('Payment Form Details', 'invoicing'), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high'); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | } |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | * Remove some metaboxes. |
| 205 | 205 | */ |
| 206 | 206 | public static function remove_meta_boxes() { |
| 207 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 207 | + remove_meta_box('wpseo_meta', 'wpi_invoice', 'normal'); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -220,46 +220,46 @@ discard block |
||
| 220 | 220 | * @param int $post_id Post ID. |
| 221 | 221 | * @param object $post Post object. |
| 222 | 222 | */ |
| 223 | - public static function save_meta_boxes( $post_id, $post ) { |
|
| 224 | - $post_id = absint( $post_id ); |
|
| 225 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 223 | + public static function save_meta_boxes($post_id, $post) { |
|
| 224 | + $post_id = absint($post_id); |
|
| 225 | + $data = wp_kses_post_deep(wp_unslash($_POST)); |
|
| 226 | 226 | |
| 227 | 227 | // Do not save for ajax requests. |
| 228 | - if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 228 | + if ((defined('DOING_AJAX') && DOING_AJAX) || isset($_REQUEST['bulk_edit'])) { |
|
| 229 | 229 | return; |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | // $post_id and $post are required |
| 233 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 233 | + if (empty($post_id) || empty($post) || self::$saved_meta_boxes) { |
|
| 234 | 234 | return; |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | // Dont' save meta boxes for revisions or autosaves. |
| 238 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 238 | + if ((defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) || is_int(wp_is_post_revision($post)) || is_int(wp_is_post_autosave($post))) { |
|
| 239 | 239 | return; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | // Check the nonce. |
| 243 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 243 | + if (empty($data['getpaid_meta_nonce']) || !wp_verify_nonce($data['getpaid_meta_nonce'], 'getpaid_meta_nonce')) { |
|
| 244 | 244 | return; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
| 248 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 248 | + if (empty($data['post_ID']) || absint($data['post_ID']) !== $post_id) { |
|
| 249 | 249 | return; |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | // Check user has permission to edit. |
| 253 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 253 | + if (!current_user_can('edit_post', $post_id)) { |
|
| 254 | 254 | return; |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 257 | + if (getpaid_is_invoice_post_type($post->post_type)) { |
|
| 258 | 258 | |
| 259 | 259 | // We need this save event to run once to avoid potential endless loops. |
| 260 | 260 | self::$saved_meta_boxes = true; |
| 261 | 261 | |
| 262 | - return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 262 | + return GetPaid_Meta_Box_Invoice_Address::save($post_id); |
|
| 263 | 263 | |
| 264 | 264 | } |
| 265 | 265 | |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | ); |
| 272 | 272 | |
| 273 | 273 | // Is this our post type? |
| 274 | - if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 274 | + if (!isset($post_types_map[$post->post_type])) { |
|
| 275 | 275 | return; |
| 276 | 276 | } |
| 277 | 277 | |
@@ -279,8 +279,8 @@ discard block |
||
| 279 | 279 | self::$saved_meta_boxes = true; |
| 280 | 280 | |
| 281 | 281 | // Save the post. |
| 282 | - $class = $post_types_map[ $post->post_type ]; |
|
| 283 | - $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 282 | + $class = $post_types_map[$post->post_type]; |
|
| 283 | + $class::save($post_id, wp_kses_post_deep($_POST), $post); |
|
| 284 | 284 | |
| 285 | 285 | } |
| 286 | 286 | |
@@ -13,732 +13,732 @@ discard block |
||
| 13 | 13 | class GetPaid_Post_Types_Admin { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Hook in methods. |
|
| 17 | - */ |
|
| 18 | - public static function init() { |
|
| 19 | - |
|
| 20 | - // Init metaboxes. |
|
| 21 | - GetPaid_Metaboxes::init(); |
|
| 22 | - |
|
| 23 | - // Filter the post updated messages. |
|
| 24 | - add_filter( 'post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages' ); |
|
| 25 | - |
|
| 26 | - // Filter post actions. |
|
| 27 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2 ); |
|
| 28 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2 ); |
|
| 29 | - |
|
| 30 | - // Invoice table columns. |
|
| 31 | - add_filter( 'manage_wpi_invoice_posts_columns', array( __CLASS__, 'invoice_columns' ), 100 ); |
|
| 32 | - add_action( 'manage_wpi_invoice_posts_custom_column', array( __CLASS__, 'display_invoice_columns' ), 10, 2 ); |
|
| 33 | - add_filter( 'bulk_actions-edit-wpi_invoice', array( __CLASS__, 'invoice_bulk_actions' ) ); |
|
| 34 | - add_filter( 'handle_bulk_actions-edit-wpi_invoice', array( __CLASS__, 'handle_invoice_bulk_actions' ), 10, 3 ); |
|
| 35 | - |
|
| 36 | - // Items table columns. |
|
| 37 | - add_filter( 'manage_wpi_item_posts_columns', array( __CLASS__, 'item_columns' ), 100 ); |
|
| 38 | - add_filter( 'manage_edit-wpi_item_sortable_columns', array( __CLASS__, 'sortable_item_columns' ), 20 ); |
|
| 39 | - add_action( 'manage_wpi_item_posts_custom_column', array( __CLASS__, 'display_item_columns' ), 10, 2 ); |
|
| 40 | - add_action( 'restrict_manage_posts', array( __CLASS__, 'add_item_filters' ), 100 ); |
|
| 41 | - add_action( 'parse_query', array( __CLASS__, 'filter_item_query' ), 100 ); |
|
| 42 | - add_action( 'request', array( __CLASS__, 'reorder_items' ), 100 ); |
|
| 43 | - |
|
| 44 | - // Payment forms columns. |
|
| 45 | - add_filter( 'manage_wpi_payment_form_posts_columns', array( __CLASS__, 'payment_form_columns' ), 100 ); |
|
| 46 | - add_action( 'manage_wpi_payment_form_posts_custom_column', array( __CLASS__, 'display_payment_form_columns' ), 10, 2 ); |
|
| 47 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_payment_form_state' ), 10, 2 ); |
|
| 48 | - |
|
| 49 | - // Discount table columns. |
|
| 50 | - add_filter( 'manage_wpi_discount_posts_columns', array( __CLASS__, 'discount_columns' ), 100 ); |
|
| 51 | - add_filter( 'bulk_actions-edit-wpi_discount', '__return_empty_array', 100 ); |
|
| 52 | - |
|
| 53 | - // Deleting posts. |
|
| 54 | - add_action( 'delete_post', array( __CLASS__, 'delete_post' ) ); |
|
| 55 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_discount_state' ), 10, 2 ); |
|
| 56 | - |
|
| 57 | - add_filter( 'display_post_states', array( __CLASS__, 'add_display_post_states' ), 10, 2 ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * Post updated messages. |
|
| 62 | - */ |
|
| 63 | - public static function post_updated_messages( $messages ) { |
|
| 64 | - global $post; |
|
| 65 | - |
|
| 66 | - $messages['wpi_discount'] = array( |
|
| 67 | - 0 => '', |
|
| 68 | - 1 => __( 'Discount updated.', 'invoicing' ), |
|
| 69 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 70 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 71 | - 4 => __( 'Discount updated.', 'invoicing' ), |
|
| 72 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Discount restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 73 | - 6 => __( 'Discount updated.', 'invoicing' ), |
|
| 74 | - 7 => __( 'Discount saved.', 'invoicing' ), |
|
| 75 | - 8 => __( 'Discount submitted.', 'invoicing' ), |
|
| 76 | - 9 => wp_sprintf( __( 'Discount scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 77 | - 10 => __( 'Discount draft updated.', 'invoicing' ), |
|
| 78 | - ); |
|
| 79 | - |
|
| 80 | - $messages['wpi_payment_form'] = array( |
|
| 81 | - 0 => '', |
|
| 82 | - 1 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 83 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 84 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 85 | - 4 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 86 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Payment Form restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 87 | - 6 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 88 | - 7 => __( 'Payment Form saved.', 'invoicing' ), |
|
| 89 | - 8 => __( 'Payment Form submitted.', 'invoicing' ), |
|
| 90 | - 9 => wp_sprintf( __( 'Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 91 | - 10 => __( 'Payment Form draft updated.', 'invoicing' ), |
|
| 92 | - ); |
|
| 93 | - |
|
| 94 | - return $messages; |
|
| 95 | - |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - /** |
|
| 99 | - * Post row actions. |
|
| 100 | - */ |
|
| 101 | - public static function post_row_actions( $actions, $post ) { |
|
| 102 | - |
|
| 103 | - $post = get_post( $post ); |
|
| 104 | - |
|
| 105 | - // We do not want to edit the default payment form. |
|
| 106 | - if ( 'wpi_payment_form' == $post->post_type ) { |
|
| 107 | - |
|
| 108 | - if ( $post->ID == wpinv_get_default_payment_form() ) { |
|
| 109 | - unset( $actions['trash'] ); |
|
| 110 | - unset( $actions['inline hide-if-no-js'] ); |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - $actions['duplicate'] = sprintf( |
|
| 114 | - '<a href="%1$s">%2$s</a>', |
|
| 115 | - esc_url( |
|
| 116 | - wp_nonce_url( |
|
| 117 | - add_query_arg( |
|
| 118 | - array( |
|
| 119 | - 'getpaid-admin-action' => 'duplicate_form', |
|
| 120 | - 'form_id' => $post->ID |
|
| 121 | - ) |
|
| 122 | - ), |
|
| 123 | - 'getpaid-nonce', |
|
| 124 | - 'getpaid-nonce' |
|
| 125 | - ) |
|
| 126 | - ), |
|
| 127 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 128 | - ); |
|
| 129 | - |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - // Link to item payment form. |
|
| 133 | - if ( 'wpi_item' == $post->post_type ) { |
|
| 134 | - |
|
| 135 | - if ( in_array( get_post_meta( $post->ID, '_wpinv_type', true ), array( '', 'fee', 'custom' ) ) ) { |
|
| 136 | - |
|
| 137 | - $actions['buy'] = sprintf( |
|
| 138 | - '<a href="%1$s">%2$s</a>', |
|
| 139 | - esc_url( getpaid_embed_url( false, $post->ID . '|0' ) ), |
|
| 140 | - esc_html( __( 'Buy', 'invoicing' ) ) |
|
| 141 | - ); |
|
| 142 | - |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - } |
|
| 146 | - |
|
| 147 | - return $actions; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 16 | + * Hook in methods. |
|
| 17 | + */ |
|
| 18 | + public static function init() { |
|
| 19 | + |
|
| 20 | + // Init metaboxes. |
|
| 21 | + GetPaid_Metaboxes::init(); |
|
| 22 | + |
|
| 23 | + // Filter the post updated messages. |
|
| 24 | + add_filter( 'post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages' ); |
|
| 25 | + |
|
| 26 | + // Filter post actions. |
|
| 27 | + add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2 ); |
|
| 28 | + add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2 ); |
|
| 29 | + |
|
| 30 | + // Invoice table columns. |
|
| 31 | + add_filter( 'manage_wpi_invoice_posts_columns', array( __CLASS__, 'invoice_columns' ), 100 ); |
|
| 32 | + add_action( 'manage_wpi_invoice_posts_custom_column', array( __CLASS__, 'display_invoice_columns' ), 10, 2 ); |
|
| 33 | + add_filter( 'bulk_actions-edit-wpi_invoice', array( __CLASS__, 'invoice_bulk_actions' ) ); |
|
| 34 | + add_filter( 'handle_bulk_actions-edit-wpi_invoice', array( __CLASS__, 'handle_invoice_bulk_actions' ), 10, 3 ); |
|
| 35 | + |
|
| 36 | + // Items table columns. |
|
| 37 | + add_filter( 'manage_wpi_item_posts_columns', array( __CLASS__, 'item_columns' ), 100 ); |
|
| 38 | + add_filter( 'manage_edit-wpi_item_sortable_columns', array( __CLASS__, 'sortable_item_columns' ), 20 ); |
|
| 39 | + add_action( 'manage_wpi_item_posts_custom_column', array( __CLASS__, 'display_item_columns' ), 10, 2 ); |
|
| 40 | + add_action( 'restrict_manage_posts', array( __CLASS__, 'add_item_filters' ), 100 ); |
|
| 41 | + add_action( 'parse_query', array( __CLASS__, 'filter_item_query' ), 100 ); |
|
| 42 | + add_action( 'request', array( __CLASS__, 'reorder_items' ), 100 ); |
|
| 43 | + |
|
| 44 | + // Payment forms columns. |
|
| 45 | + add_filter( 'manage_wpi_payment_form_posts_columns', array( __CLASS__, 'payment_form_columns' ), 100 ); |
|
| 46 | + add_action( 'manage_wpi_payment_form_posts_custom_column', array( __CLASS__, 'display_payment_form_columns' ), 10, 2 ); |
|
| 47 | + add_filter( 'display_post_states', array( __CLASS__, 'filter_payment_form_state' ), 10, 2 ); |
|
| 48 | + |
|
| 49 | + // Discount table columns. |
|
| 50 | + add_filter( 'manage_wpi_discount_posts_columns', array( __CLASS__, 'discount_columns' ), 100 ); |
|
| 51 | + add_filter( 'bulk_actions-edit-wpi_discount', '__return_empty_array', 100 ); |
|
| 52 | + |
|
| 53 | + // Deleting posts. |
|
| 54 | + add_action( 'delete_post', array( __CLASS__, 'delete_post' ) ); |
|
| 55 | + add_filter( 'display_post_states', array( __CLASS__, 'filter_discount_state' ), 10, 2 ); |
|
| 56 | + |
|
| 57 | + add_filter( 'display_post_states', array( __CLASS__, 'add_display_post_states' ), 10, 2 ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * Post updated messages. |
|
| 62 | + */ |
|
| 63 | + public static function post_updated_messages( $messages ) { |
|
| 64 | + global $post; |
|
| 65 | + |
|
| 66 | + $messages['wpi_discount'] = array( |
|
| 67 | + 0 => '', |
|
| 68 | + 1 => __( 'Discount updated.', 'invoicing' ), |
|
| 69 | + 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 70 | + 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 71 | + 4 => __( 'Discount updated.', 'invoicing' ), |
|
| 72 | + 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Discount restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 73 | + 6 => __( 'Discount updated.', 'invoicing' ), |
|
| 74 | + 7 => __( 'Discount saved.', 'invoicing' ), |
|
| 75 | + 8 => __( 'Discount submitted.', 'invoicing' ), |
|
| 76 | + 9 => wp_sprintf( __( 'Discount scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 77 | + 10 => __( 'Discount draft updated.', 'invoicing' ), |
|
| 78 | + ); |
|
| 79 | + |
|
| 80 | + $messages['wpi_payment_form'] = array( |
|
| 81 | + 0 => '', |
|
| 82 | + 1 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 83 | + 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 84 | + 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 85 | + 4 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 86 | + 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Payment Form restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 87 | + 6 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 88 | + 7 => __( 'Payment Form saved.', 'invoicing' ), |
|
| 89 | + 8 => __( 'Payment Form submitted.', 'invoicing' ), |
|
| 90 | + 9 => wp_sprintf( __( 'Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 91 | + 10 => __( 'Payment Form draft updated.', 'invoicing' ), |
|
| 92 | + ); |
|
| 93 | + |
|
| 94 | + return $messages; |
|
| 95 | + |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + /** |
|
| 99 | + * Post row actions. |
|
| 100 | + */ |
|
| 101 | + public static function post_row_actions( $actions, $post ) { |
|
| 102 | + |
|
| 103 | + $post = get_post( $post ); |
|
| 104 | + |
|
| 105 | + // We do not want to edit the default payment form. |
|
| 106 | + if ( 'wpi_payment_form' == $post->post_type ) { |
|
| 107 | + |
|
| 108 | + if ( $post->ID == wpinv_get_default_payment_form() ) { |
|
| 109 | + unset( $actions['trash'] ); |
|
| 110 | + unset( $actions['inline hide-if-no-js'] ); |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + $actions['duplicate'] = sprintf( |
|
| 114 | + '<a href="%1$s">%2$s</a>', |
|
| 115 | + esc_url( |
|
| 116 | + wp_nonce_url( |
|
| 117 | + add_query_arg( |
|
| 118 | + array( |
|
| 119 | + 'getpaid-admin-action' => 'duplicate_form', |
|
| 120 | + 'form_id' => $post->ID |
|
| 121 | + ) |
|
| 122 | + ), |
|
| 123 | + 'getpaid-nonce', |
|
| 124 | + 'getpaid-nonce' |
|
| 125 | + ) |
|
| 126 | + ), |
|
| 127 | + esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 128 | + ); |
|
| 129 | + |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + // Link to item payment form. |
|
| 133 | + if ( 'wpi_item' == $post->post_type ) { |
|
| 134 | + |
|
| 135 | + if ( in_array( get_post_meta( $post->ID, '_wpinv_type', true ), array( '', 'fee', 'custom' ) ) ) { |
|
| 136 | + |
|
| 137 | + $actions['buy'] = sprintf( |
|
| 138 | + '<a href="%1$s">%2$s</a>', |
|
| 139 | + esc_url( getpaid_embed_url( false, $post->ID . '|0' ) ), |
|
| 140 | + esc_html( __( 'Buy', 'invoicing' ) ) |
|
| 141 | + ); |
|
| 142 | + |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + } |
|
| 146 | + |
|
| 147 | + return $actions; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | 151 | * Remove bulk edit option from admin side quote listing |
| 152 | 152 | * |
| 153 | 153 | * @since 1.0.0 |
| 154 | 154 | * @param array $actions post actions |
| 155 | - * @param WP_Post $post |
|
| 155 | + * @param WP_Post $post |
|
| 156 | 156 | * @return array $actions actions without edit option |
| 157 | 157 | */ |
| 158 | 158 | public static function filter_invoice_row_actions( $actions, $post ) { |
| 159 | 159 | |
| 160 | 160 | if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
| 161 | 161 | |
| 162 | - $actions = array(); |
|
| 163 | - $invoice = new WPInv_Invoice( $post ); |
|
| 164 | - |
|
| 165 | - $actions['edit'] = sprintf( |
|
| 166 | - '<a href="%1$s">%2$s</a>', |
|
| 167 | - esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
| 168 | - esc_html( __( 'Edit', 'invoicing' ) ) |
|
| 169 | - ); |
|
| 170 | - |
|
| 171 | - if ( ! $invoice->is_draft() ) { |
|
| 172 | - |
|
| 173 | - $actions['view'] = sprintf( |
|
| 174 | - '<a href="%1$s">%2$s</a>', |
|
| 175 | - esc_url( $invoice->get_view_url() ), |
|
| 176 | - sprintf( |
|
| 177 | - esc_html( __( 'View %s', 'invoicing' ) ), |
|
| 178 | - getpaid_get_post_type_label( $invoice->get_post_type(), false ) |
|
| 179 | - ) |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - $actions['send'] = sprintf( |
|
| 183 | - '<a href="%1$s">%2$s</a>', |
|
| 184 | - esc_url( |
|
| 185 | - wp_nonce_url( |
|
| 186 | - add_query_arg( |
|
| 187 | - array( |
|
| 188 | - 'getpaid-admin-action' => 'send_invoice', |
|
| 189 | - 'invoice_id' => $invoice->get_id() |
|
| 190 | - ) |
|
| 191 | - ), |
|
| 192 | - 'getpaid-nonce', |
|
| 193 | - 'getpaid-nonce' |
|
| 194 | - ) |
|
| 195 | - ), |
|
| 196 | - esc_html( __( 'Send to Customer', 'invoicing' ) ) |
|
| 197 | - ); |
|
| 198 | - |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - $actions['duplicate'] = sprintf( |
|
| 202 | - '<a href="%1$s">%2$s</a>', |
|
| 203 | - esc_url( |
|
| 204 | - wp_nonce_url( |
|
| 205 | - add_query_arg( |
|
| 206 | - array( |
|
| 207 | - 'getpaid-admin-action' => 'duplicate_invoice', |
|
| 208 | - 'invoice_id' => $post->ID |
|
| 209 | - ) |
|
| 210 | - ), |
|
| 211 | - 'getpaid-nonce', |
|
| 212 | - 'getpaid-nonce' |
|
| 213 | - ) |
|
| 214 | - ), |
|
| 215 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 216 | - ); |
|
| 162 | + $actions = array(); |
|
| 163 | + $invoice = new WPInv_Invoice( $post ); |
|
| 164 | + |
|
| 165 | + $actions['edit'] = sprintf( |
|
| 166 | + '<a href="%1$s">%2$s</a>', |
|
| 167 | + esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
| 168 | + esc_html( __( 'Edit', 'invoicing' ) ) |
|
| 169 | + ); |
|
| 170 | + |
|
| 171 | + if ( ! $invoice->is_draft() ) { |
|
| 172 | + |
|
| 173 | + $actions['view'] = sprintf( |
|
| 174 | + '<a href="%1$s">%2$s</a>', |
|
| 175 | + esc_url( $invoice->get_view_url() ), |
|
| 176 | + sprintf( |
|
| 177 | + esc_html( __( 'View %s', 'invoicing' ) ), |
|
| 178 | + getpaid_get_post_type_label( $invoice->get_post_type(), false ) |
|
| 179 | + ) |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + $actions['send'] = sprintf( |
|
| 183 | + '<a href="%1$s">%2$s</a>', |
|
| 184 | + esc_url( |
|
| 185 | + wp_nonce_url( |
|
| 186 | + add_query_arg( |
|
| 187 | + array( |
|
| 188 | + 'getpaid-admin-action' => 'send_invoice', |
|
| 189 | + 'invoice_id' => $invoice->get_id() |
|
| 190 | + ) |
|
| 191 | + ), |
|
| 192 | + 'getpaid-nonce', |
|
| 193 | + 'getpaid-nonce' |
|
| 194 | + ) |
|
| 195 | + ), |
|
| 196 | + esc_html( __( 'Send to Customer', 'invoicing' ) ) |
|
| 197 | + ); |
|
| 198 | + |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + $actions['duplicate'] = sprintf( |
|
| 202 | + '<a href="%1$s">%2$s</a>', |
|
| 203 | + esc_url( |
|
| 204 | + wp_nonce_url( |
|
| 205 | + add_query_arg( |
|
| 206 | + array( |
|
| 207 | + 'getpaid-admin-action' => 'duplicate_invoice', |
|
| 208 | + 'invoice_id' => $post->ID |
|
| 209 | + ) |
|
| 210 | + ), |
|
| 211 | + 'getpaid-nonce', |
|
| 212 | + 'getpaid-nonce' |
|
| 213 | + ) |
|
| 214 | + ), |
|
| 215 | + esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 216 | + ); |
|
| 217 | 217 | |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | return $actions; |
| 221 | - } |
|
| 222 | - |
|
| 223 | - /** |
|
| 224 | - * Returns an array of invoice table columns. |
|
| 225 | - */ |
|
| 226 | - public static function invoice_columns( $columns ) { |
|
| 227 | - |
|
| 228 | - $columns = array( |
|
| 229 | - 'cb' => $columns['cb'], |
|
| 230 | - 'number' => __( 'Invoice', 'invoicing' ), |
|
| 231 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
| 232 | - 'invoice_date' => __( 'Created', 'invoicing' ), |
|
| 233 | - 'payment_date' => __( 'Completed', 'invoicing' ), |
|
| 234 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 235 | - 'recurring' => __( 'Recurring', 'invoicing' ), |
|
| 236 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 237 | - ); |
|
| 238 | - |
|
| 239 | - return apply_filters( 'wpi_invoice_table_columns', $columns ); |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - /** |
|
| 243 | - * Displays invoice table columns. |
|
| 244 | - */ |
|
| 245 | - public static function display_invoice_columns( $column_name, $post_id ) { |
|
| 246 | - |
|
| 247 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 248 | - |
|
| 249 | - switch ( $column_name ) { |
|
| 250 | - |
|
| 251 | - case 'invoice_date' : |
|
| 252 | - $date_time = esc_attr( $invoice->get_created_date() ); |
|
| 253 | - $date = esc_html( getpaid_format_date_value( $date_time, "—", true ) ); |
|
| 254 | - echo "<span title='$date_time'>$date</span>"; |
|
| 255 | - break; |
|
| 256 | - |
|
| 257 | - case 'payment_date' : |
|
| 258 | - |
|
| 259 | - if ( $invoice->is_paid() ) { |
|
| 260 | - $date_time = esc_attr( $invoice->get_completed_date() ); |
|
| 261 | - $date = esc_html( getpaid_format_date_value( $date_time, "—", true ) ); |
|
| 262 | - echo "<span title='$date_time'>$date</span>"; |
|
| 263 | - } else { |
|
| 264 | - echo "—"; |
|
| 265 | - } |
|
| 221 | + } |
|
| 222 | + |
|
| 223 | + /** |
|
| 224 | + * Returns an array of invoice table columns. |
|
| 225 | + */ |
|
| 226 | + public static function invoice_columns( $columns ) { |
|
| 227 | + |
|
| 228 | + $columns = array( |
|
| 229 | + 'cb' => $columns['cb'], |
|
| 230 | + 'number' => __( 'Invoice', 'invoicing' ), |
|
| 231 | + 'customer' => __( 'Customer', 'invoicing' ), |
|
| 232 | + 'invoice_date' => __( 'Created', 'invoicing' ), |
|
| 233 | + 'payment_date' => __( 'Completed', 'invoicing' ), |
|
| 234 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 235 | + 'recurring' => __( 'Recurring', 'invoicing' ), |
|
| 236 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 237 | + ); |
|
| 238 | + |
|
| 239 | + return apply_filters( 'wpi_invoice_table_columns', $columns ); |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + /** |
|
| 243 | + * Displays invoice table columns. |
|
| 244 | + */ |
|
| 245 | + public static function display_invoice_columns( $column_name, $post_id ) { |
|
| 246 | + |
|
| 247 | + $invoice = new WPInv_Invoice( $post_id ); |
|
| 248 | + |
|
| 249 | + switch ( $column_name ) { |
|
| 250 | + |
|
| 251 | + case 'invoice_date' : |
|
| 252 | + $date_time = esc_attr( $invoice->get_created_date() ); |
|
| 253 | + $date = esc_html( getpaid_format_date_value( $date_time, "—", true ) ); |
|
| 254 | + echo "<span title='$date_time'>$date</span>"; |
|
| 255 | + break; |
|
| 256 | + |
|
| 257 | + case 'payment_date' : |
|
| 258 | + |
|
| 259 | + if ( $invoice->is_paid() ) { |
|
| 260 | + $date_time = esc_attr( $invoice->get_completed_date() ); |
|
| 261 | + $date = esc_html( getpaid_format_date_value( $date_time, "—", true ) ); |
|
| 262 | + echo "<span title='$date_time'>$date</span>"; |
|
| 263 | + } else { |
|
| 264 | + echo "—"; |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | - break; |
|
| 267 | + break; |
|
| 268 | 268 | |
| 269 | - case 'amount' : |
|
| 269 | + case 'amount' : |
|
| 270 | 270 | |
| 271 | - $amount = $invoice->get_total(); |
|
| 272 | - $formated_amount = wp_kses_post( wpinv_price( $amount, $invoice->get_currency() ) ); |
|
| 271 | + $amount = $invoice->get_total(); |
|
| 272 | + $formated_amount = wp_kses_post( wpinv_price( $amount, $invoice->get_currency() ) ); |
|
| 273 | 273 | |
| 274 | - if ( $invoice->is_refunded() ) { |
|
| 275 | - $refunded_amount = wp_kses_post( wpinv_price( 0, $invoice->get_currency() ) ); |
|
| 276 | - echo "<del>$formated_amount</del> <ins>$refunded_amount</ins>"; |
|
| 277 | - } else { |
|
| 274 | + if ( $invoice->is_refunded() ) { |
|
| 275 | + $refunded_amount = wp_kses_post( wpinv_price( 0, $invoice->get_currency() ) ); |
|
| 276 | + echo "<del>$formated_amount</del> <ins>$refunded_amount</ins>"; |
|
| 277 | + } else { |
|
| 278 | 278 | |
| 279 | - $discount = $invoice->get_total_discount(); |
|
| 279 | + $discount = $invoice->get_total_discount(); |
|
| 280 | 280 | |
| 281 | - if ( ! empty( $discount ) ) { |
|
| 282 | - $new_amount = wp_kses_post( wpinv_price( $amount + $discount, $invoice->get_currency() ) ); |
|
| 283 | - echo "<del>$new_amount</del> <ins>$formated_amount</ins>"; |
|
| 284 | - } else { |
|
| 285 | - echo $formated_amount; |
|
| 286 | - } |
|
| 281 | + if ( ! empty( $discount ) ) { |
|
| 282 | + $new_amount = wp_kses_post( wpinv_price( $amount + $discount, $invoice->get_currency() ) ); |
|
| 283 | + echo "<del>$new_amount</del> <ins>$formated_amount</ins>"; |
|
| 284 | + } else { |
|
| 285 | + echo $formated_amount; |
|
| 286 | + } |
|
| 287 | 287 | |
| 288 | - } |
|
| 288 | + } |
|
| 289 | 289 | |
| 290 | - break; |
|
| 290 | + break; |
|
| 291 | 291 | |
| 292 | - case 'status' : |
|
| 293 | - $status = esc_html( $invoice->get_status() ); |
|
| 294 | - $status_label = esc_html( $invoice->get_status_nicename() ); |
|
| 292 | + case 'status' : |
|
| 293 | + $status = esc_html( $invoice->get_status() ); |
|
| 294 | + $status_label = esc_html( $invoice->get_status_nicename() ); |
|
| 295 | 295 | |
| 296 | - // If it is paid, show the gateway title. |
|
| 297 | - if ( $invoice->is_paid() ) { |
|
| 298 | - $gateway = esc_html( $invoice->get_gateway_title() ); |
|
| 299 | - $gateway = wp_sprintf( esc_attr__( 'Paid via %s', 'invoicing' ), esc_html( $gateway ) ); |
|
| 296 | + // If it is paid, show the gateway title. |
|
| 297 | + if ( $invoice->is_paid() ) { |
|
| 298 | + $gateway = esc_html( $invoice->get_gateway_title() ); |
|
| 299 | + $gateway = wp_sprintf( esc_attr__( 'Paid via %s', 'invoicing' ), esc_html( $gateway ) ); |
|
| 300 | 300 | |
| 301 | - echo "<mark class='wpi-help-tip getpaid-invoice-status $status' title='$gateway'><span>$status_label</span></mark>"; |
|
| 302 | - } else { |
|
| 303 | - echo "<mark class='getpaid-invoice-status $status'><span>$status_label</span></mark>"; |
|
| 304 | - } |
|
| 301 | + echo "<mark class='wpi-help-tip getpaid-invoice-status $status' title='$gateway'><span>$status_label</span></mark>"; |
|
| 302 | + } else { |
|
| 303 | + echo "<mark class='getpaid-invoice-status $status'><span>$status_label</span></mark>"; |
|
| 304 | + } |
|
| 305 | 305 | |
| 306 | - // If it is not paid, display the overdue and view status. |
|
| 307 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 306 | + // If it is not paid, display the overdue and view status. |
|
| 307 | + if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 308 | 308 | |
| 309 | - // Invoice view status. |
|
| 310 | - if ( wpinv_is_invoice_viewed( $invoice->get_id() ) ) { |
|
| 311 | - echo ' <i class="fa fa-eye wpi-help-tip" title="'. esc_attr__( 'Viewed by Customer', 'invoicing' ).'"></i>'; |
|
| 312 | - } else { |
|
| 313 | - echo ' <i class="fa fa-eye-slash wpi-help-tip" title="'. esc_attr__( 'Not Viewed by Customer', 'invoicing' ).'"></i>'; |
|
| 314 | - } |
|
| 309 | + // Invoice view status. |
|
| 310 | + if ( wpinv_is_invoice_viewed( $invoice->get_id() ) ) { |
|
| 311 | + echo ' <i class="fa fa-eye wpi-help-tip" title="'. esc_attr__( 'Viewed by Customer', 'invoicing' ).'"></i>'; |
|
| 312 | + } else { |
|
| 313 | + echo ' <i class="fa fa-eye-slash wpi-help-tip" title="'. esc_attr__( 'Not Viewed by Customer', 'invoicing' ).'"></i>'; |
|
| 314 | + } |
|
| 315 | 315 | |
| 316 | - // Display the overview status. |
|
| 317 | - if ( wpinv_get_option( 'overdue_active' ) ) { |
|
| 318 | - $due_date = $invoice->get_due_date(); |
|
| 319 | - $fomatted = getpaid_format_date( $due_date ); |
|
| 316 | + // Display the overview status. |
|
| 317 | + if ( wpinv_get_option( 'overdue_active' ) ) { |
|
| 318 | + $due_date = $invoice->get_due_date(); |
|
| 319 | + $fomatted = getpaid_format_date( $due_date ); |
|
| 320 | 320 | |
| 321 | - if ( ! empty( $fomatted ) ) { |
|
| 322 | - $date = wp_sprintf( __( 'Due %s', 'invoicing' ), $fomatted ); |
|
| 323 | - echo "<p class='description' style='color: #888;' title='$due_date'>$fomatted</p>"; |
|
| 324 | - } |
|
| 325 | - } |
|
| 321 | + if ( ! empty( $fomatted ) ) { |
|
| 322 | + $date = wp_sprintf( __( 'Due %s', 'invoicing' ), $fomatted ); |
|
| 323 | + echo "<p class='description' style='color: #888;' title='$due_date'>$fomatted</p>"; |
|
| 324 | + } |
|
| 325 | + } |
|
| 326 | 326 | |
| 327 | - } |
|
| 327 | + } |
|
| 328 | 328 | |
| 329 | - break; |
|
| 329 | + break; |
|
| 330 | 330 | |
| 331 | - case 'recurring': |
|
| 331 | + case 'recurring': |
|
| 332 | 332 | |
| 333 | - if ( $invoice->is_recurring() ) { |
|
| 334 | - echo '<i class="fa fa-check" style="color:#43850a;"></i>'; |
|
| 335 | - } else { |
|
| 336 | - echo '<i class="fa fa-times" style="color:#616161;"></i>'; |
|
| 337 | - } |
|
| 338 | - break; |
|
| 333 | + if ( $invoice->is_recurring() ) { |
|
| 334 | + echo '<i class="fa fa-check" style="color:#43850a;"></i>'; |
|
| 335 | + } else { |
|
| 336 | + echo '<i class="fa fa-times" style="color:#616161;"></i>'; |
|
| 337 | + } |
|
| 338 | + break; |
|
| 339 | 339 | |
| 340 | - case 'number' : |
|
| 340 | + case 'number' : |
|
| 341 | 341 | |
| 342 | - $edit_link = esc_url( get_edit_post_link( $invoice->get_id() ) ); |
|
| 343 | - $invoice_number = esc_html( $invoice->get_number() ); |
|
| 344 | - $invoice_details = esc_attr__( 'View Invoice Details', 'invoicing' ); |
|
| 342 | + $edit_link = esc_url( get_edit_post_link( $invoice->get_id() ) ); |
|
| 343 | + $invoice_number = esc_html( $invoice->get_number() ); |
|
| 344 | + $invoice_details = esc_attr__( 'View Invoice Details', 'invoicing' ); |
|
| 345 | 345 | |
| 346 | - echo "<a href='$edit_link' title='$invoice_details'><strong>$invoice_number</strong></a>"; |
|
| 346 | + echo "<a href='$edit_link' title='$invoice_details'><strong>$invoice_number</strong></a>"; |
|
| 347 | 347 | |
| 348 | - break; |
|
| 348 | + break; |
|
| 349 | 349 | |
| 350 | - case 'customer' : |
|
| 350 | + case 'customer' : |
|
| 351 | 351 | |
| 352 | - $customer_name = $invoice->get_user_full_name(); |
|
| 352 | + $customer_name = $invoice->get_user_full_name(); |
|
| 353 | 353 | |
| 354 | - if ( empty( $customer_name ) ) { |
|
| 355 | - $customer_name = $invoice->get_email(); |
|
| 356 | - } |
|
| 354 | + if ( empty( $customer_name ) ) { |
|
| 355 | + $customer_name = $invoice->get_email(); |
|
| 356 | + } |
|
| 357 | 357 | |
| 358 | - if ( ! empty( $customer_name ) ) { |
|
| 359 | - $customer_details = esc_attr__( 'View Customer Details', 'invoicing' ); |
|
| 360 | - $view_link = esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), admin_url( 'user-edit.php' ) ) ); |
|
| 361 | - echo "<a href='$view_link' title='$customer_details'><span>$customer_name</span></a>"; |
|
| 362 | - } else { |
|
| 363 | - echo '<div>—</div>'; |
|
| 364 | - } |
|
| 358 | + if ( ! empty( $customer_name ) ) { |
|
| 359 | + $customer_details = esc_attr__( 'View Customer Details', 'invoicing' ); |
|
| 360 | + $view_link = esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), admin_url( 'user-edit.php' ) ) ); |
|
| 361 | + echo "<a href='$view_link' title='$customer_details'><span>$customer_name</span></a>"; |
|
| 362 | + } else { |
|
| 363 | + echo '<div>—</div>'; |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | - break; |
|
| 366 | + break; |
|
| 367 | 367 | |
| 368 | - } |
|
| 368 | + } |
|
| 369 | 369 | |
| 370 | - } |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - /** |
|
| 373 | - * Displays invoice bulk actions. |
|
| 374 | - */ |
|
| 375 | - public static function invoice_bulk_actions( $actions ) { |
|
| 376 | - $actions['resend-invoice'] = __( 'Send to Customer', 'invoicing' ); |
|
| 377 | - return $actions; |
|
| 378 | - } |
|
| 372 | + /** |
|
| 373 | + * Displays invoice bulk actions. |
|
| 374 | + */ |
|
| 375 | + public static function invoice_bulk_actions( $actions ) { |
|
| 376 | + $actions['resend-invoice'] = __( 'Send to Customer', 'invoicing' ); |
|
| 377 | + return $actions; |
|
| 378 | + } |
|
| 379 | 379 | |
| 380 | - /** |
|
| 381 | - * Processes invoice bulk actions. |
|
| 382 | - */ |
|
| 383 | - public static function handle_invoice_bulk_actions( $redirect_url, $action, $post_ids ) { |
|
| 380 | + /** |
|
| 381 | + * Processes invoice bulk actions. |
|
| 382 | + */ |
|
| 383 | + public static function handle_invoice_bulk_actions( $redirect_url, $action, $post_ids ) { |
|
| 384 | 384 | |
| 385 | - if ( $action == 'resend-invoice' ) { |
|
| 386 | - foreach ( $post_ids as $post_id ) { |
|
| 387 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $post_id ), true ); |
|
| 388 | - } |
|
| 389 | - } |
|
| 385 | + if ( $action == 'resend-invoice' ) { |
|
| 386 | + foreach ( $post_ids as $post_id ) { |
|
| 387 | + getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $post_id ), true ); |
|
| 388 | + } |
|
| 389 | + } |
|
| 390 | 390 | |
| 391 | - return $redirect_url; |
|
| 391 | + return $redirect_url; |
|
| 392 | 392 | |
| 393 | - } |
|
| 393 | + } |
|
| 394 | 394 | |
| 395 | - /** |
|
| 396 | - * Returns an array of payment forms table columns. |
|
| 397 | - */ |
|
| 398 | - public static function payment_form_columns( $columns ) { |
|
| 395 | + /** |
|
| 396 | + * Returns an array of payment forms table columns. |
|
| 397 | + */ |
|
| 398 | + public static function payment_form_columns( $columns ) { |
|
| 399 | 399 | |
| 400 | - $columns = array( |
|
| 401 | - 'cb' => $columns['cb'], |
|
| 402 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 403 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 404 | - 'earnings' => __( 'Revenue', 'invoicing' ), |
|
| 405 | - 'refunds' => __( 'Refunded', 'invoicing' ), |
|
| 406 | - 'items' => __( 'Items', 'invoicing' ), |
|
| 407 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 408 | - ); |
|
| 400 | + $columns = array( |
|
| 401 | + 'cb' => $columns['cb'], |
|
| 402 | + 'title' => __( 'Name', 'invoicing' ), |
|
| 403 | + 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 404 | + 'earnings' => __( 'Revenue', 'invoicing' ), |
|
| 405 | + 'refunds' => __( 'Refunded', 'invoicing' ), |
|
| 406 | + 'items' => __( 'Items', 'invoicing' ), |
|
| 407 | + 'date' => __( 'Date', 'invoicing' ), |
|
| 408 | + ); |
|
| 409 | 409 | |
| 410 | - return apply_filters( 'wpi_payment_form_table_columns', $columns ); |
|
| 410 | + return apply_filters( 'wpi_payment_form_table_columns', $columns ); |
|
| 411 | 411 | |
| 412 | - } |
|
| 412 | + } |
|
| 413 | 413 | |
| 414 | - /** |
|
| 415 | - * Displays payment form table columns. |
|
| 416 | - */ |
|
| 417 | - public static function display_payment_form_columns( $column_name, $post_id ) { |
|
| 414 | + /** |
|
| 415 | + * Displays payment form table columns. |
|
| 416 | + */ |
|
| 417 | + public static function display_payment_form_columns( $column_name, $post_id ) { |
|
| 418 | 418 | |
| 419 | - // Retrieve the payment form. |
|
| 420 | - $form = new GetPaid_Payment_Form( $post_id ); |
|
| 419 | + // Retrieve the payment form. |
|
| 420 | + $form = new GetPaid_Payment_Form( $post_id ); |
|
| 421 | 421 | |
| 422 | - switch ( $column_name ) { |
|
| 422 | + switch ( $column_name ) { |
|
| 423 | 423 | |
| 424 | - case 'earnings' : |
|
| 425 | - echo wpinv_price( $form->get_earned() ); |
|
| 426 | - break; |
|
| 424 | + case 'earnings' : |
|
| 425 | + echo wpinv_price( $form->get_earned() ); |
|
| 426 | + break; |
|
| 427 | 427 | |
| 428 | - case 'refunds' : |
|
| 429 | - echo wpinv_price( $form->get_refunded() ); |
|
| 430 | - break; |
|
| 428 | + case 'refunds' : |
|
| 429 | + echo wpinv_price( $form->get_refunded() ); |
|
| 430 | + break; |
|
| 431 | 431 | |
| 432 | - case 'refunds' : |
|
| 433 | - echo wpinv_price( $form->get_refunded() ); |
|
| 434 | - break; |
|
| 432 | + case 'refunds' : |
|
| 433 | + echo wpinv_price( $form->get_refunded() ); |
|
| 434 | + break; |
|
| 435 | 435 | |
| 436 | - case 'shortcode' : |
|
| 436 | + case 'shortcode' : |
|
| 437 | 437 | |
| 438 | - if ( $form->is_default() ) { |
|
| 439 | - echo '—'; |
|
| 440 | - } else { |
|
| 441 | - echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr( $form->get_id() ) . ']" style="width: 100%;" readonly/>'; |
|
| 442 | - } |
|
| 438 | + if ( $form->is_default() ) { |
|
| 439 | + echo '—'; |
|
| 440 | + } else { |
|
| 441 | + echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr( $form->get_id() ) . ']" style="width: 100%;" readonly/>'; |
|
| 442 | + } |
|
| 443 | 443 | |
| 444 | - break; |
|
| 444 | + break; |
|
| 445 | 445 | |
| 446 | - case 'items' : |
|
| 446 | + case 'items' : |
|
| 447 | 447 | |
| 448 | - $items = $form->get_items(); |
|
| 448 | + $items = $form->get_items(); |
|
| 449 | 449 | |
| 450 | - if ( $form->is_default() || empty( $items ) ) { |
|
| 451 | - echo '—'; |
|
| 452 | - return; |
|
| 453 | - } |
|
| 450 | + if ( $form->is_default() || empty( $items ) ) { |
|
| 451 | + echo '—'; |
|
| 452 | + return; |
|
| 453 | + } |
|
| 454 | 454 | |
| 455 | - $_items = array(); |
|
| 455 | + $_items = array(); |
|
| 456 | 456 | |
| 457 | - foreach ( $items as $item ) { |
|
| 458 | - $url = $item->get_edit_url(); |
|
| 457 | + foreach ( $items as $item ) { |
|
| 458 | + $url = $item->get_edit_url(); |
|
| 459 | 459 | |
| 460 | - if ( empty( $url ) ) { |
|
| 461 | - $_items[] = esc_html( $item->get_name() ); |
|
| 462 | - } else { |
|
| 463 | - $_items[] = sprintf( |
|
| 464 | - '<a href="%s">%s</a>', |
|
| 465 | - esc_url( $url ), |
|
| 466 | - esc_html( $item->get_name() ) |
|
| 467 | - ); |
|
| 468 | - } |
|
| 460 | + if ( empty( $url ) ) { |
|
| 461 | + $_items[] = esc_html( $item->get_name() ); |
|
| 462 | + } else { |
|
| 463 | + $_items[] = sprintf( |
|
| 464 | + '<a href="%s">%s</a>', |
|
| 465 | + esc_url( $url ), |
|
| 466 | + esc_html( $item->get_name() ) |
|
| 467 | + ); |
|
| 468 | + } |
|
| 469 | 469 | |
| 470 | - } |
|
| 470 | + } |
|
| 471 | 471 | |
| 472 | - echo implode( '<br>', $_items ); |
|
| 472 | + echo implode( '<br>', $_items ); |
|
| 473 | 473 | |
| 474 | - break; |
|
| 474 | + break; |
|
| 475 | 475 | |
| 476 | - } |
|
| 476 | + } |
|
| 477 | 477 | |
| 478 | - } |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | - /** |
|
| 481 | - * Filters post states. |
|
| 482 | - */ |
|
| 483 | - public static function filter_payment_form_state( $post_states, $post ) { |
|
| 480 | + /** |
|
| 481 | + * Filters post states. |
|
| 482 | + */ |
|
| 483 | + public static function filter_payment_form_state( $post_states, $post ) { |
|
| 484 | 484 | |
| 485 | - if ( 'wpi_payment_form' == $post->post_type && wpinv_get_default_payment_form() == $post->ID ) { |
|
| 486 | - $post_states[ 'default_form' ] = __( 'Default Payment Form', 'invoicing' ); |
|
| 487 | - } |
|
| 485 | + if ( 'wpi_payment_form' == $post->post_type && wpinv_get_default_payment_form() == $post->ID ) { |
|
| 486 | + $post_states[ 'default_form' ] = __( 'Default Payment Form', 'invoicing' ); |
|
| 487 | + } |
|
| 488 | 488 | |
| 489 | - return $post_states; |
|
| 490 | - |
|
| 491 | - } |
|
| 492 | - |
|
| 493 | - /** |
|
| 494 | - * Returns an array of coupon table columns. |
|
| 495 | - */ |
|
| 496 | - public static function discount_columns( $columns ) { |
|
| 497 | - |
|
| 498 | - $columns = array( |
|
| 499 | - 'cb' => $columns['cb'], |
|
| 500 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 501 | - 'code' => __( 'Code', 'invoicing' ), |
|
| 502 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 503 | - 'usage' => __( 'Usage / Limit', 'invoicing' ), |
|
| 504 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 505 | - 'expiry_date' => __( 'Expiry Date', 'invoicing' ), |
|
| 506 | - ); |
|
| 507 | - |
|
| 508 | - return apply_filters( 'wpi_discount_table_columns', $columns ); |
|
| 509 | - } |
|
| 510 | - |
|
| 511 | - /** |
|
| 512 | - * Filters post states. |
|
| 513 | - */ |
|
| 514 | - public static function filter_discount_state( $post_states, $post ) { |
|
| 515 | - |
|
| 516 | - if ( 'wpi_discount' == $post->post_type ) { |
|
| 517 | - |
|
| 518 | - $discount = new WPInv_Discount( $post ); |
|
| 519 | - |
|
| 520 | - $status = $discount->is_expired() ? 'expired' : $discount->get_status(); |
|
| 521 | - |
|
| 522 | - if ( $status != 'publish' ) { |
|
| 523 | - return array( |
|
| 524 | - 'discount_status' => wpinv_discount_status( $status ), |
|
| 525 | - ); |
|
| 526 | - } |
|
| 527 | - |
|
| 528 | - return array(); |
|
| 529 | - |
|
| 530 | - } |
|
| 531 | - |
|
| 532 | - return $post_states; |
|
| 533 | - |
|
| 534 | - } |
|
| 535 | - |
|
| 536 | - /** |
|
| 537 | - * Returns an array of items table columns. |
|
| 538 | - */ |
|
| 539 | - public static function item_columns( $columns ) { |
|
| 540 | - |
|
| 541 | - $columns = array( |
|
| 542 | - 'cb' => $columns['cb'], |
|
| 543 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 544 | - 'price' => __( 'Price', 'invoicing' ), |
|
| 545 | - 'vat_rule' => __( 'VAT rule', 'invoicing' ), |
|
| 546 | - 'vat_class' => __( 'VAT class', 'invoicing' ), |
|
| 547 | - 'type' => __( 'Type', 'invoicing' ), |
|
| 548 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 549 | - ); |
|
| 550 | - |
|
| 551 | - if ( ! wpinv_use_taxes() ) { |
|
| 552 | - unset( $columns['vat_rule'] ); |
|
| 553 | - unset( $columns['vat_class'] ); |
|
| 554 | - } |
|
| 555 | - |
|
| 556 | - return apply_filters( 'wpi_item_table_columns', $columns ); |
|
| 557 | - } |
|
| 558 | - |
|
| 559 | - /** |
|
| 560 | - * Returns an array of sortable items table columns. |
|
| 561 | - */ |
|
| 562 | - public static function sortable_item_columns( $columns ) { |
|
| 563 | - |
|
| 564 | - return array_merge( |
|
| 565 | - $columns, |
|
| 566 | - array( |
|
| 567 | - 'price' => 'price', |
|
| 568 | - 'vat_rule' => 'vat_rule', |
|
| 569 | - 'vat_class' => 'vat_class', |
|
| 570 | - 'type' => 'type', |
|
| 571 | - ) |
|
| 572 | - ); |
|
| 573 | - |
|
| 574 | - } |
|
| 575 | - |
|
| 576 | - /** |
|
| 577 | - * Displays items table columns. |
|
| 578 | - */ |
|
| 579 | - public static function display_item_columns( $column_name, $post_id ) { |
|
| 489 | + return $post_states; |
|
| 490 | + |
|
| 491 | + } |
|
| 492 | + |
|
| 493 | + /** |
|
| 494 | + * Returns an array of coupon table columns. |
|
| 495 | + */ |
|
| 496 | + public static function discount_columns( $columns ) { |
|
| 497 | + |
|
| 498 | + $columns = array( |
|
| 499 | + 'cb' => $columns['cb'], |
|
| 500 | + 'title' => __( 'Name', 'invoicing' ), |
|
| 501 | + 'code' => __( 'Code', 'invoicing' ), |
|
| 502 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 503 | + 'usage' => __( 'Usage / Limit', 'invoicing' ), |
|
| 504 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 505 | + 'expiry_date' => __( 'Expiry Date', 'invoicing' ), |
|
| 506 | + ); |
|
| 507 | + |
|
| 508 | + return apply_filters( 'wpi_discount_table_columns', $columns ); |
|
| 509 | + } |
|
| 510 | + |
|
| 511 | + /** |
|
| 512 | + * Filters post states. |
|
| 513 | + */ |
|
| 514 | + public static function filter_discount_state( $post_states, $post ) { |
|
| 515 | + |
|
| 516 | + if ( 'wpi_discount' == $post->post_type ) { |
|
| 517 | + |
|
| 518 | + $discount = new WPInv_Discount( $post ); |
|
| 519 | + |
|
| 520 | + $status = $discount->is_expired() ? 'expired' : $discount->get_status(); |
|
| 521 | + |
|
| 522 | + if ( $status != 'publish' ) { |
|
| 523 | + return array( |
|
| 524 | + 'discount_status' => wpinv_discount_status( $status ), |
|
| 525 | + ); |
|
| 526 | + } |
|
| 527 | + |
|
| 528 | + return array(); |
|
| 529 | + |
|
| 530 | + } |
|
| 531 | + |
|
| 532 | + return $post_states; |
|
| 533 | + |
|
| 534 | + } |
|
| 535 | + |
|
| 536 | + /** |
|
| 537 | + * Returns an array of items table columns. |
|
| 538 | + */ |
|
| 539 | + public static function item_columns( $columns ) { |
|
| 540 | + |
|
| 541 | + $columns = array( |
|
| 542 | + 'cb' => $columns['cb'], |
|
| 543 | + 'title' => __( 'Name', 'invoicing' ), |
|
| 544 | + 'price' => __( 'Price', 'invoicing' ), |
|
| 545 | + 'vat_rule' => __( 'VAT rule', 'invoicing' ), |
|
| 546 | + 'vat_class' => __( 'VAT class', 'invoicing' ), |
|
| 547 | + 'type' => __( 'Type', 'invoicing' ), |
|
| 548 | + 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 549 | + ); |
|
| 550 | + |
|
| 551 | + if ( ! wpinv_use_taxes() ) { |
|
| 552 | + unset( $columns['vat_rule'] ); |
|
| 553 | + unset( $columns['vat_class'] ); |
|
| 554 | + } |
|
| 555 | + |
|
| 556 | + return apply_filters( 'wpi_item_table_columns', $columns ); |
|
| 557 | + } |
|
| 558 | + |
|
| 559 | + /** |
|
| 560 | + * Returns an array of sortable items table columns. |
|
| 561 | + */ |
|
| 562 | + public static function sortable_item_columns( $columns ) { |
|
| 563 | + |
|
| 564 | + return array_merge( |
|
| 565 | + $columns, |
|
| 566 | + array( |
|
| 567 | + 'price' => 'price', |
|
| 568 | + 'vat_rule' => 'vat_rule', |
|
| 569 | + 'vat_class' => 'vat_class', |
|
| 570 | + 'type' => 'type', |
|
| 571 | + ) |
|
| 572 | + ); |
|
| 573 | + |
|
| 574 | + } |
|
| 575 | + |
|
| 576 | + /** |
|
| 577 | + * Displays items table columns. |
|
| 578 | + */ |
|
| 579 | + public static function display_item_columns( $column_name, $post_id ) { |
|
| 580 | 580 | |
| 581 | - $item = new WPInv_Item( $post_id ); |
|
| 581 | + $item = new WPInv_Item( $post_id ); |
|
| 582 | 582 | |
| 583 | - switch ( $column_name ) { |
|
| 583 | + switch ( $column_name ) { |
|
| 584 | 584 | |
| 585 | - case 'price' : |
|
| 585 | + case 'price' : |
|
| 586 | 586 | |
| 587 | - if ( ! $item->is_recurring() ) { |
|
| 588 | - echo $item->get_the_price(); |
|
| 589 | - break; |
|
| 590 | - } |
|
| 587 | + if ( ! $item->is_recurring() ) { |
|
| 588 | + echo $item->get_the_price(); |
|
| 589 | + break; |
|
| 590 | + } |
|
| 591 | 591 | |
| 592 | - $price = wp_sprintf( |
|
| 593 | - __( '%s / %s', 'invoicing' ), |
|
| 594 | - $item->get_the_price(), |
|
| 595 | - getpaid_get_subscription_period_label( $item->get_recurring_period(), $item->get_recurring_interval(), '' ) |
|
| 596 | - ); |
|
| 592 | + $price = wp_sprintf( |
|
| 593 | + __( '%s / %s', 'invoicing' ), |
|
| 594 | + $item->get_the_price(), |
|
| 595 | + getpaid_get_subscription_period_label( $item->get_recurring_period(), $item->get_recurring_interval(), '' ) |
|
| 596 | + ); |
|
| 597 | 597 | |
| 598 | - if ( $item->get_the_price() == $item->get_the_initial_price() ) { |
|
| 599 | - echo $price; |
|
| 600 | - break; |
|
| 601 | - } |
|
| 598 | + if ( $item->get_the_price() == $item->get_the_initial_price() ) { |
|
| 599 | + echo $price; |
|
| 600 | + break; |
|
| 601 | + } |
|
| 602 | 602 | |
| 603 | - echo $item->get_the_initial_price(); |
|
| 603 | + echo $item->get_the_initial_price(); |
|
| 604 | 604 | |
| 605 | - echo '<span class="meta">' . wp_sprintf( __( 'then %s', 'invoicing' ), $price ) .'</span>'; |
|
| 606 | - break; |
|
| 605 | + echo '<span class="meta">' . wp_sprintf( __( 'then %s', 'invoicing' ), $price ) .'</span>'; |
|
| 606 | + break; |
|
| 607 | 607 | |
| 608 | - case 'vat_rule' : |
|
| 609 | - echo getpaid_get_tax_rule_label( $item->get_vat_rule() ); |
|
| 610 | - break; |
|
| 608 | + case 'vat_rule' : |
|
| 609 | + echo getpaid_get_tax_rule_label( $item->get_vat_rule() ); |
|
| 610 | + break; |
|
| 611 | 611 | |
| 612 | - case 'vat_class' : |
|
| 613 | - echo getpaid_get_tax_class_label( $item->get_vat_class() ); |
|
| 614 | - break; |
|
| 612 | + case 'vat_class' : |
|
| 613 | + echo getpaid_get_tax_class_label( $item->get_vat_class() ); |
|
| 614 | + break; |
|
| 615 | 615 | |
| 616 | - case 'shortcode' : |
|
| 616 | + case 'shortcode' : |
|
| 617 | 617 | |
| 618 | - if ( $item->is_type( array( '', 'fee', 'custom' ) ) ) { |
|
| 619 | - echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr( $item->get_id() ) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
| 620 | - } else { |
|
| 621 | - echo "—"; |
|
| 622 | - } |
|
| 618 | + if ( $item->is_type( array( '', 'fee', 'custom' ) ) ) { |
|
| 619 | + echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr( $item->get_id() ) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
| 620 | + } else { |
|
| 621 | + echo "—"; |
|
| 622 | + } |
|
| 623 | 623 | |
| 624 | - break; |
|
| 624 | + break; |
|
| 625 | 625 | |
| 626 | - case 'type' : |
|
| 627 | - echo wpinv_item_type( $item->get_id() ) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>'; |
|
| 628 | - break; |
|
| 626 | + case 'type' : |
|
| 627 | + echo wpinv_item_type( $item->get_id() ) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>'; |
|
| 628 | + break; |
|
| 629 | 629 | |
| 630 | - } |
|
| 630 | + } |
|
| 631 | 631 | |
| 632 | - } |
|
| 632 | + } |
|
| 633 | 633 | |
| 634 | - /** |
|
| 635 | - * Lets users filter items using taxes. |
|
| 636 | - */ |
|
| 637 | - public static function add_item_filters( $post_type ) { |
|
| 634 | + /** |
|
| 635 | + * Lets users filter items using taxes. |
|
| 636 | + */ |
|
| 637 | + public static function add_item_filters( $post_type ) { |
|
| 638 | 638 | |
| 639 | - // Abort if we're not dealing with items. |
|
| 640 | - if ( $post_type != 'wpi_item' ) { |
|
| 641 | - return; |
|
| 642 | - } |
|
| 639 | + // Abort if we're not dealing with items. |
|
| 640 | + if ( $post_type != 'wpi_item' ) { |
|
| 641 | + return; |
|
| 642 | + } |
|
| 643 | 643 | |
| 644 | - // Filter by vat rules. |
|
| 645 | - if ( wpinv_use_taxes() ) { |
|
| 644 | + // Filter by vat rules. |
|
| 645 | + if ( wpinv_use_taxes() ) { |
|
| 646 | 646 | |
| 647 | - // Sanitize selected vat rule. |
|
| 648 | - $vat_rule = ''; |
|
| 649 | - $vat_rules = getpaid_get_tax_rules(); |
|
| 650 | - if ( isset( $_GET['vat_rule'] ) ) { |
|
| 651 | - $vat_rule = sanitize_text_field( $_GET['vat_rule'] ); |
|
| 652 | - } |
|
| 653 | - |
|
| 654 | - // Filter by VAT rule. |
|
| 655 | - echo wpinv_html_select( |
|
| 656 | - array( |
|
| 657 | - 'options' => array_merge( |
|
| 658 | - array( |
|
| 659 | - '' => __( 'All VAT rules', 'invoicing' ) |
|
| 660 | - ), |
|
| 661 | - $vat_rules |
|
| 662 | - ), |
|
| 663 | - 'name' => 'vat_rule', |
|
| 664 | - 'id' => 'vat_rule', |
|
| 665 | - 'selected' => in_array( $vat_rule, array_keys( $vat_rules ) ) ? $vat_rule : '', |
|
| 666 | - 'show_option_all' => false, |
|
| 667 | - 'show_option_none' => false, |
|
| 668 | - ) |
|
| 669 | - ); |
|
| 670 | - |
|
| 671 | - // Filter by VAT class. |
|
| 647 | + // Sanitize selected vat rule. |
|
| 648 | + $vat_rule = ''; |
|
| 649 | + $vat_rules = getpaid_get_tax_rules(); |
|
| 650 | + if ( isset( $_GET['vat_rule'] ) ) { |
|
| 651 | + $vat_rule = sanitize_text_field( $_GET['vat_rule'] ); |
|
| 652 | + } |
|
| 653 | + |
|
| 654 | + // Filter by VAT rule. |
|
| 655 | + echo wpinv_html_select( |
|
| 656 | + array( |
|
| 657 | + 'options' => array_merge( |
|
| 658 | + array( |
|
| 659 | + '' => __( 'All VAT rules', 'invoicing' ) |
|
| 660 | + ), |
|
| 661 | + $vat_rules |
|
| 662 | + ), |
|
| 663 | + 'name' => 'vat_rule', |
|
| 664 | + 'id' => 'vat_rule', |
|
| 665 | + 'selected' => in_array( $vat_rule, array_keys( $vat_rules ) ) ? $vat_rule : '', |
|
| 666 | + 'show_option_all' => false, |
|
| 667 | + 'show_option_none' => false, |
|
| 668 | + ) |
|
| 669 | + ); |
|
| 670 | + |
|
| 671 | + // Filter by VAT class. |
|
| 672 | 672 | |
| 673 | - // Sanitize selected vat rule. |
|
| 674 | - $vat_class = ''; |
|
| 675 | - $vat_classes = getpaid_get_tax_classes(); |
|
| 676 | - if ( isset( $_GET['vat_class'] ) ) { |
|
| 677 | - $vat_class = sanitize_text_field( $_GET['vat_class'] ); |
|
| 678 | - } |
|
| 679 | - |
|
| 680 | - echo wpinv_html_select( |
|
| 681 | - array( |
|
| 682 | - 'options' => array_merge( |
|
| 683 | - array( |
|
| 684 | - '' => __( 'All VAT classes', 'invoicing' ) |
|
| 685 | - ), |
|
| 686 | - $vat_classes |
|
| 687 | - ), |
|
| 688 | - 'name' => 'vat_class', |
|
| 689 | - 'id' => 'vat_class', |
|
| 690 | - 'selected' => in_array( $vat_class, array_keys( $vat_classes ) ) ? $vat_class : '', |
|
| 691 | - 'show_option_all' => false, |
|
| 692 | - 'show_option_none' => false, |
|
| 693 | - ) |
|
| 694 | - ); |
|
| 695 | - |
|
| 696 | - } |
|
| 697 | - |
|
| 698 | - // Filter by item type. |
|
| 699 | - $type = ''; |
|
| 700 | - if ( isset( $_GET['type'] ) ) { |
|
| 701 | - $type = sanitize_text_field( $_GET['type'] ); |
|
| 702 | - } |
|
| 703 | - |
|
| 704 | - echo wpinv_html_select( |
|
| 705 | - array( |
|
| 706 | - 'options' => array_merge( |
|
| 707 | - array( |
|
| 708 | - '' => __( 'All item types', 'invoicing' ) |
|
| 709 | - ), |
|
| 710 | - wpinv_get_item_types() |
|
| 711 | - ), |
|
| 712 | - 'name' => 'type', |
|
| 713 | - 'id' => 'type', |
|
| 714 | - 'selected' => in_array( $type, wpinv_item_types() ) ? $type : '', |
|
| 715 | - 'show_option_all' => false, |
|
| 716 | - 'show_option_none' => false, |
|
| 717 | - ) |
|
| 718 | - ); |
|
| 719 | - |
|
| 720 | - } |
|
| 721 | - |
|
| 722 | - /** |
|
| 723 | - * Filters the item query. |
|
| 724 | - */ |
|
| 725 | - public static function filter_item_query( $query ) { |
|
| 726 | - |
|
| 727 | - // modify the query only if it admin and main query. |
|
| 728 | - if ( ! ( is_admin() && $query->is_main_query() ) ){ |
|
| 729 | - return $query; |
|
| 730 | - } |
|
| 731 | - |
|
| 732 | - // we want to modify the query for our items. |
|
| 733 | - if ( empty( $query->query['post_type'] ) || 'wpi_item' != $query->query['post_type'] ){ |
|
| 734 | - return $query; |
|
| 735 | - } |
|
| 736 | - |
|
| 737 | - if ( empty( $query->query_vars['meta_query'] ) ) { |
|
| 738 | - $query->query_vars['meta_query'] = array(); |
|
| 739 | - } |
|
| 740 | - |
|
| 741 | - // Filter vat rule type |
|
| 673 | + // Sanitize selected vat rule. |
|
| 674 | + $vat_class = ''; |
|
| 675 | + $vat_classes = getpaid_get_tax_classes(); |
|
| 676 | + if ( isset( $_GET['vat_class'] ) ) { |
|
| 677 | + $vat_class = sanitize_text_field( $_GET['vat_class'] ); |
|
| 678 | + } |
|
| 679 | + |
|
| 680 | + echo wpinv_html_select( |
|
| 681 | + array( |
|
| 682 | + 'options' => array_merge( |
|
| 683 | + array( |
|
| 684 | + '' => __( 'All VAT classes', 'invoicing' ) |
|
| 685 | + ), |
|
| 686 | + $vat_classes |
|
| 687 | + ), |
|
| 688 | + 'name' => 'vat_class', |
|
| 689 | + 'id' => 'vat_class', |
|
| 690 | + 'selected' => in_array( $vat_class, array_keys( $vat_classes ) ) ? $vat_class : '', |
|
| 691 | + 'show_option_all' => false, |
|
| 692 | + 'show_option_none' => false, |
|
| 693 | + ) |
|
| 694 | + ); |
|
| 695 | + |
|
| 696 | + } |
|
| 697 | + |
|
| 698 | + // Filter by item type. |
|
| 699 | + $type = ''; |
|
| 700 | + if ( isset( $_GET['type'] ) ) { |
|
| 701 | + $type = sanitize_text_field( $_GET['type'] ); |
|
| 702 | + } |
|
| 703 | + |
|
| 704 | + echo wpinv_html_select( |
|
| 705 | + array( |
|
| 706 | + 'options' => array_merge( |
|
| 707 | + array( |
|
| 708 | + '' => __( 'All item types', 'invoicing' ) |
|
| 709 | + ), |
|
| 710 | + wpinv_get_item_types() |
|
| 711 | + ), |
|
| 712 | + 'name' => 'type', |
|
| 713 | + 'id' => 'type', |
|
| 714 | + 'selected' => in_array( $type, wpinv_item_types() ) ? $type : '', |
|
| 715 | + 'show_option_all' => false, |
|
| 716 | + 'show_option_none' => false, |
|
| 717 | + ) |
|
| 718 | + ); |
|
| 719 | + |
|
| 720 | + } |
|
| 721 | + |
|
| 722 | + /** |
|
| 723 | + * Filters the item query. |
|
| 724 | + */ |
|
| 725 | + public static function filter_item_query( $query ) { |
|
| 726 | + |
|
| 727 | + // modify the query only if it admin and main query. |
|
| 728 | + if ( ! ( is_admin() && $query->is_main_query() ) ){ |
|
| 729 | + return $query; |
|
| 730 | + } |
|
| 731 | + |
|
| 732 | + // we want to modify the query for our items. |
|
| 733 | + if ( empty( $query->query['post_type'] ) || 'wpi_item' != $query->query['post_type'] ){ |
|
| 734 | + return $query; |
|
| 735 | + } |
|
| 736 | + |
|
| 737 | + if ( empty( $query->query_vars['meta_query'] ) ) { |
|
| 738 | + $query->query_vars['meta_query'] = array(); |
|
| 739 | + } |
|
| 740 | + |
|
| 741 | + // Filter vat rule type |
|
| 742 | 742 | if ( ! empty( $_GET['vat_rule'] ) ) { |
| 743 | 743 | $query->query_vars['meta_query'][] = array( |
| 744 | 744 | 'key' => '_wpinv_vat_rule', |
@@ -763,97 +763,97 @@ discard block |
||
| 763 | 763 | 'value' => sanitize_text_field( $_GET['type'] ), |
| 764 | 764 | 'compare' => '=' |
| 765 | 765 | ); |
| 766 | - } |
|
| 767 | - |
|
| 768 | - } |
|
| 769 | - |
|
| 770 | - /** |
|
| 771 | - * Reorders items. |
|
| 772 | - */ |
|
| 773 | - public static function reorder_items( $vars ) { |
|
| 774 | - global $typenow; |
|
| 775 | - |
|
| 776 | - if ( 'wpi_item' !== $typenow || empty( $vars['orderby'] ) ) { |
|
| 777 | - return $vars; |
|
| 778 | - } |
|
| 779 | - |
|
| 780 | - // By item type. |
|
| 781 | - if ( 'type' == $vars['orderby'] ) { |
|
| 782 | - return array_merge( |
|
| 783 | - $vars, |
|
| 784 | - array( |
|
| 785 | - 'meta_key' => '_wpinv_type', |
|
| 786 | - 'orderby' => 'meta_value' |
|
| 787 | - ) |
|
| 788 | - ); |
|
| 789 | - } |
|
| 790 | - |
|
| 791 | - // By vat class. |
|
| 792 | - if ( 'vat_class' == $vars['orderby'] ) { |
|
| 793 | - return array_merge( |
|
| 794 | - $vars, |
|
| 795 | - array( |
|
| 796 | - 'meta_key' => '_wpinv_vat_class', |
|
| 797 | - 'orderby' => 'meta_value' |
|
| 798 | - ) |
|
| 799 | - ); |
|
| 800 | - } |
|
| 801 | - |
|
| 802 | - // By vat rule. |
|
| 803 | - if ( 'vat_rule' == $vars['orderby'] ) { |
|
| 804 | - return array_merge( |
|
| 805 | - $vars, |
|
| 806 | - array( |
|
| 807 | - 'meta_key' => '_wpinv_vat_rule', |
|
| 808 | - 'orderby' => 'meta_value' |
|
| 809 | - ) |
|
| 810 | - ); |
|
| 811 | - } |
|
| 812 | - |
|
| 813 | - // By price. |
|
| 814 | - if ( 'price' == $vars['orderby'] ) { |
|
| 815 | - return array_merge( |
|
| 816 | - $vars, |
|
| 817 | - array( |
|
| 818 | - 'meta_key' => '_wpinv_price', |
|
| 819 | - 'orderby' => 'meta_value_num' |
|
| 820 | - ) |
|
| 821 | - ); |
|
| 822 | - } |
|
| 823 | - |
|
| 824 | - return $vars; |
|
| 825 | - |
|
| 826 | - } |
|
| 827 | - |
|
| 828 | - /** |
|
| 829 | - * Fired when deleting a post. |
|
| 830 | - */ |
|
| 831 | - public static function delete_post( $post_id ) { |
|
| 832 | - |
|
| 833 | - switch ( get_post_type( $post_id ) ) { |
|
| 834 | - |
|
| 835 | - case 'wpi_item' : |
|
| 836 | - do_action( "getpaid_before_delete_item", new WPInv_Item( $post_id ) ); |
|
| 837 | - break; |
|
| 838 | - |
|
| 839 | - case 'wpi_payment_form' : |
|
| 840 | - do_action( "getpaid_before_delete_payment_form", new GetPaid_Payment_Form( $post_id ) ); |
|
| 841 | - break; |
|
| 842 | - |
|
| 843 | - case 'wpi_discount' : |
|
| 844 | - do_action( "getpaid_before_delete_discount", new WPInv_Discount( $post_id ) ); |
|
| 845 | - break; |
|
| 846 | - |
|
| 847 | - case 'wpi_invoice' : |
|
| 848 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 849 | - do_action( "getpaid_before_delete_invoice", $invoice ); |
|
| 850 | - $invoice->get_data_store()->delete_items( $invoice ); |
|
| 851 | - $invoice->get_data_store()->delete_special_fields( $invoice ); |
|
| 852 | - break; |
|
| 853 | - } |
|
| 854 | - } |
|
| 855 | - |
|
| 856 | - /** |
|
| 766 | + } |
|
| 767 | + |
|
| 768 | + } |
|
| 769 | + |
|
| 770 | + /** |
|
| 771 | + * Reorders items. |
|
| 772 | + */ |
|
| 773 | + public static function reorder_items( $vars ) { |
|
| 774 | + global $typenow; |
|
| 775 | + |
|
| 776 | + if ( 'wpi_item' !== $typenow || empty( $vars['orderby'] ) ) { |
|
| 777 | + return $vars; |
|
| 778 | + } |
|
| 779 | + |
|
| 780 | + // By item type. |
|
| 781 | + if ( 'type' == $vars['orderby'] ) { |
|
| 782 | + return array_merge( |
|
| 783 | + $vars, |
|
| 784 | + array( |
|
| 785 | + 'meta_key' => '_wpinv_type', |
|
| 786 | + 'orderby' => 'meta_value' |
|
| 787 | + ) |
|
| 788 | + ); |
|
| 789 | + } |
|
| 790 | + |
|
| 791 | + // By vat class. |
|
| 792 | + if ( 'vat_class' == $vars['orderby'] ) { |
|
| 793 | + return array_merge( |
|
| 794 | + $vars, |
|
| 795 | + array( |
|
| 796 | + 'meta_key' => '_wpinv_vat_class', |
|
| 797 | + 'orderby' => 'meta_value' |
|
| 798 | + ) |
|
| 799 | + ); |
|
| 800 | + } |
|
| 801 | + |
|
| 802 | + // By vat rule. |
|
| 803 | + if ( 'vat_rule' == $vars['orderby'] ) { |
|
| 804 | + return array_merge( |
|
| 805 | + $vars, |
|
| 806 | + array( |
|
| 807 | + 'meta_key' => '_wpinv_vat_rule', |
|
| 808 | + 'orderby' => 'meta_value' |
|
| 809 | + ) |
|
| 810 | + ); |
|
| 811 | + } |
|
| 812 | + |
|
| 813 | + // By price. |
|
| 814 | + if ( 'price' == $vars['orderby'] ) { |
|
| 815 | + return array_merge( |
|
| 816 | + $vars, |
|
| 817 | + array( |
|
| 818 | + 'meta_key' => '_wpinv_price', |
|
| 819 | + 'orderby' => 'meta_value_num' |
|
| 820 | + ) |
|
| 821 | + ); |
|
| 822 | + } |
|
| 823 | + |
|
| 824 | + return $vars; |
|
| 825 | + |
|
| 826 | + } |
|
| 827 | + |
|
| 828 | + /** |
|
| 829 | + * Fired when deleting a post. |
|
| 830 | + */ |
|
| 831 | + public static function delete_post( $post_id ) { |
|
| 832 | + |
|
| 833 | + switch ( get_post_type( $post_id ) ) { |
|
| 834 | + |
|
| 835 | + case 'wpi_item' : |
|
| 836 | + do_action( "getpaid_before_delete_item", new WPInv_Item( $post_id ) ); |
|
| 837 | + break; |
|
| 838 | + |
|
| 839 | + case 'wpi_payment_form' : |
|
| 840 | + do_action( "getpaid_before_delete_payment_form", new GetPaid_Payment_Form( $post_id ) ); |
|
| 841 | + break; |
|
| 842 | + |
|
| 843 | + case 'wpi_discount' : |
|
| 844 | + do_action( "getpaid_before_delete_discount", new WPInv_Discount( $post_id ) ); |
|
| 845 | + break; |
|
| 846 | + |
|
| 847 | + case 'wpi_invoice' : |
|
| 848 | + $invoice = new WPInv_Invoice( $post_id ); |
|
| 849 | + do_action( "getpaid_before_delete_invoice", $invoice ); |
|
| 850 | + $invoice->get_data_store()->delete_items( $invoice ); |
|
| 851 | + $invoice->get_data_store()->delete_special_fields( $invoice ); |
|
| 852 | + break; |
|
| 853 | + } |
|
| 854 | + } |
|
| 855 | + |
|
| 856 | + /** |
|
| 857 | 857 | * Add a post display state for special GetPaid pages in the page list table. |
| 858 | 858 | * |
| 859 | 859 | * @param array $post_states An array of post display states. |
@@ -867,22 +867,22 @@ discard block |
||
| 867 | 867 | $post_states['getpaid_success_page'] = __( 'GetPaid Receipt Page', 'invoicing' ); |
| 868 | 868 | } |
| 869 | 869 | |
| 870 | - foreach ( getpaid_get_invoice_post_types() as $post_type => $label ) { |
|
| 870 | + foreach ( getpaid_get_invoice_post_types() as $post_type => $label ) { |
|
| 871 | 871 | |
| 872 | - if ( wpinv_get_option( "{$post_type}_history_page", 0 ) == $post->ID ) { |
|
| 873 | - $post_states["getpaid_{$post_type}_history_page"] = sprintf( |
|
| 874 | - __( 'GetPaid %s History Page', 'invoicing' ), |
|
| 875 | - $label |
|
| 876 | - ); |
|
| 877 | - } |
|
| 872 | + if ( wpinv_get_option( "{$post_type}_history_page", 0 ) == $post->ID ) { |
|
| 873 | + $post_states["getpaid_{$post_type}_history_page"] = sprintf( |
|
| 874 | + __( 'GetPaid %s History Page', 'invoicing' ), |
|
| 875 | + $label |
|
| 876 | + ); |
|
| 877 | + } |
|
| 878 | 878 | |
| 879 | - } |
|
| 879 | + } |
|
| 880 | 880 | |
| 881 | - if ( wpinv_get_option( 'invoice_subscription_page', 0 ) == $post->ID ) { |
|
| 881 | + if ( wpinv_get_option( 'invoice_subscription_page', 0 ) == $post->ID ) { |
|
| 882 | 882 | $post_states['getpaid_invoice_subscription_page'] = __( 'GetPaid Subscription Page', 'invoicing' ); |
| 883 | 883 | } |
| 884 | 884 | |
| 885 | - if ( wpinv_get_option( 'checkout_page', 0 ) == $post->ID ) { |
|
| 885 | + if ( wpinv_get_option( 'checkout_page', 0 ) == $post->ID ) { |
|
| 886 | 886 | $post_states['getpaid_checkout_page'] = __( 'GetPaid Checkout Page', 'invoicing' ); |
| 887 | 887 | } |
| 888 | 888 | |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Post types Admin Class |
@@ -21,74 +21,74 @@ discard block |
||
| 21 | 21 | GetPaid_Metaboxes::init(); |
| 22 | 22 | |
| 23 | 23 | // Filter the post updated messages. |
| 24 | - add_filter( 'post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages' ); |
|
| 24 | + add_filter('post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages'); |
|
| 25 | 25 | |
| 26 | 26 | // Filter post actions. |
| 27 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2 ); |
|
| 28 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2 ); |
|
| 27 | + add_filter('post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2); |
|
| 28 | + add_filter('post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2); |
|
| 29 | 29 | |
| 30 | 30 | // Invoice table columns. |
| 31 | - add_filter( 'manage_wpi_invoice_posts_columns', array( __CLASS__, 'invoice_columns' ), 100 ); |
|
| 32 | - add_action( 'manage_wpi_invoice_posts_custom_column', array( __CLASS__, 'display_invoice_columns' ), 10, 2 ); |
|
| 33 | - add_filter( 'bulk_actions-edit-wpi_invoice', array( __CLASS__, 'invoice_bulk_actions' ) ); |
|
| 34 | - add_filter( 'handle_bulk_actions-edit-wpi_invoice', array( __CLASS__, 'handle_invoice_bulk_actions' ), 10, 3 ); |
|
| 31 | + add_filter('manage_wpi_invoice_posts_columns', array(__CLASS__, 'invoice_columns'), 100); |
|
| 32 | + add_action('manage_wpi_invoice_posts_custom_column', array(__CLASS__, 'display_invoice_columns'), 10, 2); |
|
| 33 | + add_filter('bulk_actions-edit-wpi_invoice', array(__CLASS__, 'invoice_bulk_actions')); |
|
| 34 | + add_filter('handle_bulk_actions-edit-wpi_invoice', array(__CLASS__, 'handle_invoice_bulk_actions'), 10, 3); |
|
| 35 | 35 | |
| 36 | 36 | // Items table columns. |
| 37 | - add_filter( 'manage_wpi_item_posts_columns', array( __CLASS__, 'item_columns' ), 100 ); |
|
| 38 | - add_filter( 'manage_edit-wpi_item_sortable_columns', array( __CLASS__, 'sortable_item_columns' ), 20 ); |
|
| 39 | - add_action( 'manage_wpi_item_posts_custom_column', array( __CLASS__, 'display_item_columns' ), 10, 2 ); |
|
| 40 | - add_action( 'restrict_manage_posts', array( __CLASS__, 'add_item_filters' ), 100 ); |
|
| 41 | - add_action( 'parse_query', array( __CLASS__, 'filter_item_query' ), 100 ); |
|
| 42 | - add_action( 'request', array( __CLASS__, 'reorder_items' ), 100 ); |
|
| 37 | + add_filter('manage_wpi_item_posts_columns', array(__CLASS__, 'item_columns'), 100); |
|
| 38 | + add_filter('manage_edit-wpi_item_sortable_columns', array(__CLASS__, 'sortable_item_columns'), 20); |
|
| 39 | + add_action('manage_wpi_item_posts_custom_column', array(__CLASS__, 'display_item_columns'), 10, 2); |
|
| 40 | + add_action('restrict_manage_posts', array(__CLASS__, 'add_item_filters'), 100); |
|
| 41 | + add_action('parse_query', array(__CLASS__, 'filter_item_query'), 100); |
|
| 42 | + add_action('request', array(__CLASS__, 'reorder_items'), 100); |
|
| 43 | 43 | |
| 44 | 44 | // Payment forms columns. |
| 45 | - add_filter( 'manage_wpi_payment_form_posts_columns', array( __CLASS__, 'payment_form_columns' ), 100 ); |
|
| 46 | - add_action( 'manage_wpi_payment_form_posts_custom_column', array( __CLASS__, 'display_payment_form_columns' ), 10, 2 ); |
|
| 47 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_payment_form_state' ), 10, 2 ); |
|
| 45 | + add_filter('manage_wpi_payment_form_posts_columns', array(__CLASS__, 'payment_form_columns'), 100); |
|
| 46 | + add_action('manage_wpi_payment_form_posts_custom_column', array(__CLASS__, 'display_payment_form_columns'), 10, 2); |
|
| 47 | + add_filter('display_post_states', array(__CLASS__, 'filter_payment_form_state'), 10, 2); |
|
| 48 | 48 | |
| 49 | 49 | // Discount table columns. |
| 50 | - add_filter( 'manage_wpi_discount_posts_columns', array( __CLASS__, 'discount_columns' ), 100 ); |
|
| 51 | - add_filter( 'bulk_actions-edit-wpi_discount', '__return_empty_array', 100 ); |
|
| 50 | + add_filter('manage_wpi_discount_posts_columns', array(__CLASS__, 'discount_columns'), 100); |
|
| 51 | + add_filter('bulk_actions-edit-wpi_discount', '__return_empty_array', 100); |
|
| 52 | 52 | |
| 53 | 53 | // Deleting posts. |
| 54 | - add_action( 'delete_post', array( __CLASS__, 'delete_post' ) ); |
|
| 55 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_discount_state' ), 10, 2 ); |
|
| 54 | + add_action('delete_post', array(__CLASS__, 'delete_post')); |
|
| 55 | + add_filter('display_post_states', array(__CLASS__, 'filter_discount_state'), 10, 2); |
|
| 56 | 56 | |
| 57 | - add_filter( 'display_post_states', array( __CLASS__, 'add_display_post_states' ), 10, 2 ); |
|
| 57 | + add_filter('display_post_states', array(__CLASS__, 'add_display_post_states'), 10, 2); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Post updated messages. |
| 62 | 62 | */ |
| 63 | - public static function post_updated_messages( $messages ) { |
|
| 63 | + public static function post_updated_messages($messages) { |
|
| 64 | 64 | global $post; |
| 65 | 65 | |
| 66 | 66 | $messages['wpi_discount'] = array( |
| 67 | 67 | 0 => '', |
| 68 | - 1 => __( 'Discount updated.', 'invoicing' ), |
|
| 69 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 70 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 71 | - 4 => __( 'Discount updated.', 'invoicing' ), |
|
| 72 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Discount restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 73 | - 6 => __( 'Discount updated.', 'invoicing' ), |
|
| 74 | - 7 => __( 'Discount saved.', 'invoicing' ), |
|
| 75 | - 8 => __( 'Discount submitted.', 'invoicing' ), |
|
| 76 | - 9 => wp_sprintf( __( 'Discount scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 77 | - 10 => __( 'Discount draft updated.', 'invoicing' ), |
|
| 68 | + 1 => __('Discount updated.', 'invoicing'), |
|
| 69 | + 2 => __('Custom field updated.', 'invoicing'), |
|
| 70 | + 3 => __('Custom field deleted.', 'invoicing'), |
|
| 71 | + 4 => __('Discount updated.', 'invoicing'), |
|
| 72 | + 5 => isset($_GET['revision']) ? wp_sprintf(__('Discount restored to revision from %s', 'invoicing'), wp_post_revision_title((int) $_GET['revision'], false)) : false, |
|
| 73 | + 6 => __('Discount updated.', 'invoicing'), |
|
| 74 | + 7 => __('Discount saved.', 'invoicing'), |
|
| 75 | + 8 => __('Discount submitted.', 'invoicing'), |
|
| 76 | + 9 => wp_sprintf(__('Discount scheduled for: <strong>%1$s</strong>.', 'invoicing'), date_i18n(__('M j, Y @ G:i', 'invoicing'), strtotime($post->post_date))), |
|
| 77 | + 10 => __('Discount draft updated.', 'invoicing'), |
|
| 78 | 78 | ); |
| 79 | 79 | |
| 80 | 80 | $messages['wpi_payment_form'] = array( |
| 81 | 81 | 0 => '', |
| 82 | - 1 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 83 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 84 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 85 | - 4 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 86 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Payment Form restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 87 | - 6 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 88 | - 7 => __( 'Payment Form saved.', 'invoicing' ), |
|
| 89 | - 8 => __( 'Payment Form submitted.', 'invoicing' ), |
|
| 90 | - 9 => wp_sprintf( __( 'Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 91 | - 10 => __( 'Payment Form draft updated.', 'invoicing' ), |
|
| 82 | + 1 => __('Payment Form updated.', 'invoicing'), |
|
| 83 | + 2 => __('Custom field updated.', 'invoicing'), |
|
| 84 | + 3 => __('Custom field deleted.', 'invoicing'), |
|
| 85 | + 4 => __('Payment Form updated.', 'invoicing'), |
|
| 86 | + 5 => isset($_GET['revision']) ? wp_sprintf(__('Payment Form restored to revision from %s', 'invoicing'), wp_post_revision_title((int) $_GET['revision'], false)) : false, |
|
| 87 | + 6 => __('Payment Form updated.', 'invoicing'), |
|
| 88 | + 7 => __('Payment Form saved.', 'invoicing'), |
|
| 89 | + 8 => __('Payment Form submitted.', 'invoicing'), |
|
| 90 | + 9 => wp_sprintf(__('Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing'), date_i18n(__('M j, Y @ G:i', 'invoicing'), strtotime($post->post_date))), |
|
| 91 | + 10 => __('Payment Form draft updated.', 'invoicing'), |
|
| 92 | 92 | ); |
| 93 | 93 | |
| 94 | 94 | return $messages; |
@@ -98,19 +98,19 @@ discard block |
||
| 98 | 98 | /** |
| 99 | 99 | * Post row actions. |
| 100 | 100 | */ |
| 101 | - public static function post_row_actions( $actions, $post ) { |
|
| 101 | + public static function post_row_actions($actions, $post) { |
|
| 102 | 102 | |
| 103 | - $post = get_post( $post ); |
|
| 103 | + $post = get_post($post); |
|
| 104 | 104 | |
| 105 | 105 | // We do not want to edit the default payment form. |
| 106 | - if ( 'wpi_payment_form' == $post->post_type ) { |
|
| 106 | + if ('wpi_payment_form' == $post->post_type) { |
|
| 107 | 107 | |
| 108 | - if ( $post->ID == wpinv_get_default_payment_form() ) { |
|
| 109 | - unset( $actions['trash'] ); |
|
| 110 | - unset( $actions['inline hide-if-no-js'] ); |
|
| 108 | + if ($post->ID == wpinv_get_default_payment_form()) { |
|
| 109 | + unset($actions['trash']); |
|
| 110 | + unset($actions['inline hide-if-no-js']); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - $actions['duplicate'] = sprintf( |
|
| 113 | + $actions['duplicate'] = sprintf( |
|
| 114 | 114 | '<a href="%1$s">%2$s</a>', |
| 115 | 115 | esc_url( |
| 116 | 116 | wp_nonce_url( |
@@ -124,20 +124,20 @@ discard block |
||
| 124 | 124 | 'getpaid-nonce' |
| 125 | 125 | ) |
| 126 | 126 | ), |
| 127 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 127 | + esc_html(__('Duplicate', 'invoicing')) |
|
| 128 | 128 | ); |
| 129 | 129 | |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | // Link to item payment form. |
| 133 | - if ( 'wpi_item' == $post->post_type ) { |
|
| 133 | + if ('wpi_item' == $post->post_type) { |
|
| 134 | 134 | |
| 135 | - if ( in_array( get_post_meta( $post->ID, '_wpinv_type', true ), array( '', 'fee', 'custom' ) ) ) { |
|
| 135 | + if (in_array(get_post_meta($post->ID, '_wpinv_type', true), array('', 'fee', 'custom'))) { |
|
| 136 | 136 | |
| 137 | - $actions['buy'] = sprintf( |
|
| 137 | + $actions['buy'] = sprintf( |
|
| 138 | 138 | '<a href="%1$s">%2$s</a>', |
| 139 | - esc_url( getpaid_embed_url( false, $post->ID . '|0' ) ), |
|
| 140 | - esc_html( __( 'Buy', 'invoicing' ) ) |
|
| 139 | + esc_url(getpaid_embed_url(false, $post->ID . '|0')), |
|
| 140 | + esc_html(__('Buy', 'invoicing')) |
|
| 141 | 141 | ); |
| 142 | 142 | |
| 143 | 143 | } |
@@ -155,31 +155,31 @@ discard block |
||
| 155 | 155 | * @param WP_Post $post |
| 156 | 156 | * @return array $actions actions without edit option |
| 157 | 157 | */ |
| 158 | - public static function filter_invoice_row_actions( $actions, $post ) { |
|
| 158 | + public static function filter_invoice_row_actions($actions, $post) { |
|
| 159 | 159 | |
| 160 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 160 | + if (getpaid_is_invoice_post_type($post->post_type)) { |
|
| 161 | 161 | |
| 162 | 162 | $actions = array(); |
| 163 | - $invoice = new WPInv_Invoice( $post ); |
|
| 163 | + $invoice = new WPInv_Invoice($post); |
|
| 164 | 164 | |
| 165 | - $actions['edit'] = sprintf( |
|
| 165 | + $actions['edit'] = sprintf( |
|
| 166 | 166 | '<a href="%1$s">%2$s</a>', |
| 167 | - esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
| 168 | - esc_html( __( 'Edit', 'invoicing' ) ) |
|
| 167 | + esc_url(get_edit_post_link($invoice->get_id())), |
|
| 168 | + esc_html(__('Edit', 'invoicing')) |
|
| 169 | 169 | ); |
| 170 | 170 | |
| 171 | - if ( ! $invoice->is_draft() ) { |
|
| 171 | + if (!$invoice->is_draft()) { |
|
| 172 | 172 | |
| 173 | - $actions['view'] = sprintf( |
|
| 173 | + $actions['view'] = sprintf( |
|
| 174 | 174 | '<a href="%1$s">%2$s</a>', |
| 175 | - esc_url( $invoice->get_view_url() ), |
|
| 175 | + esc_url($invoice->get_view_url()), |
|
| 176 | 176 | sprintf( |
| 177 | - esc_html( __( 'View %s', 'invoicing' ) ), |
|
| 178 | - getpaid_get_post_type_label( $invoice->get_post_type(), false ) |
|
| 177 | + esc_html(__('View %s', 'invoicing')), |
|
| 178 | + getpaid_get_post_type_label($invoice->get_post_type(), false) |
|
| 179 | 179 | ) |
| 180 | 180 | ); |
| 181 | 181 | |
| 182 | - $actions['send'] = sprintf( |
|
| 182 | + $actions['send'] = sprintf( |
|
| 183 | 183 | '<a href="%1$s">%2$s</a>', |
| 184 | 184 | esc_url( |
| 185 | 185 | wp_nonce_url( |
@@ -193,12 +193,12 @@ discard block |
||
| 193 | 193 | 'getpaid-nonce' |
| 194 | 194 | ) |
| 195 | 195 | ), |
| 196 | - esc_html( __( 'Send to Customer', 'invoicing' ) ) |
|
| 196 | + esc_html(__('Send to Customer', 'invoicing')) |
|
| 197 | 197 | ); |
| 198 | 198 | |
| 199 | 199 | } |
| 200 | 200 | |
| 201 | - $actions['duplicate'] = sprintf( |
|
| 201 | + $actions['duplicate'] = sprintf( |
|
| 202 | 202 | '<a href="%1$s">%2$s</a>', |
| 203 | 203 | esc_url( |
| 204 | 204 | wp_nonce_url( |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | 'getpaid-nonce' |
| 213 | 213 | ) |
| 214 | 214 | ), |
| 215 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 215 | + esc_html(__('Duplicate', 'invoicing')) |
|
| 216 | 216 | ); |
| 217 | 217 | |
| 218 | 218 | } |
@@ -223,42 +223,42 @@ discard block |
||
| 223 | 223 | /** |
| 224 | 224 | * Returns an array of invoice table columns. |
| 225 | 225 | */ |
| 226 | - public static function invoice_columns( $columns ) { |
|
| 226 | + public static function invoice_columns($columns) { |
|
| 227 | 227 | |
| 228 | 228 | $columns = array( |
| 229 | 229 | 'cb' => $columns['cb'], |
| 230 | - 'number' => __( 'Invoice', 'invoicing' ), |
|
| 231 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
| 232 | - 'invoice_date' => __( 'Created', 'invoicing' ), |
|
| 233 | - 'payment_date' => __( 'Completed', 'invoicing' ), |
|
| 234 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 235 | - 'recurring' => __( 'Recurring', 'invoicing' ), |
|
| 236 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 230 | + 'number' => __('Invoice', 'invoicing'), |
|
| 231 | + 'customer' => __('Customer', 'invoicing'), |
|
| 232 | + 'invoice_date' => __('Created', 'invoicing'), |
|
| 233 | + 'payment_date' => __('Completed', 'invoicing'), |
|
| 234 | + 'amount' => __('Amount', 'invoicing'), |
|
| 235 | + 'recurring' => __('Recurring', 'invoicing'), |
|
| 236 | + 'status' => __('Status', 'invoicing'), |
|
| 237 | 237 | ); |
| 238 | 238 | |
| 239 | - return apply_filters( 'wpi_invoice_table_columns', $columns ); |
|
| 239 | + return apply_filters('wpi_invoice_table_columns', $columns); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
| 243 | 243 | * Displays invoice table columns. |
| 244 | 244 | */ |
| 245 | - public static function display_invoice_columns( $column_name, $post_id ) { |
|
| 245 | + public static function display_invoice_columns($column_name, $post_id) { |
|
| 246 | 246 | |
| 247 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 247 | + $invoice = new WPInv_Invoice($post_id); |
|
| 248 | 248 | |
| 249 | - switch ( $column_name ) { |
|
| 249 | + switch ($column_name) { |
|
| 250 | 250 | |
| 251 | 251 | case 'invoice_date' : |
| 252 | - $date_time = esc_attr( $invoice->get_created_date() ); |
|
| 253 | - $date = esc_html( getpaid_format_date_value( $date_time, "—", true ) ); |
|
| 252 | + $date_time = esc_attr($invoice->get_created_date()); |
|
| 253 | + $date = esc_html(getpaid_format_date_value($date_time, "—", true)); |
|
| 254 | 254 | echo "<span title='$date_time'>$date</span>"; |
| 255 | 255 | break; |
| 256 | 256 | |
| 257 | 257 | case 'payment_date' : |
| 258 | 258 | |
| 259 | - if ( $invoice->is_paid() ) { |
|
| 260 | - $date_time = esc_attr( $invoice->get_completed_date() ); |
|
| 261 | - $date = esc_html( getpaid_format_date_value( $date_time, "—", true ) ); |
|
| 259 | + if ($invoice->is_paid()) { |
|
| 260 | + $date_time = esc_attr($invoice->get_completed_date()); |
|
| 261 | + $date = esc_html(getpaid_format_date_value($date_time, "—", true)); |
|
| 262 | 262 | echo "<span title='$date_time'>$date</span>"; |
| 263 | 263 | } else { |
| 264 | 264 | echo "—"; |
@@ -269,17 +269,17 @@ discard block |
||
| 269 | 269 | case 'amount' : |
| 270 | 270 | |
| 271 | 271 | $amount = $invoice->get_total(); |
| 272 | - $formated_amount = wp_kses_post( wpinv_price( $amount, $invoice->get_currency() ) ); |
|
| 272 | + $formated_amount = wp_kses_post(wpinv_price($amount, $invoice->get_currency())); |
|
| 273 | 273 | |
| 274 | - if ( $invoice->is_refunded() ) { |
|
| 275 | - $refunded_amount = wp_kses_post( wpinv_price( 0, $invoice->get_currency() ) ); |
|
| 274 | + if ($invoice->is_refunded()) { |
|
| 275 | + $refunded_amount = wp_kses_post(wpinv_price(0, $invoice->get_currency())); |
|
| 276 | 276 | echo "<del>$formated_amount</del> <ins>$refunded_amount</ins>"; |
| 277 | 277 | } else { |
| 278 | 278 | |
| 279 | 279 | $discount = $invoice->get_total_discount(); |
| 280 | 280 | |
| 281 | - if ( ! empty( $discount ) ) { |
|
| 282 | - $new_amount = wp_kses_post( wpinv_price( $amount + $discount, $invoice->get_currency() ) ); |
|
| 281 | + if (!empty($discount)) { |
|
| 282 | + $new_amount = wp_kses_post(wpinv_price($amount + $discount, $invoice->get_currency())); |
|
| 283 | 283 | echo "<del>$new_amount</del> <ins>$formated_amount</ins>"; |
| 284 | 284 | } else { |
| 285 | 285 | echo $formated_amount; |
@@ -290,13 +290,13 @@ discard block |
||
| 290 | 290 | break; |
| 291 | 291 | |
| 292 | 292 | case 'status' : |
| 293 | - $status = esc_html( $invoice->get_status() ); |
|
| 294 | - $status_label = esc_html( $invoice->get_status_nicename() ); |
|
| 293 | + $status = esc_html($invoice->get_status()); |
|
| 294 | + $status_label = esc_html($invoice->get_status_nicename()); |
|
| 295 | 295 | |
| 296 | 296 | // If it is paid, show the gateway title. |
| 297 | - if ( $invoice->is_paid() ) { |
|
| 298 | - $gateway = esc_html( $invoice->get_gateway_title() ); |
|
| 299 | - $gateway = wp_sprintf( esc_attr__( 'Paid via %s', 'invoicing' ), esc_html( $gateway ) ); |
|
| 297 | + if ($invoice->is_paid()) { |
|
| 298 | + $gateway = esc_html($invoice->get_gateway_title()); |
|
| 299 | + $gateway = wp_sprintf(esc_attr__('Paid via %s', 'invoicing'), esc_html($gateway)); |
|
| 300 | 300 | |
| 301 | 301 | echo "<mark class='wpi-help-tip getpaid-invoice-status $status' title='$gateway'><span>$status_label</span></mark>"; |
| 302 | 302 | } else { |
@@ -304,22 +304,22 @@ discard block |
||
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | // If it is not paid, display the overdue and view status. |
| 307 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 307 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
| 308 | 308 | |
| 309 | 309 | // Invoice view status. |
| 310 | - if ( wpinv_is_invoice_viewed( $invoice->get_id() ) ) { |
|
| 311 | - echo ' <i class="fa fa-eye wpi-help-tip" title="'. esc_attr__( 'Viewed by Customer', 'invoicing' ).'"></i>'; |
|
| 310 | + if (wpinv_is_invoice_viewed($invoice->get_id())) { |
|
| 311 | + echo ' <i class="fa fa-eye wpi-help-tip" title="' . esc_attr__('Viewed by Customer', 'invoicing') . '"></i>'; |
|
| 312 | 312 | } else { |
| 313 | - echo ' <i class="fa fa-eye-slash wpi-help-tip" title="'. esc_attr__( 'Not Viewed by Customer', 'invoicing' ).'"></i>'; |
|
| 313 | + echo ' <i class="fa fa-eye-slash wpi-help-tip" title="' . esc_attr__('Not Viewed by Customer', 'invoicing') . '"></i>'; |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | // Display the overview status. |
| 317 | - if ( wpinv_get_option( 'overdue_active' ) ) { |
|
| 317 | + if (wpinv_get_option('overdue_active')) { |
|
| 318 | 318 | $due_date = $invoice->get_due_date(); |
| 319 | - $fomatted = getpaid_format_date( $due_date ); |
|
| 319 | + $fomatted = getpaid_format_date($due_date); |
|
| 320 | 320 | |
| 321 | - if ( ! empty( $fomatted ) ) { |
|
| 322 | - $date = wp_sprintf( __( 'Due %s', 'invoicing' ), $fomatted ); |
|
| 321 | + if (!empty($fomatted)) { |
|
| 322 | + $date = wp_sprintf(__('Due %s', 'invoicing'), $fomatted); |
|
| 323 | 323 | echo "<p class='description' style='color: #888;' title='$due_date'>$fomatted</p>"; |
| 324 | 324 | } |
| 325 | 325 | } |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | |
| 331 | 331 | case 'recurring': |
| 332 | 332 | |
| 333 | - if ( $invoice->is_recurring() ) { |
|
| 333 | + if ($invoice->is_recurring()) { |
|
| 334 | 334 | echo '<i class="fa fa-check" style="color:#43850a;"></i>'; |
| 335 | 335 | } else { |
| 336 | 336 | echo '<i class="fa fa-times" style="color:#616161;"></i>'; |
@@ -339,9 +339,9 @@ discard block |
||
| 339 | 339 | |
| 340 | 340 | case 'number' : |
| 341 | 341 | |
| 342 | - $edit_link = esc_url( get_edit_post_link( $invoice->get_id() ) ); |
|
| 343 | - $invoice_number = esc_html( $invoice->get_number() ); |
|
| 344 | - $invoice_details = esc_attr__( 'View Invoice Details', 'invoicing' ); |
|
| 342 | + $edit_link = esc_url(get_edit_post_link($invoice->get_id())); |
|
| 343 | + $invoice_number = esc_html($invoice->get_number()); |
|
| 344 | + $invoice_details = esc_attr__('View Invoice Details', 'invoicing'); |
|
| 345 | 345 | |
| 346 | 346 | echo "<a href='$edit_link' title='$invoice_details'><strong>$invoice_number</strong></a>"; |
| 347 | 347 | |
@@ -351,13 +351,13 @@ discard block |
||
| 351 | 351 | |
| 352 | 352 | $customer_name = $invoice->get_user_full_name(); |
| 353 | 353 | |
| 354 | - if ( empty( $customer_name ) ) { |
|
| 354 | + if (empty($customer_name)) { |
|
| 355 | 355 | $customer_name = $invoice->get_email(); |
| 356 | 356 | } |
| 357 | 357 | |
| 358 | - if ( ! empty( $customer_name ) ) { |
|
| 359 | - $customer_details = esc_attr__( 'View Customer Details', 'invoicing' ); |
|
| 360 | - $view_link = esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), admin_url( 'user-edit.php' ) ) ); |
|
| 358 | + if (!empty($customer_name)) { |
|
| 359 | + $customer_details = esc_attr__('View Customer Details', 'invoicing'); |
|
| 360 | + $view_link = esc_url(add_query_arg('user_id', $invoice->get_user_id(), admin_url('user-edit.php'))); |
|
| 361 | 361 | echo "<a href='$view_link' title='$customer_details'><span>$customer_name</span></a>"; |
| 362 | 362 | } else { |
| 363 | 363 | echo '<div>—</div>'; |
@@ -372,19 +372,19 @@ discard block |
||
| 372 | 372 | /** |
| 373 | 373 | * Displays invoice bulk actions. |
| 374 | 374 | */ |
| 375 | - public static function invoice_bulk_actions( $actions ) { |
|
| 376 | - $actions['resend-invoice'] = __( 'Send to Customer', 'invoicing' ); |
|
| 375 | + public static function invoice_bulk_actions($actions) { |
|
| 376 | + $actions['resend-invoice'] = __('Send to Customer', 'invoicing'); |
|
| 377 | 377 | return $actions; |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | /** |
| 381 | 381 | * Processes invoice bulk actions. |
| 382 | 382 | */ |
| 383 | - public static function handle_invoice_bulk_actions( $redirect_url, $action, $post_ids ) { |
|
| 383 | + public static function handle_invoice_bulk_actions($redirect_url, $action, $post_ids) { |
|
| 384 | 384 | |
| 385 | - if ( $action == 'resend-invoice' ) { |
|
| 386 | - foreach ( $post_ids as $post_id ) { |
|
| 387 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $post_id ), true ); |
|
| 385 | + if ($action == 'resend-invoice') { |
|
| 386 | + foreach ($post_ids as $post_id) { |
|
| 387 | + getpaid()->get('invoice_emails')->user_invoice(new WPInv_Invoice($post_id), true); |
|
| 388 | 388 | } |
| 389 | 389 | } |
| 390 | 390 | |
@@ -395,50 +395,50 @@ discard block |
||
| 395 | 395 | /** |
| 396 | 396 | * Returns an array of payment forms table columns. |
| 397 | 397 | */ |
| 398 | - public static function payment_form_columns( $columns ) { |
|
| 398 | + public static function payment_form_columns($columns) { |
|
| 399 | 399 | |
| 400 | 400 | $columns = array( |
| 401 | 401 | 'cb' => $columns['cb'], |
| 402 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 403 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 404 | - 'earnings' => __( 'Revenue', 'invoicing' ), |
|
| 405 | - 'refunds' => __( 'Refunded', 'invoicing' ), |
|
| 406 | - 'items' => __( 'Items', 'invoicing' ), |
|
| 407 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 402 | + 'title' => __('Name', 'invoicing'), |
|
| 403 | + 'shortcode' => __('Shortcode', 'invoicing'), |
|
| 404 | + 'earnings' => __('Revenue', 'invoicing'), |
|
| 405 | + 'refunds' => __('Refunded', 'invoicing'), |
|
| 406 | + 'items' => __('Items', 'invoicing'), |
|
| 407 | + 'date' => __('Date', 'invoicing'), |
|
| 408 | 408 | ); |
| 409 | 409 | |
| 410 | - return apply_filters( 'wpi_payment_form_table_columns', $columns ); |
|
| 410 | + return apply_filters('wpi_payment_form_table_columns', $columns); |
|
| 411 | 411 | |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | 414 | /** |
| 415 | 415 | * Displays payment form table columns. |
| 416 | 416 | */ |
| 417 | - public static function display_payment_form_columns( $column_name, $post_id ) { |
|
| 417 | + public static function display_payment_form_columns($column_name, $post_id) { |
|
| 418 | 418 | |
| 419 | 419 | // Retrieve the payment form. |
| 420 | - $form = new GetPaid_Payment_Form( $post_id ); |
|
| 420 | + $form = new GetPaid_Payment_Form($post_id); |
|
| 421 | 421 | |
| 422 | - switch ( $column_name ) { |
|
| 422 | + switch ($column_name) { |
|
| 423 | 423 | |
| 424 | 424 | case 'earnings' : |
| 425 | - echo wpinv_price( $form->get_earned() ); |
|
| 425 | + echo wpinv_price($form->get_earned()); |
|
| 426 | 426 | break; |
| 427 | 427 | |
| 428 | 428 | case 'refunds' : |
| 429 | - echo wpinv_price( $form->get_refunded() ); |
|
| 429 | + echo wpinv_price($form->get_refunded()); |
|
| 430 | 430 | break; |
| 431 | 431 | |
| 432 | 432 | case 'refunds' : |
| 433 | - echo wpinv_price( $form->get_refunded() ); |
|
| 433 | + echo wpinv_price($form->get_refunded()); |
|
| 434 | 434 | break; |
| 435 | 435 | |
| 436 | 436 | case 'shortcode' : |
| 437 | 437 | |
| 438 | - if ( $form->is_default() ) { |
|
| 438 | + if ($form->is_default()) { |
|
| 439 | 439 | echo '—'; |
| 440 | 440 | } else { |
| 441 | - echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr( $form->get_id() ) . ']" style="width: 100%;" readonly/>'; |
|
| 441 | + echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr($form->get_id()) . ']" style="width: 100%;" readonly/>'; |
|
| 442 | 442 | } |
| 443 | 443 | |
| 444 | 444 | break; |
@@ -447,29 +447,29 @@ discard block |
||
| 447 | 447 | |
| 448 | 448 | $items = $form->get_items(); |
| 449 | 449 | |
| 450 | - if ( $form->is_default() || empty( $items ) ) { |
|
| 450 | + if ($form->is_default() || empty($items)) { |
|
| 451 | 451 | echo '—'; |
| 452 | 452 | return; |
| 453 | 453 | } |
| 454 | 454 | |
| 455 | 455 | $_items = array(); |
| 456 | 456 | |
| 457 | - foreach ( $items as $item ) { |
|
| 457 | + foreach ($items as $item) { |
|
| 458 | 458 | $url = $item->get_edit_url(); |
| 459 | 459 | |
| 460 | - if ( empty( $url ) ) { |
|
| 461 | - $_items[] = esc_html( $item->get_name() ); |
|
| 460 | + if (empty($url)) { |
|
| 461 | + $_items[] = esc_html($item->get_name()); |
|
| 462 | 462 | } else { |
| 463 | 463 | $_items[] = sprintf( |
| 464 | 464 | '<a href="%s">%s</a>', |
| 465 | - esc_url( $url ), |
|
| 466 | - esc_html( $item->get_name() ) |
|
| 465 | + esc_url($url), |
|
| 466 | + esc_html($item->get_name()) |
|
| 467 | 467 | ); |
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | } |
| 471 | 471 | |
| 472 | - echo implode( '<br>', $_items ); |
|
| 472 | + echo implode('<br>', $_items); |
|
| 473 | 473 | |
| 474 | 474 | break; |
| 475 | 475 | |
@@ -480,10 +480,10 @@ discard block |
||
| 480 | 480 | /** |
| 481 | 481 | * Filters post states. |
| 482 | 482 | */ |
| 483 | - public static function filter_payment_form_state( $post_states, $post ) { |
|
| 483 | + public static function filter_payment_form_state($post_states, $post) { |
|
| 484 | 484 | |
| 485 | - if ( 'wpi_payment_form' == $post->post_type && wpinv_get_default_payment_form() == $post->ID ) { |
|
| 486 | - $post_states[ 'default_form' ] = __( 'Default Payment Form', 'invoicing' ); |
|
| 485 | + if ('wpi_payment_form' == $post->post_type && wpinv_get_default_payment_form() == $post->ID) { |
|
| 486 | + $post_states['default_form'] = __('Default Payment Form', 'invoicing'); |
|
| 487 | 487 | } |
| 488 | 488 | |
| 489 | 489 | return $post_states; |
@@ -493,35 +493,35 @@ discard block |
||
| 493 | 493 | /** |
| 494 | 494 | * Returns an array of coupon table columns. |
| 495 | 495 | */ |
| 496 | - public static function discount_columns( $columns ) { |
|
| 496 | + public static function discount_columns($columns) { |
|
| 497 | 497 | |
| 498 | 498 | $columns = array( |
| 499 | 499 | 'cb' => $columns['cb'], |
| 500 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 501 | - 'code' => __( 'Code', 'invoicing' ), |
|
| 502 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 503 | - 'usage' => __( 'Usage / Limit', 'invoicing' ), |
|
| 504 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 505 | - 'expiry_date' => __( 'Expiry Date', 'invoicing' ), |
|
| 500 | + 'title' => __('Name', 'invoicing'), |
|
| 501 | + 'code' => __('Code', 'invoicing'), |
|
| 502 | + 'amount' => __('Amount', 'invoicing'), |
|
| 503 | + 'usage' => __('Usage / Limit', 'invoicing'), |
|
| 504 | + 'start_date' => __('Start Date', 'invoicing'), |
|
| 505 | + 'expiry_date' => __('Expiry Date', 'invoicing'), |
|
| 506 | 506 | ); |
| 507 | 507 | |
| 508 | - return apply_filters( 'wpi_discount_table_columns', $columns ); |
|
| 508 | + return apply_filters('wpi_discount_table_columns', $columns); |
|
| 509 | 509 | } |
| 510 | 510 | |
| 511 | 511 | /** |
| 512 | 512 | * Filters post states. |
| 513 | 513 | */ |
| 514 | - public static function filter_discount_state( $post_states, $post ) { |
|
| 514 | + public static function filter_discount_state($post_states, $post) { |
|
| 515 | 515 | |
| 516 | - if ( 'wpi_discount' == $post->post_type ) { |
|
| 516 | + if ('wpi_discount' == $post->post_type) { |
|
| 517 | 517 | |
| 518 | - $discount = new WPInv_Discount( $post ); |
|
| 518 | + $discount = new WPInv_Discount($post); |
|
| 519 | 519 | |
| 520 | 520 | $status = $discount->is_expired() ? 'expired' : $discount->get_status(); |
| 521 | 521 | |
| 522 | - if ( $status != 'publish' ) { |
|
| 522 | + if ($status != 'publish') { |
|
| 523 | 523 | return array( |
| 524 | - 'discount_status' => wpinv_discount_status( $status ), |
|
| 524 | + 'discount_status' => wpinv_discount_status($status), |
|
| 525 | 525 | ); |
| 526 | 526 | } |
| 527 | 527 | |
@@ -536,30 +536,30 @@ discard block |
||
| 536 | 536 | /** |
| 537 | 537 | * Returns an array of items table columns. |
| 538 | 538 | */ |
| 539 | - public static function item_columns( $columns ) { |
|
| 539 | + public static function item_columns($columns) { |
|
| 540 | 540 | |
| 541 | 541 | $columns = array( |
| 542 | 542 | 'cb' => $columns['cb'], |
| 543 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 544 | - 'price' => __( 'Price', 'invoicing' ), |
|
| 545 | - 'vat_rule' => __( 'VAT rule', 'invoicing' ), |
|
| 546 | - 'vat_class' => __( 'VAT class', 'invoicing' ), |
|
| 547 | - 'type' => __( 'Type', 'invoicing' ), |
|
| 548 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 543 | + 'title' => __('Name', 'invoicing'), |
|
| 544 | + 'price' => __('Price', 'invoicing'), |
|
| 545 | + 'vat_rule' => __('VAT rule', 'invoicing'), |
|
| 546 | + 'vat_class' => __('VAT class', 'invoicing'), |
|
| 547 | + 'type' => __('Type', 'invoicing'), |
|
| 548 | + 'shortcode' => __('Shortcode', 'invoicing'), |
|
| 549 | 549 | ); |
| 550 | 550 | |
| 551 | - if ( ! wpinv_use_taxes() ) { |
|
| 552 | - unset( $columns['vat_rule'] ); |
|
| 553 | - unset( $columns['vat_class'] ); |
|
| 551 | + if (!wpinv_use_taxes()) { |
|
| 552 | + unset($columns['vat_rule']); |
|
| 553 | + unset($columns['vat_class']); |
|
| 554 | 554 | } |
| 555 | 555 | |
| 556 | - return apply_filters( 'wpi_item_table_columns', $columns ); |
|
| 556 | + return apply_filters('wpi_item_table_columns', $columns); |
|
| 557 | 557 | } |
| 558 | 558 | |
| 559 | 559 | /** |
| 560 | 560 | * Returns an array of sortable items table columns. |
| 561 | 561 | */ |
| 562 | - public static function sortable_item_columns( $columns ) { |
|
| 562 | + public static function sortable_item_columns($columns) { |
|
| 563 | 563 | |
| 564 | 564 | return array_merge( |
| 565 | 565 | $columns, |
@@ -576,47 +576,47 @@ discard block |
||
| 576 | 576 | /** |
| 577 | 577 | * Displays items table columns. |
| 578 | 578 | */ |
| 579 | - public static function display_item_columns( $column_name, $post_id ) { |
|
| 579 | + public static function display_item_columns($column_name, $post_id) { |
|
| 580 | 580 | |
| 581 | - $item = new WPInv_Item( $post_id ); |
|
| 581 | + $item = new WPInv_Item($post_id); |
|
| 582 | 582 | |
| 583 | - switch ( $column_name ) { |
|
| 583 | + switch ($column_name) { |
|
| 584 | 584 | |
| 585 | 585 | case 'price' : |
| 586 | 586 | |
| 587 | - if ( ! $item->is_recurring() ) { |
|
| 587 | + if (!$item->is_recurring()) { |
|
| 588 | 588 | echo $item->get_the_price(); |
| 589 | 589 | break; |
| 590 | 590 | } |
| 591 | 591 | |
| 592 | 592 | $price = wp_sprintf( |
| 593 | - __( '%s / %s', 'invoicing' ), |
|
| 593 | + __('%s / %s', 'invoicing'), |
|
| 594 | 594 | $item->get_the_price(), |
| 595 | - getpaid_get_subscription_period_label( $item->get_recurring_period(), $item->get_recurring_interval(), '' ) |
|
| 595 | + getpaid_get_subscription_period_label($item->get_recurring_period(), $item->get_recurring_interval(), '') |
|
| 596 | 596 | ); |
| 597 | 597 | |
| 598 | - if ( $item->get_the_price() == $item->get_the_initial_price() ) { |
|
| 598 | + if ($item->get_the_price() == $item->get_the_initial_price()) { |
|
| 599 | 599 | echo $price; |
| 600 | 600 | break; |
| 601 | 601 | } |
| 602 | 602 | |
| 603 | 603 | echo $item->get_the_initial_price(); |
| 604 | 604 | |
| 605 | - echo '<span class="meta">' . wp_sprintf( __( 'then %s', 'invoicing' ), $price ) .'</span>'; |
|
| 605 | + echo '<span class="meta">' . wp_sprintf(__('then %s', 'invoicing'), $price) . '</span>'; |
|
| 606 | 606 | break; |
| 607 | 607 | |
| 608 | 608 | case 'vat_rule' : |
| 609 | - echo getpaid_get_tax_rule_label( $item->get_vat_rule() ); |
|
| 609 | + echo getpaid_get_tax_rule_label($item->get_vat_rule()); |
|
| 610 | 610 | break; |
| 611 | 611 | |
| 612 | 612 | case 'vat_class' : |
| 613 | - echo getpaid_get_tax_class_label( $item->get_vat_class() ); |
|
| 613 | + echo getpaid_get_tax_class_label($item->get_vat_class()); |
|
| 614 | 614 | break; |
| 615 | 615 | |
| 616 | 616 | case 'shortcode' : |
| 617 | 617 | |
| 618 | - if ( $item->is_type( array( '', 'fee', 'custom' ) ) ) { |
|
| 619 | - echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr( $item->get_id() ) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
| 618 | + if ($item->is_type(array('', 'fee', 'custom'))) { |
|
| 619 | + echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr($item->get_id()) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
| 620 | 620 | } else { |
| 621 | 621 | echo "—"; |
| 622 | 622 | } |
@@ -624,7 +624,7 @@ discard block |
||
| 624 | 624 | break; |
| 625 | 625 | |
| 626 | 626 | case 'type' : |
| 627 | - echo wpinv_item_type( $item->get_id() ) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>'; |
|
| 627 | + echo wpinv_item_type($item->get_id()) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>'; |
|
| 628 | 628 | break; |
| 629 | 629 | |
| 630 | 630 | } |
@@ -634,21 +634,21 @@ discard block |
||
| 634 | 634 | /** |
| 635 | 635 | * Lets users filter items using taxes. |
| 636 | 636 | */ |
| 637 | - public static function add_item_filters( $post_type ) { |
|
| 637 | + public static function add_item_filters($post_type) { |
|
| 638 | 638 | |
| 639 | 639 | // Abort if we're not dealing with items. |
| 640 | - if ( $post_type != 'wpi_item' ) { |
|
| 640 | + if ($post_type != 'wpi_item') { |
|
| 641 | 641 | return; |
| 642 | 642 | } |
| 643 | 643 | |
| 644 | 644 | // Filter by vat rules. |
| 645 | - if ( wpinv_use_taxes() ) { |
|
| 645 | + if (wpinv_use_taxes()) { |
|
| 646 | 646 | |
| 647 | 647 | // Sanitize selected vat rule. |
| 648 | 648 | $vat_rule = ''; |
| 649 | 649 | $vat_rules = getpaid_get_tax_rules(); |
| 650 | - if ( isset( $_GET['vat_rule'] ) ) { |
|
| 651 | - $vat_rule = sanitize_text_field( $_GET['vat_rule'] ); |
|
| 650 | + if (isset($_GET['vat_rule'])) { |
|
| 651 | + $vat_rule = sanitize_text_field($_GET['vat_rule']); |
|
| 652 | 652 | } |
| 653 | 653 | |
| 654 | 654 | // Filter by VAT rule. |
@@ -656,13 +656,13 @@ discard block |
||
| 656 | 656 | array( |
| 657 | 657 | 'options' => array_merge( |
| 658 | 658 | array( |
| 659 | - '' => __( 'All VAT rules', 'invoicing' ) |
|
| 659 | + '' => __('All VAT rules', 'invoicing') |
|
| 660 | 660 | ), |
| 661 | 661 | $vat_rules |
| 662 | 662 | ), |
| 663 | 663 | 'name' => 'vat_rule', |
| 664 | 664 | 'id' => 'vat_rule', |
| 665 | - 'selected' => in_array( $vat_rule, array_keys( $vat_rules ) ) ? $vat_rule : '', |
|
| 665 | + 'selected' => in_array($vat_rule, array_keys($vat_rules)) ? $vat_rule : '', |
|
| 666 | 666 | 'show_option_all' => false, |
| 667 | 667 | 'show_option_none' => false, |
| 668 | 668 | ) |
@@ -673,21 +673,21 @@ discard block |
||
| 673 | 673 | // Sanitize selected vat rule. |
| 674 | 674 | $vat_class = ''; |
| 675 | 675 | $vat_classes = getpaid_get_tax_classes(); |
| 676 | - if ( isset( $_GET['vat_class'] ) ) { |
|
| 677 | - $vat_class = sanitize_text_field( $_GET['vat_class'] ); |
|
| 676 | + if (isset($_GET['vat_class'])) { |
|
| 677 | + $vat_class = sanitize_text_field($_GET['vat_class']); |
|
| 678 | 678 | } |
| 679 | 679 | |
| 680 | 680 | echo wpinv_html_select( |
| 681 | 681 | array( |
| 682 | 682 | 'options' => array_merge( |
| 683 | 683 | array( |
| 684 | - '' => __( 'All VAT classes', 'invoicing' ) |
|
| 684 | + '' => __('All VAT classes', 'invoicing') |
|
| 685 | 685 | ), |
| 686 | 686 | $vat_classes |
| 687 | 687 | ), |
| 688 | 688 | 'name' => 'vat_class', |
| 689 | 689 | 'id' => 'vat_class', |
| 690 | - 'selected' => in_array( $vat_class, array_keys( $vat_classes ) ) ? $vat_class : '', |
|
| 690 | + 'selected' => in_array($vat_class, array_keys($vat_classes)) ? $vat_class : '', |
|
| 691 | 691 | 'show_option_all' => false, |
| 692 | 692 | 'show_option_none' => false, |
| 693 | 693 | ) |
@@ -696,22 +696,22 @@ discard block |
||
| 696 | 696 | } |
| 697 | 697 | |
| 698 | 698 | // Filter by item type. |
| 699 | - $type = ''; |
|
| 700 | - if ( isset( $_GET['type'] ) ) { |
|
| 701 | - $type = sanitize_text_field( $_GET['type'] ); |
|
| 699 | + $type = ''; |
|
| 700 | + if (isset($_GET['type'])) { |
|
| 701 | + $type = sanitize_text_field($_GET['type']); |
|
| 702 | 702 | } |
| 703 | 703 | |
| 704 | 704 | echo wpinv_html_select( |
| 705 | 705 | array( |
| 706 | 706 | 'options' => array_merge( |
| 707 | 707 | array( |
| 708 | - '' => __( 'All item types', 'invoicing' ) |
|
| 708 | + '' => __('All item types', 'invoicing') |
|
| 709 | 709 | ), |
| 710 | 710 | wpinv_get_item_types() |
| 711 | 711 | ), |
| 712 | 712 | 'name' => 'type', |
| 713 | 713 | 'id' => 'type', |
| 714 | - 'selected' => in_array( $type, wpinv_item_types() ) ? $type : '', |
|
| 714 | + 'selected' => in_array($type, wpinv_item_types()) ? $type : '', |
|
| 715 | 715 | 'show_option_all' => false, |
| 716 | 716 | 'show_option_none' => false, |
| 717 | 717 | ) |
@@ -722,45 +722,45 @@ discard block |
||
| 722 | 722 | /** |
| 723 | 723 | * Filters the item query. |
| 724 | 724 | */ |
| 725 | - public static function filter_item_query( $query ) { |
|
| 725 | + public static function filter_item_query($query) { |
|
| 726 | 726 | |
| 727 | 727 | // modify the query only if it admin and main query. |
| 728 | - if ( ! ( is_admin() && $query->is_main_query() ) ){ |
|
| 728 | + if (!(is_admin() && $query->is_main_query())) { |
|
| 729 | 729 | return $query; |
| 730 | 730 | } |
| 731 | 731 | |
| 732 | 732 | // we want to modify the query for our items. |
| 733 | - if ( empty( $query->query['post_type'] ) || 'wpi_item' != $query->query['post_type'] ){ |
|
| 733 | + if (empty($query->query['post_type']) || 'wpi_item' != $query->query['post_type']) { |
|
| 734 | 734 | return $query; |
| 735 | 735 | } |
| 736 | 736 | |
| 737 | - if ( empty( $query->query_vars['meta_query'] ) ) { |
|
| 737 | + if (empty($query->query_vars['meta_query'])) { |
|
| 738 | 738 | $query->query_vars['meta_query'] = array(); |
| 739 | 739 | } |
| 740 | 740 | |
| 741 | 741 | // Filter vat rule type |
| 742 | - if ( ! empty( $_GET['vat_rule'] ) ) { |
|
| 742 | + if (!empty($_GET['vat_rule'])) { |
|
| 743 | 743 | $query->query_vars['meta_query'][] = array( |
| 744 | 744 | 'key' => '_wpinv_vat_rule', |
| 745 | - 'value' => sanitize_text_field( $_GET['vat_rule'] ), |
|
| 745 | + 'value' => sanitize_text_field($_GET['vat_rule']), |
|
| 746 | 746 | 'compare' => '=' |
| 747 | 747 | ); |
| 748 | 748 | } |
| 749 | 749 | |
| 750 | 750 | // Filter vat class |
| 751 | - if ( ! empty( $_GET['vat_class'] ) ) { |
|
| 751 | + if (!empty($_GET['vat_class'])) { |
|
| 752 | 752 | $query->query_vars['meta_query'][] = array( |
| 753 | 753 | 'key' => '_wpinv_vat_class', |
| 754 | - 'value' => sanitize_text_field( $_GET['vat_class'] ), |
|
| 754 | + 'value' => sanitize_text_field($_GET['vat_class']), |
|
| 755 | 755 | 'compare' => '=' |
| 756 | 756 | ); |
| 757 | 757 | } |
| 758 | 758 | |
| 759 | 759 | // Filter item type |
| 760 | - if ( ! empty( $_GET['type'] ) ) { |
|
| 760 | + if (!empty($_GET['type'])) { |
|
| 761 | 761 | $query->query_vars['meta_query'][] = array( |
| 762 | 762 | 'key' => '_wpinv_type', |
| 763 | - 'value' => sanitize_text_field( $_GET['type'] ), |
|
| 763 | + 'value' => sanitize_text_field($_GET['type']), |
|
| 764 | 764 | 'compare' => '=' |
| 765 | 765 | ); |
| 766 | 766 | } |
@@ -770,15 +770,15 @@ discard block |
||
| 770 | 770 | /** |
| 771 | 771 | * Reorders items. |
| 772 | 772 | */ |
| 773 | - public static function reorder_items( $vars ) { |
|
| 773 | + public static function reorder_items($vars) { |
|
| 774 | 774 | global $typenow; |
| 775 | 775 | |
| 776 | - if ( 'wpi_item' !== $typenow || empty( $vars['orderby'] ) ) { |
|
| 776 | + if ('wpi_item' !== $typenow || empty($vars['orderby'])) { |
|
| 777 | 777 | return $vars; |
| 778 | 778 | } |
| 779 | 779 | |
| 780 | 780 | // By item type. |
| 781 | - if ( 'type' == $vars['orderby'] ) { |
|
| 781 | + if ('type' == $vars['orderby']) { |
|
| 782 | 782 | return array_merge( |
| 783 | 783 | $vars, |
| 784 | 784 | array( |
@@ -789,7 +789,7 @@ discard block |
||
| 789 | 789 | } |
| 790 | 790 | |
| 791 | 791 | // By vat class. |
| 792 | - if ( 'vat_class' == $vars['orderby'] ) { |
|
| 792 | + if ('vat_class' == $vars['orderby']) { |
|
| 793 | 793 | return array_merge( |
| 794 | 794 | $vars, |
| 795 | 795 | array( |
@@ -800,7 +800,7 @@ discard block |
||
| 800 | 800 | } |
| 801 | 801 | |
| 802 | 802 | // By vat rule. |
| 803 | - if ( 'vat_rule' == $vars['orderby'] ) { |
|
| 803 | + if ('vat_rule' == $vars['orderby']) { |
|
| 804 | 804 | return array_merge( |
| 805 | 805 | $vars, |
| 806 | 806 | array( |
@@ -811,7 +811,7 @@ discard block |
||
| 811 | 811 | } |
| 812 | 812 | |
| 813 | 813 | // By price. |
| 814 | - if ( 'price' == $vars['orderby'] ) { |
|
| 814 | + if ('price' == $vars['orderby']) { |
|
| 815 | 815 | return array_merge( |
| 816 | 816 | $vars, |
| 817 | 817 | array( |
@@ -828,27 +828,27 @@ discard block |
||
| 828 | 828 | /** |
| 829 | 829 | * Fired when deleting a post. |
| 830 | 830 | */ |
| 831 | - public static function delete_post( $post_id ) { |
|
| 831 | + public static function delete_post($post_id) { |
|
| 832 | 832 | |
| 833 | - switch ( get_post_type( $post_id ) ) { |
|
| 833 | + switch (get_post_type($post_id)) { |
|
| 834 | 834 | |
| 835 | 835 | case 'wpi_item' : |
| 836 | - do_action( "getpaid_before_delete_item", new WPInv_Item( $post_id ) ); |
|
| 836 | + do_action("getpaid_before_delete_item", new WPInv_Item($post_id)); |
|
| 837 | 837 | break; |
| 838 | 838 | |
| 839 | 839 | case 'wpi_payment_form' : |
| 840 | - do_action( "getpaid_before_delete_payment_form", new GetPaid_Payment_Form( $post_id ) ); |
|
| 840 | + do_action("getpaid_before_delete_payment_form", new GetPaid_Payment_Form($post_id)); |
|
| 841 | 841 | break; |
| 842 | 842 | |
| 843 | 843 | case 'wpi_discount' : |
| 844 | - do_action( "getpaid_before_delete_discount", new WPInv_Discount( $post_id ) ); |
|
| 844 | + do_action("getpaid_before_delete_discount", new WPInv_Discount($post_id)); |
|
| 845 | 845 | break; |
| 846 | 846 | |
| 847 | 847 | case 'wpi_invoice' : |
| 848 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 849 | - do_action( "getpaid_before_delete_invoice", $invoice ); |
|
| 850 | - $invoice->get_data_store()->delete_items( $invoice ); |
|
| 851 | - $invoice->get_data_store()->delete_special_fields( $invoice ); |
|
| 848 | + $invoice = new WPInv_Invoice($post_id); |
|
| 849 | + do_action("getpaid_before_delete_invoice", $invoice); |
|
| 850 | + $invoice->get_data_store()->delete_items($invoice); |
|
| 851 | + $invoice->get_data_store()->delete_special_fields($invoice); |
|
| 852 | 852 | break; |
| 853 | 853 | } |
| 854 | 854 | } |
@@ -861,29 +861,29 @@ discard block |
||
| 861 | 861 | * |
| 862 | 862 | * @return mixed |
| 863 | 863 | */ |
| 864 | - public static function add_display_post_states( $post_states, $post ) { |
|
| 864 | + public static function add_display_post_states($post_states, $post) { |
|
| 865 | 865 | |
| 866 | - if ( wpinv_get_option( 'success_page', 0 ) == $post->ID ) { |
|
| 867 | - $post_states['getpaid_success_page'] = __( 'GetPaid Receipt Page', 'invoicing' ); |
|
| 866 | + if (wpinv_get_option('success_page', 0) == $post->ID) { |
|
| 867 | + $post_states['getpaid_success_page'] = __('GetPaid Receipt Page', 'invoicing'); |
|
| 868 | 868 | } |
| 869 | 869 | |
| 870 | - foreach ( getpaid_get_invoice_post_types() as $post_type => $label ) { |
|
| 870 | + foreach (getpaid_get_invoice_post_types() as $post_type => $label) { |
|
| 871 | 871 | |
| 872 | - if ( wpinv_get_option( "{$post_type}_history_page", 0 ) == $post->ID ) { |
|
| 872 | + if (wpinv_get_option("{$post_type}_history_page", 0) == $post->ID) { |
|
| 873 | 873 | $post_states["getpaid_{$post_type}_history_page"] = sprintf( |
| 874 | - __( 'GetPaid %s History Page', 'invoicing' ), |
|
| 874 | + __('GetPaid %s History Page', 'invoicing'), |
|
| 875 | 875 | $label |
| 876 | 876 | ); |
| 877 | 877 | } |
| 878 | 878 | |
| 879 | 879 | } |
| 880 | 880 | |
| 881 | - if ( wpinv_get_option( 'invoice_subscription_page', 0 ) == $post->ID ) { |
|
| 882 | - $post_states['getpaid_invoice_subscription_page'] = __( 'GetPaid Subscription Page', 'invoicing' ); |
|
| 881 | + if (wpinv_get_option('invoice_subscription_page', 0) == $post->ID) { |
|
| 882 | + $post_states['getpaid_invoice_subscription_page'] = __('GetPaid Subscription Page', 'invoicing'); |
|
| 883 | 883 | } |
| 884 | 884 | |
| 885 | - if ( wpinv_get_option( 'checkout_page', 0 ) == $post->ID ) { |
|
| 886 | - $post_states['getpaid_checkout_page'] = __( 'GetPaid Checkout Page', 'invoicing' ); |
|
| 885 | + if (wpinv_get_option('checkout_page', 0) == $post->ID) { |
|
| 886 | + $post_states['getpaid_checkout_page'] = __('GetPaid Checkout Page', 'invoicing'); |
|
| 887 | 887 | } |
| 888 | 888 | |
| 889 | 889 | return $post_states; |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | - exit; |
|
| 3 | + exit; |
|
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | /** |
@@ -10,200 +10,200 @@ discard block |
||
| 10 | 10 | class GetPaid_Payment_Form_Submission { |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | - * Submission ID |
|
| 14 | - * |
|
| 15 | - * @var string |
|
| 16 | - */ |
|
| 17 | - public $id = null; |
|
| 18 | - |
|
| 19 | - /** |
|
| 20 | - * The raw submission data. |
|
| 21 | - * |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $data = null; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Submission totals |
|
| 28 | - * |
|
| 29 | - * @var array |
|
| 30 | - */ |
|
| 31 | - protected $totals = array( |
|
| 32 | - |
|
| 33 | - 'subtotal' => array( |
|
| 34 | - 'initial' => 0, |
|
| 35 | - 'recurring' => 0, |
|
| 36 | - ), |
|
| 37 | - |
|
| 38 | - 'discount' => array( |
|
| 39 | - 'initial' => 0, |
|
| 40 | - 'recurring' => 0, |
|
| 41 | - ), |
|
| 42 | - |
|
| 43 | - 'fees' => array( |
|
| 44 | - 'initial' => 0, |
|
| 45 | - 'recurring' => 0, |
|
| 46 | - ), |
|
| 47 | - |
|
| 48 | - 'taxes' => array( |
|
| 49 | - 'initial' => 0, |
|
| 50 | - 'recurring' => 0, |
|
| 51 | - ), |
|
| 52 | - |
|
| 53 | - 'shipping' => array( |
|
| 54 | - 'initial' => 0, |
|
| 55 | - 'recurring' => 0, |
|
| 56 | - ), |
|
| 57 | - |
|
| 58 | - ); |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * Sets the associated payment form. |
|
| 62 | - * |
|
| 63 | - * @var GetPaid_Payment_Form |
|
| 64 | - */ |
|
| 13 | + * Submission ID |
|
| 14 | + * |
|
| 15 | + * @var string |
|
| 16 | + */ |
|
| 17 | + public $id = null; |
|
| 18 | + |
|
| 19 | + /** |
|
| 20 | + * The raw submission data. |
|
| 21 | + * |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $data = null; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Submission totals |
|
| 28 | + * |
|
| 29 | + * @var array |
|
| 30 | + */ |
|
| 31 | + protected $totals = array( |
|
| 32 | + |
|
| 33 | + 'subtotal' => array( |
|
| 34 | + 'initial' => 0, |
|
| 35 | + 'recurring' => 0, |
|
| 36 | + ), |
|
| 37 | + |
|
| 38 | + 'discount' => array( |
|
| 39 | + 'initial' => 0, |
|
| 40 | + 'recurring' => 0, |
|
| 41 | + ), |
|
| 42 | + |
|
| 43 | + 'fees' => array( |
|
| 44 | + 'initial' => 0, |
|
| 45 | + 'recurring' => 0, |
|
| 46 | + ), |
|
| 47 | + |
|
| 48 | + 'taxes' => array( |
|
| 49 | + 'initial' => 0, |
|
| 50 | + 'recurring' => 0, |
|
| 51 | + ), |
|
| 52 | + |
|
| 53 | + 'shipping' => array( |
|
| 54 | + 'initial' => 0, |
|
| 55 | + 'recurring' => 0, |
|
| 56 | + ), |
|
| 57 | + |
|
| 58 | + ); |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * Sets the associated payment form. |
|
| 62 | + * |
|
| 63 | + * @var GetPaid_Payment_Form |
|
| 64 | + */ |
|
| 65 | 65 | protected $payment_form = null; |
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | - * The country for the submission. |
|
| 69 | - * |
|
| 70 | - * @var string |
|
| 71 | - */ |
|
| 72 | - public $country = null; |
|
| 73 | - |
|
| 74 | - /** |
|
| 75 | - * The state for the submission. |
|
| 76 | - * |
|
| 77 | - * @since 1.0.19 |
|
| 78 | - * @var string |
|
| 79 | - */ |
|
| 80 | - public $state = null; |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * The invoice associated with the submission. |
|
| 84 | - * |
|
| 85 | - * @var WPInv_Invoice |
|
| 86 | - */ |
|
| 87 | - protected $invoice = null; |
|
| 88 | - |
|
| 89 | - /** |
|
| 90 | - * The recurring item for the submission. |
|
| 91 | - * |
|
| 92 | - * @var int |
|
| 93 | - */ |
|
| 94 | - public $has_recurring = 0; |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * An array of fees for the submission. |
|
| 98 | - * |
|
| 99 | - * @var array |
|
| 100 | - */ |
|
| 101 | - protected $fees = array(); |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * An array of discounts for the submission. |
|
| 105 | - * |
|
| 106 | - * @var array |
|
| 107 | - */ |
|
| 108 | - protected $discounts = array(); |
|
| 109 | - |
|
| 110 | - /** |
|
| 111 | - * An array of taxes for the submission. |
|
| 112 | - * |
|
| 113 | - * @var array |
|
| 114 | - */ |
|
| 115 | - protected $taxes = array(); |
|
| 116 | - |
|
| 117 | - /** |
|
| 118 | - * An array of items for the submission. |
|
| 119 | - * |
|
| 120 | - * @var GetPaid_Form_Item[] |
|
| 121 | - */ |
|
| 122 | - protected $items = array(); |
|
| 123 | - |
|
| 124 | - /** |
|
| 125 | - * The last error. |
|
| 126 | - * |
|
| 127 | - * @var string |
|
| 128 | - */ |
|
| 129 | - public $last_error = null; |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * The last error code. |
|
| 133 | - * |
|
| 134 | - * @var string |
|
| 135 | - */ |
|
| 136 | - public $last_error_code = null; |
|
| 137 | - |
|
| 138 | - /** |
|
| 139 | - * Class constructor. |
|
| 140 | - * |
|
| 141 | - */ |
|
| 142 | - public function __construct() { |
|
| 143 | - |
|
| 144 | - // Set the state and country to the default state and country. |
|
| 145 | - $this->country = wpinv_default_billing_country(); |
|
| 146 | - $this->state = wpinv_get_default_state(); |
|
| 147 | - |
|
| 148 | - // Do we have an actual submission? |
|
| 149 | - if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
| 150 | - $this->load_data( wp_kses_post_deep( wp_unslash( $_POST ) ) ); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Loads submission data. |
|
| 157 | - * |
|
| 158 | - * @param array $data |
|
| 159 | - */ |
|
| 160 | - public function load_data( $data ) { |
|
| 161 | - |
|
| 162 | - // Allow plugins to filter the data. |
|
| 163 | - $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
| 164 | - |
|
| 165 | - // Cache it... |
|
| 166 | - $this->data = $data; |
|
| 167 | - |
|
| 168 | - // Then generate a unique id from the data. |
|
| 169 | - $this->id = md5( wp_json_encode( $data ) ); |
|
| 170 | - |
|
| 171 | - // Finally, process the submission. |
|
| 172 | - try { |
|
| 173 | - |
|
| 174 | - // Each process is passed an instance of the class (with reference) |
|
| 175 | - // and should throw an Exception whenever it encounters one. |
|
| 176 | - $processors = apply_filters( |
|
| 177 | - 'getpaid_payment_form_submission_processors', |
|
| 178 | - array( |
|
| 179 | - array( $this, 'process_payment_form' ), |
|
| 180 | - array( $this, 'process_invoice' ), |
|
| 181 | - array( $this, 'process_fees' ), |
|
| 182 | - array( $this, 'process_items' ), |
|
| 183 | - array( $this, 'process_discount' ), |
|
| 184 | - array( $this, 'process_taxes' ), |
|
| 185 | - ), |
|
| 186 | - $this |
|
| 187 | - ); |
|
| 188 | - |
|
| 189 | - foreach ( $processors as $processor ) { |
|
| 190 | - call_user_func_array( $processor, array( &$this ) ); |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - } catch( GetPaid_Payment_Exception $e ) { |
|
| 194 | - $this->last_error = $e->getMessage(); |
|
| 195 | - $this->last_error_code = $e->getErrorCode(); |
|
| 196 | - } catch ( Exception $e ) { |
|
| 197 | - $this->last_error = $e->getMessage(); |
|
| 198 | - $this->last_error_code = $e->getCode(); |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - // Fired when we are done processing a submission. |
|
| 202 | - do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
| 203 | - |
|
| 204 | - } |
|
| 205 | - |
|
| 206 | - /* |
|
| 68 | + * The country for the submission. |
|
| 69 | + * |
|
| 70 | + * @var string |
|
| 71 | + */ |
|
| 72 | + public $country = null; |
|
| 73 | + |
|
| 74 | + /** |
|
| 75 | + * The state for the submission. |
|
| 76 | + * |
|
| 77 | + * @since 1.0.19 |
|
| 78 | + * @var string |
|
| 79 | + */ |
|
| 80 | + public $state = null; |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * The invoice associated with the submission. |
|
| 84 | + * |
|
| 85 | + * @var WPInv_Invoice |
|
| 86 | + */ |
|
| 87 | + protected $invoice = null; |
|
| 88 | + |
|
| 89 | + /** |
|
| 90 | + * The recurring item for the submission. |
|
| 91 | + * |
|
| 92 | + * @var int |
|
| 93 | + */ |
|
| 94 | + public $has_recurring = 0; |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * An array of fees for the submission. |
|
| 98 | + * |
|
| 99 | + * @var array |
|
| 100 | + */ |
|
| 101 | + protected $fees = array(); |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * An array of discounts for the submission. |
|
| 105 | + * |
|
| 106 | + * @var array |
|
| 107 | + */ |
|
| 108 | + protected $discounts = array(); |
|
| 109 | + |
|
| 110 | + /** |
|
| 111 | + * An array of taxes for the submission. |
|
| 112 | + * |
|
| 113 | + * @var array |
|
| 114 | + */ |
|
| 115 | + protected $taxes = array(); |
|
| 116 | + |
|
| 117 | + /** |
|
| 118 | + * An array of items for the submission. |
|
| 119 | + * |
|
| 120 | + * @var GetPaid_Form_Item[] |
|
| 121 | + */ |
|
| 122 | + protected $items = array(); |
|
| 123 | + |
|
| 124 | + /** |
|
| 125 | + * The last error. |
|
| 126 | + * |
|
| 127 | + * @var string |
|
| 128 | + */ |
|
| 129 | + public $last_error = null; |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * The last error code. |
|
| 133 | + * |
|
| 134 | + * @var string |
|
| 135 | + */ |
|
| 136 | + public $last_error_code = null; |
|
| 137 | + |
|
| 138 | + /** |
|
| 139 | + * Class constructor. |
|
| 140 | + * |
|
| 141 | + */ |
|
| 142 | + public function __construct() { |
|
| 143 | + |
|
| 144 | + // Set the state and country to the default state and country. |
|
| 145 | + $this->country = wpinv_default_billing_country(); |
|
| 146 | + $this->state = wpinv_get_default_state(); |
|
| 147 | + |
|
| 148 | + // Do we have an actual submission? |
|
| 149 | + if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
| 150 | + $this->load_data( wp_kses_post_deep( wp_unslash( $_POST ) ) ); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Loads submission data. |
|
| 157 | + * |
|
| 158 | + * @param array $data |
|
| 159 | + */ |
|
| 160 | + public function load_data( $data ) { |
|
| 161 | + |
|
| 162 | + // Allow plugins to filter the data. |
|
| 163 | + $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
| 164 | + |
|
| 165 | + // Cache it... |
|
| 166 | + $this->data = $data; |
|
| 167 | + |
|
| 168 | + // Then generate a unique id from the data. |
|
| 169 | + $this->id = md5( wp_json_encode( $data ) ); |
|
| 170 | + |
|
| 171 | + // Finally, process the submission. |
|
| 172 | + try { |
|
| 173 | + |
|
| 174 | + // Each process is passed an instance of the class (with reference) |
|
| 175 | + // and should throw an Exception whenever it encounters one. |
|
| 176 | + $processors = apply_filters( |
|
| 177 | + 'getpaid_payment_form_submission_processors', |
|
| 178 | + array( |
|
| 179 | + array( $this, 'process_payment_form' ), |
|
| 180 | + array( $this, 'process_invoice' ), |
|
| 181 | + array( $this, 'process_fees' ), |
|
| 182 | + array( $this, 'process_items' ), |
|
| 183 | + array( $this, 'process_discount' ), |
|
| 184 | + array( $this, 'process_taxes' ), |
|
| 185 | + ), |
|
| 186 | + $this |
|
| 187 | + ); |
|
| 188 | + |
|
| 189 | + foreach ( $processors as $processor ) { |
|
| 190 | + call_user_func_array( $processor, array( &$this ) ); |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + } catch( GetPaid_Payment_Exception $e ) { |
|
| 194 | + $this->last_error = $e->getMessage(); |
|
| 195 | + $this->last_error_code = $e->getErrorCode(); |
|
| 196 | + } catch ( Exception $e ) { |
|
| 197 | + $this->last_error = $e->getMessage(); |
|
| 198 | + $this->last_error_code = $e->getCode(); |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + // Fired when we are done processing a submission. |
|
| 202 | + do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
| 203 | + |
|
| 204 | + } |
|
| 205 | + |
|
| 206 | + /* |
|
| 207 | 207 | |-------------------------------------------------------------------------- |
| 208 | 208 | | Payment Forms. |
| 209 | 209 | |-------------------------------------------------------------------------- |
@@ -212,39 +212,39 @@ discard block |
||
| 212 | 212 | | submission has an active payment form etc. |
| 213 | 213 | */ |
| 214 | 214 | |
| 215 | - /** |
|
| 216 | - * Prepares the submission's payment form. |
|
| 217 | - * |
|
| 218 | - * @since 1.0.19 |
|
| 219 | - */ |
|
| 220 | - public function process_payment_form() { |
|
| 215 | + /** |
|
| 216 | + * Prepares the submission's payment form. |
|
| 217 | + * |
|
| 218 | + * @since 1.0.19 |
|
| 219 | + */ |
|
| 220 | + public function process_payment_form() { |
|
| 221 | 221 | |
| 222 | - // Every submission needs an active payment form. |
|
| 223 | - if ( empty( $this->data['form_id'] ) ) { |
|
| 224 | - throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
| 225 | - } |
|
| 222 | + // Every submission needs an active payment form. |
|
| 223 | + if ( empty( $this->data['form_id'] ) ) { |
|
| 224 | + throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
| 225 | + } |
|
| 226 | 226 | |
| 227 | - // Fetch the payment form. |
|
| 228 | - $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
| 227 | + // Fetch the payment form. |
|
| 228 | + $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
| 229 | 229 | |
| 230 | - if ( ! $this->payment_form->is_active() ) { |
|
| 231 | - throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
| 232 | - } |
|
| 230 | + if ( ! $this->payment_form->is_active() ) { |
|
| 231 | + throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
| 232 | + } |
|
| 233 | 233 | |
| 234 | - do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
| 235 | - } |
|
| 234 | + do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
| 235 | + } |
|
| 236 | 236 | |
| 237 | 237 | /** |
| 238 | - * Returns the payment form. |
|
| 239 | - * |
|
| 240 | - * @since 1.0.19 |
|
| 241 | - * @return GetPaid_Payment_Form |
|
| 242 | - */ |
|
| 243 | - public function get_payment_form() { |
|
| 244 | - return $this->payment_form; |
|
| 245 | - } |
|
| 238 | + * Returns the payment form. |
|
| 239 | + * |
|
| 240 | + * @since 1.0.19 |
|
| 241 | + * @return GetPaid_Payment_Form |
|
| 242 | + */ |
|
| 243 | + public function get_payment_form() { |
|
| 244 | + return $this->payment_form; |
|
| 245 | + } |
|
| 246 | 246 | |
| 247 | - /* |
|
| 247 | + /* |
|
| 248 | 248 | |-------------------------------------------------------------------------- |
| 249 | 249 | | Invoices. |
| 250 | 250 | |-------------------------------------------------------------------------- |
@@ -253,84 +253,84 @@ discard block |
||
| 253 | 253 | | might be for an existing invoice. |
| 254 | 254 | */ |
| 255 | 255 | |
| 256 | - /** |
|
| 257 | - * Prepares the submission's invoice. |
|
| 258 | - * |
|
| 259 | - * @since 1.0.19 |
|
| 260 | - */ |
|
| 261 | - public function process_invoice() { |
|
| 256 | + /** |
|
| 257 | + * Prepares the submission's invoice. |
|
| 258 | + * |
|
| 259 | + * @since 1.0.19 |
|
| 260 | + */ |
|
| 261 | + public function process_invoice() { |
|
| 262 | 262 | |
| 263 | - // Abort if there is no invoice. |
|
| 264 | - if ( empty( $this->data['invoice_id'] ) ) { |
|
| 265 | - return; |
|
| 266 | - } |
|
| 263 | + // Abort if there is no invoice. |
|
| 264 | + if ( empty( $this->data['invoice_id'] ) ) { |
|
| 265 | + return; |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | - // If the submission is for an existing invoice, ensure that it exists |
|
| 269 | - // and that it is not paid for. |
|
| 270 | - $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
| 268 | + // If the submission is for an existing invoice, ensure that it exists |
|
| 269 | + // and that it is not paid for. |
|
| 270 | + $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
| 271 | 271 | |
| 272 | 272 | if ( empty( $invoice ) ) { |
| 273 | - throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
| 274 | - } |
|
| 273 | + throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - if ( $invoice->is_paid() ) { |
|
| 277 | - throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
| 278 | - } |
|
| 276 | + if ( $invoice->is_paid() ) { |
|
| 277 | + throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
| 278 | + } |
|
| 279 | 279 | |
| 280 | - $this->payment_form->invoice = $invoice; |
|
| 281 | - if ( ! $this->payment_form->is_default() ) { |
|
| 280 | + $this->payment_form->invoice = $invoice; |
|
| 281 | + if ( ! $this->payment_form->is_default() ) { |
|
| 282 | 282 | |
| 283 | - $items = array(); |
|
| 284 | - $item_ids = array(); |
|
| 283 | + $items = array(); |
|
| 284 | + $item_ids = array(); |
|
| 285 | 285 | |
| 286 | - foreach ( $invoice->get_items() as $item ) { |
|
| 287 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 288 | - $item_ids[] = $item->get_id(); |
|
| 289 | - $items[] = $item; |
|
| 290 | - } |
|
| 291 | - } |
|
| 286 | + foreach ( $invoice->get_items() as $item ) { |
|
| 287 | + if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 288 | + $item_ids[] = $item->get_id(); |
|
| 289 | + $items[] = $item; |
|
| 290 | + } |
|
| 291 | + } |
|
| 292 | 292 | |
| 293 | - foreach ( $this->payment_form->get_items() as $item ) { |
|
| 294 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 295 | - $item_ids[] = $item->get_id(); |
|
| 296 | - $items[] = $item; |
|
| 297 | - } |
|
| 298 | - } |
|
| 293 | + foreach ( $this->payment_form->get_items() as $item ) { |
|
| 294 | + if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 295 | + $item_ids[] = $item->get_id(); |
|
| 296 | + $items[] = $item; |
|
| 297 | + } |
|
| 298 | + } |
|
| 299 | 299 | |
| 300 | - $this->payment_form->set_items( $items ); |
|
| 300 | + $this->payment_form->set_items( $items ); |
|
| 301 | 301 | |
| 302 | - } else { |
|
| 303 | - $this->payment_form->set_items( $invoice->get_items() ); |
|
| 304 | - } |
|
| 305 | - |
|
| 306 | - $this->country = $invoice->get_country(); |
|
| 307 | - $this->state = $invoice->get_state(); |
|
| 308 | - $this->invoice = $invoice; |
|
| 309 | - |
|
| 310 | - do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
| 311 | - } |
|
| 312 | - |
|
| 313 | - /** |
|
| 314 | - * Returns the associated invoice. |
|
| 315 | - * |
|
| 316 | - * @since 1.0.19 |
|
| 317 | - * @return WPInv_Invoice |
|
| 318 | - */ |
|
| 319 | - public function get_invoice() { |
|
| 320 | - return $this->invoice; |
|
| 321 | - } |
|
| 322 | - |
|
| 323 | - /** |
|
| 324 | - * Checks whether there is an invoice associated with this submission. |
|
| 325 | - * |
|
| 326 | - * @since 1.0.19 |
|
| 327 | - * @return bool |
|
| 328 | - */ |
|
| 329 | - public function has_invoice() { |
|
| 330 | - return ! empty( $this->invoice ); |
|
| 331 | - } |
|
| 332 | - |
|
| 333 | - /* |
|
| 302 | + } else { |
|
| 303 | + $this->payment_form->set_items( $invoice->get_items() ); |
|
| 304 | + } |
|
| 305 | + |
|
| 306 | + $this->country = $invoice->get_country(); |
|
| 307 | + $this->state = $invoice->get_state(); |
|
| 308 | + $this->invoice = $invoice; |
|
| 309 | + |
|
| 310 | + do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
| 311 | + } |
|
| 312 | + |
|
| 313 | + /** |
|
| 314 | + * Returns the associated invoice. |
|
| 315 | + * |
|
| 316 | + * @since 1.0.19 |
|
| 317 | + * @return WPInv_Invoice |
|
| 318 | + */ |
|
| 319 | + public function get_invoice() { |
|
| 320 | + return $this->invoice; |
|
| 321 | + } |
|
| 322 | + |
|
| 323 | + /** |
|
| 324 | + * Checks whether there is an invoice associated with this submission. |
|
| 325 | + * |
|
| 326 | + * @since 1.0.19 |
|
| 327 | + * @return bool |
|
| 328 | + */ |
|
| 329 | + public function has_invoice() { |
|
| 330 | + return ! empty( $this->invoice ); |
|
| 331 | + } |
|
| 332 | + |
|
| 333 | + /* |
|
| 334 | 334 | |-------------------------------------------------------------------------- |
| 335 | 335 | | Items. |
| 336 | 336 | |-------------------------------------------------------------------------- |
@@ -339,129 +339,129 @@ discard block |
||
| 339 | 339 | | recurring item. But can have an unlimited number of non-recurring items. |
| 340 | 340 | */ |
| 341 | 341 | |
| 342 | - /** |
|
| 343 | - * Prepares the submission's items. |
|
| 344 | - * |
|
| 345 | - * @since 1.0.19 |
|
| 346 | - */ |
|
| 347 | - public function process_items() { |
|
| 348 | - |
|
| 349 | - $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
| 350 | - |
|
| 351 | - foreach ( $processor->items as $item ) { |
|
| 352 | - $this->add_item( $item ); |
|
| 353 | - } |
|
| 354 | - |
|
| 355 | - do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
| 356 | - } |
|
| 357 | - |
|
| 358 | - /** |
|
| 359 | - * Adds an item to the submission. |
|
| 360 | - * |
|
| 361 | - * @since 1.0.19 |
|
| 362 | - * @param GetPaid_Form_Item $item |
|
| 363 | - */ |
|
| 364 | - public function add_item( $item ) { |
|
| 365 | - |
|
| 366 | - // Make sure that it is available for purchase. |
|
| 367 | - if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
| 368 | - return; |
|
| 369 | - } |
|
| 370 | - |
|
| 371 | - // Each submission can only contain one recurring item. |
|
| 372 | - if ( $item->is_recurring() ) { |
|
| 373 | - $this->has_recurring = $item->get_id(); |
|
| 374 | - } |
|
| 375 | - |
|
| 376 | - // Update the items and totals. |
|
| 377 | - $this->items[ $item->get_id() ] = $item; |
|
| 378 | - $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
|
| 379 | - $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
|
| 380 | - |
|
| 381 | - } |
|
| 382 | - |
|
| 383 | - /** |
|
| 384 | - * Removes a specific item. |
|
| 385 | - * |
|
| 386 | - * You should not call this method after the discounts and taxes |
|
| 387 | - * have been calculated. |
|
| 388 | - * |
|
| 389 | - * @since 1.0.19 |
|
| 390 | - */ |
|
| 391 | - public function remove_item( $item_id ) { |
|
| 392 | - |
|
| 393 | - if ( isset( $this->items[ $item_id ] ) ) { |
|
| 394 | - $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
| 395 | - $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
| 396 | - |
|
| 397 | - if ( $this->items[ $item_id ]->is_recurring() ) { |
|
| 398 | - $this->has_recurring = 0; |
|
| 399 | - } |
|
| 400 | - |
|
| 401 | - unset( $this->items[ $item_id ] ); |
|
| 402 | - } |
|
| 403 | - |
|
| 404 | - } |
|
| 405 | - |
|
| 406 | - /** |
|
| 407 | - * Returns the subtotal. |
|
| 408 | - * |
|
| 409 | - * @since 1.0.19 |
|
| 410 | - */ |
|
| 411 | - public function get_subtotal() { |
|
| 412 | - |
|
| 413 | - if ( wpinv_prices_include_tax() ) { |
|
| 414 | - return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
|
| 415 | - } |
|
| 416 | - |
|
| 417 | - return $this->totals['subtotal']['initial']; |
|
| 418 | - } |
|
| 419 | - |
|
| 420 | - /** |
|
| 421 | - * Returns the recurring subtotal. |
|
| 422 | - * |
|
| 423 | - * @since 1.0.19 |
|
| 424 | - */ |
|
| 425 | - public function get_recurring_subtotal() { |
|
| 426 | - |
|
| 427 | - if ( wpinv_prices_include_tax() ) { |
|
| 428 | - return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
|
| 429 | - } |
|
| 430 | - |
|
| 431 | - return $this->totals['subtotal']['recurring']; |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - /** |
|
| 435 | - * Returns all items. |
|
| 436 | - * |
|
| 437 | - * @since 1.0.19 |
|
| 438 | - * @return GetPaid_Form_Item[] |
|
| 439 | - */ |
|
| 440 | - public function get_items() { |
|
| 441 | - return $this->items; |
|
| 442 | - } |
|
| 443 | - |
|
| 444 | - /** |
|
| 445 | - * Checks if there's a single subscription group in the submission. |
|
| 446 | - * |
|
| 447 | - * @since 2.3.0 |
|
| 448 | - * @return bool |
|
| 449 | - */ |
|
| 450 | - public function has_subscription_group() { |
|
| 451 | - return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
| 452 | - } |
|
| 453 | - |
|
| 454 | - /** |
|
| 455 | - * Checks if there are multipe subscription groups in the submission. |
|
| 456 | - * |
|
| 457 | - * @since 2.3.0 |
|
| 458 | - * @return bool |
|
| 459 | - */ |
|
| 460 | - public function has_multiple_subscription_groups() { |
|
| 461 | - return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
| 462 | - } |
|
| 463 | - |
|
| 464 | - /* |
|
| 342 | + /** |
|
| 343 | + * Prepares the submission's items. |
|
| 344 | + * |
|
| 345 | + * @since 1.0.19 |
|
| 346 | + */ |
|
| 347 | + public function process_items() { |
|
| 348 | + |
|
| 349 | + $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
| 350 | + |
|
| 351 | + foreach ( $processor->items as $item ) { |
|
| 352 | + $this->add_item( $item ); |
|
| 353 | + } |
|
| 354 | + |
|
| 355 | + do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
| 356 | + } |
|
| 357 | + |
|
| 358 | + /** |
|
| 359 | + * Adds an item to the submission. |
|
| 360 | + * |
|
| 361 | + * @since 1.0.19 |
|
| 362 | + * @param GetPaid_Form_Item $item |
|
| 363 | + */ |
|
| 364 | + public function add_item( $item ) { |
|
| 365 | + |
|
| 366 | + // Make sure that it is available for purchase. |
|
| 367 | + if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
| 368 | + return; |
|
| 369 | + } |
|
| 370 | + |
|
| 371 | + // Each submission can only contain one recurring item. |
|
| 372 | + if ( $item->is_recurring() ) { |
|
| 373 | + $this->has_recurring = $item->get_id(); |
|
| 374 | + } |
|
| 375 | + |
|
| 376 | + // Update the items and totals. |
|
| 377 | + $this->items[ $item->get_id() ] = $item; |
|
| 378 | + $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
|
| 379 | + $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
|
| 380 | + |
|
| 381 | + } |
|
| 382 | + |
|
| 383 | + /** |
|
| 384 | + * Removes a specific item. |
|
| 385 | + * |
|
| 386 | + * You should not call this method after the discounts and taxes |
|
| 387 | + * have been calculated. |
|
| 388 | + * |
|
| 389 | + * @since 1.0.19 |
|
| 390 | + */ |
|
| 391 | + public function remove_item( $item_id ) { |
|
| 392 | + |
|
| 393 | + if ( isset( $this->items[ $item_id ] ) ) { |
|
| 394 | + $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
| 395 | + $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
| 396 | + |
|
| 397 | + if ( $this->items[ $item_id ]->is_recurring() ) { |
|
| 398 | + $this->has_recurring = 0; |
|
| 399 | + } |
|
| 400 | + |
|
| 401 | + unset( $this->items[ $item_id ] ); |
|
| 402 | + } |
|
| 403 | + |
|
| 404 | + } |
|
| 405 | + |
|
| 406 | + /** |
|
| 407 | + * Returns the subtotal. |
|
| 408 | + * |
|
| 409 | + * @since 1.0.19 |
|
| 410 | + */ |
|
| 411 | + public function get_subtotal() { |
|
| 412 | + |
|
| 413 | + if ( wpinv_prices_include_tax() ) { |
|
| 414 | + return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
|
| 415 | + } |
|
| 416 | + |
|
| 417 | + return $this->totals['subtotal']['initial']; |
|
| 418 | + } |
|
| 419 | + |
|
| 420 | + /** |
|
| 421 | + * Returns the recurring subtotal. |
|
| 422 | + * |
|
| 423 | + * @since 1.0.19 |
|
| 424 | + */ |
|
| 425 | + public function get_recurring_subtotal() { |
|
| 426 | + |
|
| 427 | + if ( wpinv_prices_include_tax() ) { |
|
| 428 | + return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
|
| 429 | + } |
|
| 430 | + |
|
| 431 | + return $this->totals['subtotal']['recurring']; |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + /** |
|
| 435 | + * Returns all items. |
|
| 436 | + * |
|
| 437 | + * @since 1.0.19 |
|
| 438 | + * @return GetPaid_Form_Item[] |
|
| 439 | + */ |
|
| 440 | + public function get_items() { |
|
| 441 | + return $this->items; |
|
| 442 | + } |
|
| 443 | + |
|
| 444 | + /** |
|
| 445 | + * Checks if there's a single subscription group in the submission. |
|
| 446 | + * |
|
| 447 | + * @since 2.3.0 |
|
| 448 | + * @return bool |
|
| 449 | + */ |
|
| 450 | + public function has_subscription_group() { |
|
| 451 | + return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
| 452 | + } |
|
| 453 | + |
|
| 454 | + /** |
|
| 455 | + * Checks if there are multipe subscription groups in the submission. |
|
| 456 | + * |
|
| 457 | + * @since 2.3.0 |
|
| 458 | + * @return bool |
|
| 459 | + */ |
|
| 460 | + public function has_multiple_subscription_groups() { |
|
| 461 | + return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
| 462 | + } |
|
| 463 | + |
|
| 464 | + /* |
|
| 465 | 465 | |-------------------------------------------------------------------------- |
| 466 | 466 | | Taxes |
| 467 | 467 | |-------------------------------------------------------------------------- |
@@ -470,128 +470,128 @@ discard block |
||
| 470 | 470 | | or only one-time. |
| 471 | 471 | */ |
| 472 | 472 | |
| 473 | - /** |
|
| 474 | - * Prepares the submission's taxes. |
|
| 475 | - * |
|
| 476 | - * @since 1.0.19 |
|
| 477 | - */ |
|
| 478 | - public function process_taxes() { |
|
| 479 | - |
|
| 480 | - // Abort if we're not using taxes. |
|
| 481 | - if ( ! $this->use_taxes() ) { |
|
| 482 | - return; |
|
| 483 | - } |
|
| 484 | - |
|
| 485 | - // If a custom country && state has been passed in, use it to calculate taxes. |
|
| 486 | - $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
| 487 | - if ( ! empty( $country ) ) { |
|
| 488 | - $this->country = $country; |
|
| 489 | - } |
|
| 490 | - |
|
| 491 | - $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
| 492 | - if ( ! empty( $state ) ) { |
|
| 493 | - $this->state = $state; |
|
| 494 | - } |
|
| 495 | - |
|
| 496 | - // Confirm if the provided country and the ip country are similar. |
|
| 497 | - $address_confirmed = $this->get_field( 'confirm-address' ); |
|
| 498 | - if ( isset( $_POST['billing']['country'] ) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
| 499 | - throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
| 500 | - } |
|
| 501 | - |
|
| 502 | - // Abort if the country is not taxable. |
|
| 503 | - if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
| 504 | - return; |
|
| 505 | - } |
|
| 506 | - |
|
| 507 | - $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
| 508 | - |
|
| 509 | - foreach ( $processor->taxes as $tax ) { |
|
| 510 | - $this->add_tax( $tax ); |
|
| 511 | - } |
|
| 512 | - |
|
| 513 | - do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
| 514 | - } |
|
| 515 | - |
|
| 516 | - /** |
|
| 517 | - * Adds a tax to the submission. |
|
| 518 | - * |
|
| 519 | - * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
|
| 520 | - * @since 1.0.19 |
|
| 521 | - */ |
|
| 522 | - public function add_tax( $tax ) { |
|
| 523 | - |
|
| 524 | - if ( wpinv_round_tax_per_tax_rate() ) { |
|
| 525 | - $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
| 526 | - $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
| 527 | - } |
|
| 528 | - |
|
| 529 | - $this->taxes[ $tax['name'] ] = $tax; |
|
| 530 | - $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
| 531 | - $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
| 532 | - |
|
| 533 | - } |
|
| 534 | - |
|
| 535 | - /** |
|
| 536 | - * Removes a specific tax. |
|
| 537 | - * |
|
| 538 | - * @since 1.0.19 |
|
| 539 | - */ |
|
| 540 | - public function remove_tax( $tax_name ) { |
|
| 541 | - |
|
| 542 | - if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
| 543 | - $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
| 544 | - $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
| 545 | - unset( $this->taxes[ $tax_name ] ); |
|
| 546 | - } |
|
| 547 | - |
|
| 548 | - } |
|
| 549 | - |
|
| 550 | - /** |
|
| 551 | - * Whether or not we'll use taxes for the submission. |
|
| 552 | - * |
|
| 553 | - * @since 1.0.19 |
|
| 554 | - */ |
|
| 555 | - public function use_taxes() { |
|
| 556 | - |
|
| 557 | - $use_taxes = wpinv_use_taxes(); |
|
| 558 | - |
|
| 559 | - if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
| 560 | - $use_taxes = false; |
|
| 561 | - } |
|
| 562 | - |
|
| 563 | - return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
| 564 | - |
|
| 565 | - } |
|
| 566 | - |
|
| 567 | - /** |
|
| 568 | - * Returns the tax. |
|
| 569 | - * |
|
| 570 | - * @since 1.0.19 |
|
| 571 | - */ |
|
| 572 | - public function get_tax() { |
|
| 573 | - return $this->totals['taxes']['initial']; |
|
| 574 | - } |
|
| 575 | - |
|
| 576 | - /** |
|
| 577 | - * Returns the recurring tax. |
|
| 578 | - * |
|
| 579 | - * @since 1.0.19 |
|
| 580 | - */ |
|
| 581 | - public function get_recurring_tax() { |
|
| 582 | - return $this->totals['taxes']['recurring']; |
|
| 583 | - } |
|
| 584 | - |
|
| 585 | - /** |
|
| 586 | - * Returns all taxes. |
|
| 587 | - * |
|
| 588 | - * @since 1.0.19 |
|
| 589 | - */ |
|
| 590 | - public function get_taxes() { |
|
| 591 | - return $this->taxes; |
|
| 592 | - } |
|
| 593 | - |
|
| 594 | - /* |
|
| 473 | + /** |
|
| 474 | + * Prepares the submission's taxes. |
|
| 475 | + * |
|
| 476 | + * @since 1.0.19 |
|
| 477 | + */ |
|
| 478 | + public function process_taxes() { |
|
| 479 | + |
|
| 480 | + // Abort if we're not using taxes. |
|
| 481 | + if ( ! $this->use_taxes() ) { |
|
| 482 | + return; |
|
| 483 | + } |
|
| 484 | + |
|
| 485 | + // If a custom country && state has been passed in, use it to calculate taxes. |
|
| 486 | + $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
| 487 | + if ( ! empty( $country ) ) { |
|
| 488 | + $this->country = $country; |
|
| 489 | + } |
|
| 490 | + |
|
| 491 | + $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
| 492 | + if ( ! empty( $state ) ) { |
|
| 493 | + $this->state = $state; |
|
| 494 | + } |
|
| 495 | + |
|
| 496 | + // Confirm if the provided country and the ip country are similar. |
|
| 497 | + $address_confirmed = $this->get_field( 'confirm-address' ); |
|
| 498 | + if ( isset( $_POST['billing']['country'] ) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
| 499 | + throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
| 500 | + } |
|
| 501 | + |
|
| 502 | + // Abort if the country is not taxable. |
|
| 503 | + if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
| 504 | + return; |
|
| 505 | + } |
|
| 506 | + |
|
| 507 | + $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
| 508 | + |
|
| 509 | + foreach ( $processor->taxes as $tax ) { |
|
| 510 | + $this->add_tax( $tax ); |
|
| 511 | + } |
|
| 512 | + |
|
| 513 | + do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
| 514 | + } |
|
| 515 | + |
|
| 516 | + /** |
|
| 517 | + * Adds a tax to the submission. |
|
| 518 | + * |
|
| 519 | + * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
|
| 520 | + * @since 1.0.19 |
|
| 521 | + */ |
|
| 522 | + public function add_tax( $tax ) { |
|
| 523 | + |
|
| 524 | + if ( wpinv_round_tax_per_tax_rate() ) { |
|
| 525 | + $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
| 526 | + $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
| 527 | + } |
|
| 528 | + |
|
| 529 | + $this->taxes[ $tax['name'] ] = $tax; |
|
| 530 | + $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
| 531 | + $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
| 532 | + |
|
| 533 | + } |
|
| 534 | + |
|
| 535 | + /** |
|
| 536 | + * Removes a specific tax. |
|
| 537 | + * |
|
| 538 | + * @since 1.0.19 |
|
| 539 | + */ |
|
| 540 | + public function remove_tax( $tax_name ) { |
|
| 541 | + |
|
| 542 | + if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
| 543 | + $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
| 544 | + $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
| 545 | + unset( $this->taxes[ $tax_name ] ); |
|
| 546 | + } |
|
| 547 | + |
|
| 548 | + } |
|
| 549 | + |
|
| 550 | + /** |
|
| 551 | + * Whether or not we'll use taxes for the submission. |
|
| 552 | + * |
|
| 553 | + * @since 1.0.19 |
|
| 554 | + */ |
|
| 555 | + public function use_taxes() { |
|
| 556 | + |
|
| 557 | + $use_taxes = wpinv_use_taxes(); |
|
| 558 | + |
|
| 559 | + if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
| 560 | + $use_taxes = false; |
|
| 561 | + } |
|
| 562 | + |
|
| 563 | + return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
| 564 | + |
|
| 565 | + } |
|
| 566 | + |
|
| 567 | + /** |
|
| 568 | + * Returns the tax. |
|
| 569 | + * |
|
| 570 | + * @since 1.0.19 |
|
| 571 | + */ |
|
| 572 | + public function get_tax() { |
|
| 573 | + return $this->totals['taxes']['initial']; |
|
| 574 | + } |
|
| 575 | + |
|
| 576 | + /** |
|
| 577 | + * Returns the recurring tax. |
|
| 578 | + * |
|
| 579 | + * @since 1.0.19 |
|
| 580 | + */ |
|
| 581 | + public function get_recurring_tax() { |
|
| 582 | + return $this->totals['taxes']['recurring']; |
|
| 583 | + } |
|
| 584 | + |
|
| 585 | + /** |
|
| 586 | + * Returns all taxes. |
|
| 587 | + * |
|
| 588 | + * @since 1.0.19 |
|
| 589 | + */ |
|
| 590 | + public function get_taxes() { |
|
| 591 | + return $this->taxes; |
|
| 592 | + } |
|
| 593 | + |
|
| 594 | + /* |
|
| 595 | 595 | |-------------------------------------------------------------------------- |
| 596 | 596 | | Discounts |
| 597 | 597 | |-------------------------------------------------------------------------- |
@@ -600,99 +600,99 @@ discard block |
||
| 600 | 600 | | or only one-time. They also do not have to come from a discount code. |
| 601 | 601 | */ |
| 602 | 602 | |
| 603 | - /** |
|
| 604 | - * Prepares the submission's discount. |
|
| 605 | - * |
|
| 606 | - * @since 1.0.19 |
|
| 607 | - */ |
|
| 608 | - public function process_discount() { |
|
| 609 | - |
|
| 610 | - $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
|
| 611 | - $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
|
| 612 | - $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
| 613 | - |
|
| 614 | - foreach ( $processor->discounts as $discount ) { |
|
| 615 | - $this->add_discount( $discount ); |
|
| 616 | - } |
|
| 617 | - |
|
| 618 | - do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
| 619 | - } |
|
| 620 | - |
|
| 621 | - /** |
|
| 622 | - * Adds a discount to the submission. |
|
| 623 | - * |
|
| 624 | - * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
|
| 625 | - * @since 1.0.19 |
|
| 626 | - */ |
|
| 627 | - public function add_discount( $discount ) { |
|
| 628 | - $this->discounts[ $discount['name'] ] = $discount; |
|
| 629 | - $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
| 630 | - $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
| 631 | - } |
|
| 632 | - |
|
| 633 | - /** |
|
| 634 | - * Removes a discount from the submission. |
|
| 635 | - * |
|
| 636 | - * @since 1.0.19 |
|
| 637 | - */ |
|
| 638 | - public function remove_discount( $name ) { |
|
| 639 | - |
|
| 640 | - if ( isset( $this->discounts[ $name ] ) ) { |
|
| 641 | - $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
| 642 | - $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
| 643 | - unset( $this->discounts[ $name ] ); |
|
| 644 | - } |
|
| 645 | - |
|
| 646 | - } |
|
| 647 | - |
|
| 648 | - /** |
|
| 649 | - * Checks whether there is a discount code associated with this submission. |
|
| 650 | - * |
|
| 651 | - * @since 1.0.19 |
|
| 652 | - * @return bool |
|
| 653 | - */ |
|
| 654 | - public function has_discount_code() { |
|
| 655 | - return ! empty( $this->discounts['discount_code'] ); |
|
| 656 | - } |
|
| 657 | - |
|
| 658 | - /** |
|
| 659 | - * Returns the discount code. |
|
| 660 | - * |
|
| 661 | - * @since 1.0.19 |
|
| 662 | - * @return string |
|
| 663 | - */ |
|
| 664 | - public function get_discount_code() { |
|
| 665 | - return $this->has_discount_code() ? $this->discounts['discount_code']['discount_code'] : ''; |
|
| 666 | - } |
|
| 667 | - |
|
| 668 | - /** |
|
| 669 | - * Returns the discount. |
|
| 670 | - * |
|
| 671 | - * @since 1.0.19 |
|
| 672 | - */ |
|
| 673 | - public function get_discount() { |
|
| 674 | - return $this->totals['discount']['initial']; |
|
| 675 | - } |
|
| 676 | - |
|
| 677 | - /** |
|
| 678 | - * Returns the recurring discount. |
|
| 679 | - * |
|
| 680 | - * @since 1.0.19 |
|
| 681 | - */ |
|
| 682 | - public function get_recurring_discount() { |
|
| 683 | - return $this->totals['discount']['recurring']; |
|
| 684 | - } |
|
| 685 | - |
|
| 686 | - /** |
|
| 687 | - * Returns all discounts. |
|
| 688 | - * |
|
| 689 | - * @since 1.0.19 |
|
| 690 | - */ |
|
| 691 | - public function get_discounts() { |
|
| 692 | - return $this->discounts; |
|
| 693 | - } |
|
| 694 | - |
|
| 695 | - /* |
|
| 603 | + /** |
|
| 604 | + * Prepares the submission's discount. |
|
| 605 | + * |
|
| 606 | + * @since 1.0.19 |
|
| 607 | + */ |
|
| 608 | + public function process_discount() { |
|
| 609 | + |
|
| 610 | + $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
|
| 611 | + $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
|
| 612 | + $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
| 613 | + |
|
| 614 | + foreach ( $processor->discounts as $discount ) { |
|
| 615 | + $this->add_discount( $discount ); |
|
| 616 | + } |
|
| 617 | + |
|
| 618 | + do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
| 619 | + } |
|
| 620 | + |
|
| 621 | + /** |
|
| 622 | + * Adds a discount to the submission. |
|
| 623 | + * |
|
| 624 | + * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
|
| 625 | + * @since 1.0.19 |
|
| 626 | + */ |
|
| 627 | + public function add_discount( $discount ) { |
|
| 628 | + $this->discounts[ $discount['name'] ] = $discount; |
|
| 629 | + $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
| 630 | + $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
| 631 | + } |
|
| 632 | + |
|
| 633 | + /** |
|
| 634 | + * Removes a discount from the submission. |
|
| 635 | + * |
|
| 636 | + * @since 1.0.19 |
|
| 637 | + */ |
|
| 638 | + public function remove_discount( $name ) { |
|
| 639 | + |
|
| 640 | + if ( isset( $this->discounts[ $name ] ) ) { |
|
| 641 | + $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
| 642 | + $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
| 643 | + unset( $this->discounts[ $name ] ); |
|
| 644 | + } |
|
| 645 | + |
|
| 646 | + } |
|
| 647 | + |
|
| 648 | + /** |
|
| 649 | + * Checks whether there is a discount code associated with this submission. |
|
| 650 | + * |
|
| 651 | + * @since 1.0.19 |
|
| 652 | + * @return bool |
|
| 653 | + */ |
|
| 654 | + public function has_discount_code() { |
|
| 655 | + return ! empty( $this->discounts['discount_code'] ); |
|
| 656 | + } |
|
| 657 | + |
|
| 658 | + /** |
|
| 659 | + * Returns the discount code. |
|
| 660 | + * |
|
| 661 | + * @since 1.0.19 |
|
| 662 | + * @return string |
|
| 663 | + */ |
|
| 664 | + public function get_discount_code() { |
|
| 665 | + return $this->has_discount_code() ? $this->discounts['discount_code']['discount_code'] : ''; |
|
| 666 | + } |
|
| 667 | + |
|
| 668 | + /** |
|
| 669 | + * Returns the discount. |
|
| 670 | + * |
|
| 671 | + * @since 1.0.19 |
|
| 672 | + */ |
|
| 673 | + public function get_discount() { |
|
| 674 | + return $this->totals['discount']['initial']; |
|
| 675 | + } |
|
| 676 | + |
|
| 677 | + /** |
|
| 678 | + * Returns the recurring discount. |
|
| 679 | + * |
|
| 680 | + * @since 1.0.19 |
|
| 681 | + */ |
|
| 682 | + public function get_recurring_discount() { |
|
| 683 | + return $this->totals['discount']['recurring']; |
|
| 684 | + } |
|
| 685 | + |
|
| 686 | + /** |
|
| 687 | + * Returns all discounts. |
|
| 688 | + * |
|
| 689 | + * @since 1.0.19 |
|
| 690 | + */ |
|
| 691 | + public function get_discounts() { |
|
| 692 | + return $this->discounts; |
|
| 693 | + } |
|
| 694 | + |
|
| 695 | + /* |
|
| 696 | 696 | |-------------------------------------------------------------------------- |
| 697 | 697 | | Fees |
| 698 | 698 | |-------------------------------------------------------------------------- |
@@ -702,100 +702,100 @@ discard block |
||
| 702 | 702 | | fees. |
| 703 | 703 | */ |
| 704 | 704 | |
| 705 | - /** |
|
| 706 | - * Prepares the submission's fees. |
|
| 707 | - * |
|
| 708 | - * @since 1.0.19 |
|
| 709 | - */ |
|
| 710 | - public function process_fees() { |
|
| 711 | - |
|
| 712 | - $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
| 713 | - |
|
| 714 | - foreach ( $fees_processor->fees as $fee ) { |
|
| 715 | - $this->add_fee( $fee ); |
|
| 716 | - } |
|
| 717 | - |
|
| 718 | - do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
| 719 | - } |
|
| 720 | - |
|
| 721 | - /** |
|
| 722 | - * Adds a fee to the submission. |
|
| 723 | - * |
|
| 724 | - * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
|
| 725 | - * @since 1.0.19 |
|
| 726 | - */ |
|
| 727 | - public function add_fee( $fee ) { |
|
| 728 | - |
|
| 729 | - if ( $fee['name'] == 'shipping' ) { |
|
| 730 | - $this->totals['shipping']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 731 | - $this->totals['shipping']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 732 | - return; |
|
| 733 | - } |
|
| 734 | - |
|
| 735 | - $this->fees[ $fee['name'] ] = $fee; |
|
| 736 | - $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 737 | - $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 738 | - |
|
| 739 | - } |
|
| 740 | - |
|
| 741 | - /** |
|
| 742 | - * Removes a fee from the submission. |
|
| 743 | - * |
|
| 744 | - * @since 1.0.19 |
|
| 745 | - */ |
|
| 746 | - public function remove_fee( $name ) { |
|
| 747 | - |
|
| 748 | - if ( isset( $this->fees[ $name ] ) ) { |
|
| 749 | - $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
| 750 | - $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
| 751 | - unset( $this->fees[ $name ] ); |
|
| 752 | - } |
|
| 753 | - |
|
| 754 | - if ( 'shipping' == $name ) { |
|
| 755 | - $this->totals['shipping']['initial'] = 0; |
|
| 756 | - $this->totals['shipping']['recurring'] = 0; |
|
| 757 | - } |
|
| 758 | - |
|
| 759 | - } |
|
| 760 | - |
|
| 761 | - /** |
|
| 762 | - * Returns the fees. |
|
| 763 | - * |
|
| 764 | - * @since 1.0.19 |
|
| 765 | - */ |
|
| 766 | - public function get_fee() { |
|
| 767 | - return $this->totals['fees']['initial']; |
|
| 768 | - } |
|
| 769 | - |
|
| 770 | - /** |
|
| 771 | - * Returns the recurring fees. |
|
| 772 | - * |
|
| 773 | - * @since 1.0.19 |
|
| 774 | - */ |
|
| 775 | - public function get_recurring_fee() { |
|
| 776 | - return $this->totals['fees']['recurring']; |
|
| 777 | - } |
|
| 778 | - |
|
| 779 | - /** |
|
| 780 | - * Returns all fees. |
|
| 781 | - * |
|
| 782 | - * @since 1.0.19 |
|
| 783 | - */ |
|
| 784 | - public function get_fees() { |
|
| 785 | - return $this->fees; |
|
| 786 | - } |
|
| 787 | - |
|
| 788 | - /** |
|
| 789 | - * Checks if there are any fees for the form. |
|
| 790 | - * |
|
| 791 | - * @return bool |
|
| 792 | - * @since 1.0.19 |
|
| 793 | - */ |
|
| 794 | - public function has_fees() { |
|
| 795 | - return count( $this->fees ) !== 0; |
|
| 796 | - } |
|
| 797 | - |
|
| 798 | - /* |
|
| 705 | + /** |
|
| 706 | + * Prepares the submission's fees. |
|
| 707 | + * |
|
| 708 | + * @since 1.0.19 |
|
| 709 | + */ |
|
| 710 | + public function process_fees() { |
|
| 711 | + |
|
| 712 | + $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
| 713 | + |
|
| 714 | + foreach ( $fees_processor->fees as $fee ) { |
|
| 715 | + $this->add_fee( $fee ); |
|
| 716 | + } |
|
| 717 | + |
|
| 718 | + do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
| 719 | + } |
|
| 720 | + |
|
| 721 | + /** |
|
| 722 | + * Adds a fee to the submission. |
|
| 723 | + * |
|
| 724 | + * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
|
| 725 | + * @since 1.0.19 |
|
| 726 | + */ |
|
| 727 | + public function add_fee( $fee ) { |
|
| 728 | + |
|
| 729 | + if ( $fee['name'] == 'shipping' ) { |
|
| 730 | + $this->totals['shipping']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 731 | + $this->totals['shipping']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 732 | + return; |
|
| 733 | + } |
|
| 734 | + |
|
| 735 | + $this->fees[ $fee['name'] ] = $fee; |
|
| 736 | + $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 737 | + $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 738 | + |
|
| 739 | + } |
|
| 740 | + |
|
| 741 | + /** |
|
| 742 | + * Removes a fee from the submission. |
|
| 743 | + * |
|
| 744 | + * @since 1.0.19 |
|
| 745 | + */ |
|
| 746 | + public function remove_fee( $name ) { |
|
| 747 | + |
|
| 748 | + if ( isset( $this->fees[ $name ] ) ) { |
|
| 749 | + $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
| 750 | + $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
| 751 | + unset( $this->fees[ $name ] ); |
|
| 752 | + } |
|
| 753 | + |
|
| 754 | + if ( 'shipping' == $name ) { |
|
| 755 | + $this->totals['shipping']['initial'] = 0; |
|
| 756 | + $this->totals['shipping']['recurring'] = 0; |
|
| 757 | + } |
|
| 758 | + |
|
| 759 | + } |
|
| 760 | + |
|
| 761 | + /** |
|
| 762 | + * Returns the fees. |
|
| 763 | + * |
|
| 764 | + * @since 1.0.19 |
|
| 765 | + */ |
|
| 766 | + public function get_fee() { |
|
| 767 | + return $this->totals['fees']['initial']; |
|
| 768 | + } |
|
| 769 | + |
|
| 770 | + /** |
|
| 771 | + * Returns the recurring fees. |
|
| 772 | + * |
|
| 773 | + * @since 1.0.19 |
|
| 774 | + */ |
|
| 775 | + public function get_recurring_fee() { |
|
| 776 | + return $this->totals['fees']['recurring']; |
|
| 777 | + } |
|
| 778 | + |
|
| 779 | + /** |
|
| 780 | + * Returns all fees. |
|
| 781 | + * |
|
| 782 | + * @since 1.0.19 |
|
| 783 | + */ |
|
| 784 | + public function get_fees() { |
|
| 785 | + return $this->fees; |
|
| 786 | + } |
|
| 787 | + |
|
| 788 | + /** |
|
| 789 | + * Checks if there are any fees for the form. |
|
| 790 | + * |
|
| 791 | + * @return bool |
|
| 792 | + * @since 1.0.19 |
|
| 793 | + */ |
|
| 794 | + public function has_fees() { |
|
| 795 | + return count( $this->fees ) !== 0; |
|
| 796 | + } |
|
| 797 | + |
|
| 798 | + /* |
|
| 799 | 799 | |-------------------------------------------------------------------------- |
| 800 | 800 | | MISC |
| 801 | 801 | |-------------------------------------------------------------------------- |
@@ -803,147 +803,147 @@ discard block |
||
| 803 | 803 | | Extra submission functions. |
| 804 | 804 | */ |
| 805 | 805 | |
| 806 | - /** |
|
| 807 | - * Returns the shipping amount. |
|
| 808 | - * |
|
| 809 | - * @since 1.0.19 |
|
| 810 | - */ |
|
| 811 | - public function get_shipping() { |
|
| 812 | - return $this->totals['shipping']['initial']; |
|
| 813 | - } |
|
| 814 | - |
|
| 815 | - /** |
|
| 816 | - * Returns the recurring shipping. |
|
| 817 | - * |
|
| 818 | - * @since 1.0.19 |
|
| 819 | - */ |
|
| 820 | - public function get_recurring_shipping() { |
|
| 821 | - return $this->totals['shipping']['recurring']; |
|
| 822 | - } |
|
| 823 | - |
|
| 824 | - /** |
|
| 825 | - * Checks if there are any shipping fees for the form. |
|
| 826 | - * |
|
| 827 | - * @return bool |
|
| 828 | - * @since 1.0.19 |
|
| 829 | - */ |
|
| 830 | - public function has_shipping() { |
|
| 831 | - return apply_filters( 'getpaid_payment_form_has_shipping', false, $this ); |
|
| 832 | - } |
|
| 833 | - |
|
| 834 | - /** |
|
| 835 | - * Checks if this is the initial fetch. |
|
| 836 | - * |
|
| 837 | - * @return bool |
|
| 838 | - * @since 1.0.19 |
|
| 839 | - */ |
|
| 840 | - public function is_initial_fetch() { |
|
| 841 | - return empty( $this->data['initial_state'] ); |
|
| 842 | - } |
|
| 843 | - |
|
| 844 | - /** |
|
| 845 | - * Returns the total amount to collect for this submission. |
|
| 846 | - * |
|
| 847 | - * @since 1.0.19 |
|
| 848 | - */ |
|
| 849 | - public function get_total() { |
|
| 850 | - $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() + $this->get_shipping() - $this->get_discount(); |
|
| 851 | - return max( $total, 0 ); |
|
| 852 | - } |
|
| 853 | - |
|
| 854 | - /** |
|
| 855 | - * Returns the recurring total amount to collect for this submission. |
|
| 856 | - * |
|
| 857 | - * @since 1.0.19 |
|
| 858 | - */ |
|
| 859 | - public function get_recurring_total() { |
|
| 860 | - $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() + $this->get_recurring_shipping() - $this->get_recurring_discount(); |
|
| 861 | - return max( $total, 0 ); |
|
| 862 | - } |
|
| 863 | - |
|
| 864 | - /** |
|
| 865 | - * Whether payment details should be collected for this submission. |
|
| 866 | - * |
|
| 867 | - * @since 1.0.19 |
|
| 868 | - */ |
|
| 869 | - public function should_collect_payment_details() { |
|
| 870 | - $initial = $this->get_total(); |
|
| 871 | - $recurring = $this->get_recurring_total(); |
|
| 872 | - |
|
| 873 | - if ( $this->has_recurring == 0 ) { |
|
| 874 | - $recurring = 0; |
|
| 875 | - } |
|
| 876 | - |
|
| 877 | - $collect = $initial > 0 || $recurring > 0; |
|
| 878 | - return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
| 879 | - } |
|
| 880 | - |
|
| 881 | - /** |
|
| 882 | - * Returns the billing email of the user. |
|
| 883 | - * |
|
| 884 | - * @since 1.0.19 |
|
| 885 | - */ |
|
| 886 | - public function get_billing_email() { |
|
| 887 | - return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
| 888 | - } |
|
| 889 | - |
|
| 890 | - /** |
|
| 891 | - * Checks if the submitter has a billing email. |
|
| 892 | - * |
|
| 893 | - * @since 1.0.19 |
|
| 894 | - */ |
|
| 895 | - public function has_billing_email() { |
|
| 896 | - $billing_email = $this->get_billing_email(); |
|
| 897 | - return ! empty( $billing_email ) && is_email( $billing_email ); |
|
| 898 | - } |
|
| 899 | - |
|
| 900 | - /** |
|
| 901 | - * Returns the appropriate currency for the submission. |
|
| 902 | - * |
|
| 903 | - * @since 1.0.19 |
|
| 904 | - * @return string |
|
| 905 | - */ |
|
| 906 | - public function get_currency() { |
|
| 907 | - return $this->has_invoice() ? $this->invoice->get_currency() : wpinv_get_currency(); |
|
| 908 | - } |
|
| 909 | - |
|
| 910 | - /** |
|
| 911 | - * Returns the raw submission data. |
|
| 912 | - * |
|
| 913 | - * @since 1.0.19 |
|
| 914 | - * @return array |
|
| 915 | - */ |
|
| 916 | - public function get_data() { |
|
| 917 | - return $this->data; |
|
| 918 | - } |
|
| 919 | - |
|
| 920 | - /** |
|
| 921 | - * Returns a field from the submission data |
|
| 922 | - * |
|
| 923 | - * @param string $field |
|
| 924 | - * @since 1.0.19 |
|
| 925 | - * @return mixed|null |
|
| 926 | - */ |
|
| 927 | - public function get_field( $field, $sub_array_key = null ) { |
|
| 928 | - return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
| 929 | - } |
|
| 930 | - |
|
| 931 | - /** |
|
| 932 | - * Checks if a required field is set. |
|
| 933 | - * |
|
| 934 | - * @since 1.0.19 |
|
| 935 | - */ |
|
| 936 | - public function is_required_field_set( $field ) { |
|
| 937 | - return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
| 938 | - } |
|
| 939 | - |
|
| 940 | - /** |
|
| 941 | - * Formats an amount |
|
| 942 | - * |
|
| 943 | - * @since 1.0.19 |
|
| 944 | - */ |
|
| 945 | - public function format_amount( $amount ) { |
|
| 946 | - return wpinv_price( $amount, $this->get_currency() ); |
|
| 947 | - } |
|
| 806 | + /** |
|
| 807 | + * Returns the shipping amount. |
|
| 808 | + * |
|
| 809 | + * @since 1.0.19 |
|
| 810 | + */ |
|
| 811 | + public function get_shipping() { |
|
| 812 | + return $this->totals['shipping']['initial']; |
|
| 813 | + } |
|
| 814 | + |
|
| 815 | + /** |
|
| 816 | + * Returns the recurring shipping. |
|
| 817 | + * |
|
| 818 | + * @since 1.0.19 |
|
| 819 | + */ |
|
| 820 | + public function get_recurring_shipping() { |
|
| 821 | + return $this->totals['shipping']['recurring']; |
|
| 822 | + } |
|
| 823 | + |
|
| 824 | + /** |
|
| 825 | + * Checks if there are any shipping fees for the form. |
|
| 826 | + * |
|
| 827 | + * @return bool |
|
| 828 | + * @since 1.0.19 |
|
| 829 | + */ |
|
| 830 | + public function has_shipping() { |
|
| 831 | + return apply_filters( 'getpaid_payment_form_has_shipping', false, $this ); |
|
| 832 | + } |
|
| 833 | + |
|
| 834 | + /** |
|
| 835 | + * Checks if this is the initial fetch. |
|
| 836 | + * |
|
| 837 | + * @return bool |
|
| 838 | + * @since 1.0.19 |
|
| 839 | + */ |
|
| 840 | + public function is_initial_fetch() { |
|
| 841 | + return empty( $this->data['initial_state'] ); |
|
| 842 | + } |
|
| 843 | + |
|
| 844 | + /** |
|
| 845 | + * Returns the total amount to collect for this submission. |
|
| 846 | + * |
|
| 847 | + * @since 1.0.19 |
|
| 848 | + */ |
|
| 849 | + public function get_total() { |
|
| 850 | + $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() + $this->get_shipping() - $this->get_discount(); |
|
| 851 | + return max( $total, 0 ); |
|
| 852 | + } |
|
| 853 | + |
|
| 854 | + /** |
|
| 855 | + * Returns the recurring total amount to collect for this submission. |
|
| 856 | + * |
|
| 857 | + * @since 1.0.19 |
|
| 858 | + */ |
|
| 859 | + public function get_recurring_total() { |
|
| 860 | + $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() + $this->get_recurring_shipping() - $this->get_recurring_discount(); |
|
| 861 | + return max( $total, 0 ); |
|
| 862 | + } |
|
| 863 | + |
|
| 864 | + /** |
|
| 865 | + * Whether payment details should be collected for this submission. |
|
| 866 | + * |
|
| 867 | + * @since 1.0.19 |
|
| 868 | + */ |
|
| 869 | + public function should_collect_payment_details() { |
|
| 870 | + $initial = $this->get_total(); |
|
| 871 | + $recurring = $this->get_recurring_total(); |
|
| 872 | + |
|
| 873 | + if ( $this->has_recurring == 0 ) { |
|
| 874 | + $recurring = 0; |
|
| 875 | + } |
|
| 876 | + |
|
| 877 | + $collect = $initial > 0 || $recurring > 0; |
|
| 878 | + return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
| 879 | + } |
|
| 880 | + |
|
| 881 | + /** |
|
| 882 | + * Returns the billing email of the user. |
|
| 883 | + * |
|
| 884 | + * @since 1.0.19 |
|
| 885 | + */ |
|
| 886 | + public function get_billing_email() { |
|
| 887 | + return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
| 888 | + } |
|
| 889 | + |
|
| 890 | + /** |
|
| 891 | + * Checks if the submitter has a billing email. |
|
| 892 | + * |
|
| 893 | + * @since 1.0.19 |
|
| 894 | + */ |
|
| 895 | + public function has_billing_email() { |
|
| 896 | + $billing_email = $this->get_billing_email(); |
|
| 897 | + return ! empty( $billing_email ) && is_email( $billing_email ); |
|
| 898 | + } |
|
| 899 | + |
|
| 900 | + /** |
|
| 901 | + * Returns the appropriate currency for the submission. |
|
| 902 | + * |
|
| 903 | + * @since 1.0.19 |
|
| 904 | + * @return string |
|
| 905 | + */ |
|
| 906 | + public function get_currency() { |
|
| 907 | + return $this->has_invoice() ? $this->invoice->get_currency() : wpinv_get_currency(); |
|
| 908 | + } |
|
| 909 | + |
|
| 910 | + /** |
|
| 911 | + * Returns the raw submission data. |
|
| 912 | + * |
|
| 913 | + * @since 1.0.19 |
|
| 914 | + * @return array |
|
| 915 | + */ |
|
| 916 | + public function get_data() { |
|
| 917 | + return $this->data; |
|
| 918 | + } |
|
| 919 | + |
|
| 920 | + /** |
|
| 921 | + * Returns a field from the submission data |
|
| 922 | + * |
|
| 923 | + * @param string $field |
|
| 924 | + * @since 1.0.19 |
|
| 925 | + * @return mixed|null |
|
| 926 | + */ |
|
| 927 | + public function get_field( $field, $sub_array_key = null ) { |
|
| 928 | + return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
| 929 | + } |
|
| 930 | + |
|
| 931 | + /** |
|
| 932 | + * Checks if a required field is set. |
|
| 933 | + * |
|
| 934 | + * @since 1.0.19 |
|
| 935 | + */ |
|
| 936 | + public function is_required_field_set( $field ) { |
|
| 937 | + return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
| 938 | + } |
|
| 939 | + |
|
| 940 | + /** |
|
| 941 | + * Formats an amount |
|
| 942 | + * |
|
| 943 | + * @since 1.0.19 |
|
| 944 | + */ |
|
| 945 | + public function format_amount( $amount ) { |
|
| 946 | + return wpinv_price( $amount, $this->get_currency() ); |
|
| 947 | + } |
|
| 948 | 948 | |
| 949 | 949 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | $this->state = wpinv_get_default_state(); |
| 147 | 147 | |
| 148 | 148 | // Do we have an actual submission? |
| 149 | - if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
| 150 | - $this->load_data( wp_kses_post_deep( wp_unslash( $_POST ) ) ); |
|
| 149 | + if (isset($_POST['getpaid_payment_form_submission'])) { |
|
| 150 | + $this->load_data(wp_kses_post_deep(wp_unslash($_POST))); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | } |
@@ -157,16 +157,16 @@ discard block |
||
| 157 | 157 | * |
| 158 | 158 | * @param array $data |
| 159 | 159 | */ |
| 160 | - public function load_data( $data ) { |
|
| 160 | + public function load_data($data) { |
|
| 161 | 161 | |
| 162 | 162 | // Allow plugins to filter the data. |
| 163 | - $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
| 163 | + $data = apply_filters('getpaid_submission_data', $data, $this); |
|
| 164 | 164 | |
| 165 | 165 | // Cache it... |
| 166 | 166 | $this->data = $data; |
| 167 | 167 | |
| 168 | 168 | // Then generate a unique id from the data. |
| 169 | - $this->id = md5( wp_json_encode( $data ) ); |
|
| 169 | + $this->id = md5(wp_json_encode($data)); |
|
| 170 | 170 | |
| 171 | 171 | // Finally, process the submission. |
| 172 | 172 | try { |
@@ -176,30 +176,30 @@ discard block |
||
| 176 | 176 | $processors = apply_filters( |
| 177 | 177 | 'getpaid_payment_form_submission_processors', |
| 178 | 178 | array( |
| 179 | - array( $this, 'process_payment_form' ), |
|
| 180 | - array( $this, 'process_invoice' ), |
|
| 181 | - array( $this, 'process_fees' ), |
|
| 182 | - array( $this, 'process_items' ), |
|
| 183 | - array( $this, 'process_discount' ), |
|
| 184 | - array( $this, 'process_taxes' ), |
|
| 179 | + array($this, 'process_payment_form'), |
|
| 180 | + array($this, 'process_invoice'), |
|
| 181 | + array($this, 'process_fees'), |
|
| 182 | + array($this, 'process_items'), |
|
| 183 | + array($this, 'process_discount'), |
|
| 184 | + array($this, 'process_taxes'), |
|
| 185 | 185 | ), |
| 186 | 186 | $this |
| 187 | 187 | ); |
| 188 | 188 | |
| 189 | - foreach ( $processors as $processor ) { |
|
| 190 | - call_user_func_array( $processor, array( &$this ) ); |
|
| 189 | + foreach ($processors as $processor) { |
|
| 190 | + call_user_func_array($processor, array(&$this)); |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - } catch( GetPaid_Payment_Exception $e ) { |
|
| 193 | + } catch (GetPaid_Payment_Exception $e) { |
|
| 194 | 194 | $this->last_error = $e->getMessage(); |
| 195 | 195 | $this->last_error_code = $e->getErrorCode(); |
| 196 | - } catch ( Exception $e ) { |
|
| 196 | + } catch (Exception $e) { |
|
| 197 | 197 | $this->last_error = $e->getMessage(); |
| 198 | 198 | $this->last_error_code = $e->getCode(); |
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | // Fired when we are done processing a submission. |
| 202 | - do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
| 202 | + do_action_ref_array('getpaid_process_submission', array(&$this)); |
|
| 203 | 203 | |
| 204 | 204 | } |
| 205 | 205 | |
@@ -220,18 +220,18 @@ discard block |
||
| 220 | 220 | public function process_payment_form() { |
| 221 | 221 | |
| 222 | 222 | // Every submission needs an active payment form. |
| 223 | - if ( empty( $this->data['form_id'] ) ) { |
|
| 224 | - throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
| 223 | + if (empty($this->data['form_id'])) { |
|
| 224 | + throw new Exception(__('Missing payment form', 'invoicing')); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | // Fetch the payment form. |
| 228 | - $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
| 228 | + $this->payment_form = new GetPaid_Payment_Form($this->data['form_id']); |
|
| 229 | 229 | |
| 230 | - if ( ! $this->payment_form->is_active() ) { |
|
| 231 | - throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
| 230 | + if (!$this->payment_form->is_active()) { |
|
| 231 | + throw new Exception(__('Payment form not active', 'invoicing')); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | - do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
| 234 | + do_action_ref_array('getpaid_submissions_process_payment_form', array(&$this)); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -261,53 +261,53 @@ discard block |
||
| 261 | 261 | public function process_invoice() { |
| 262 | 262 | |
| 263 | 263 | // Abort if there is no invoice. |
| 264 | - if ( empty( $this->data['invoice_id'] ) ) { |
|
| 264 | + if (empty($this->data['invoice_id'])) { |
|
| 265 | 265 | return; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | // If the submission is for an existing invoice, ensure that it exists |
| 269 | 269 | // and that it is not paid for. |
| 270 | - $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
| 270 | + $invoice = wpinv_get_invoice($this->data['invoice_id']); |
|
| 271 | 271 | |
| 272 | - if ( empty( $invoice ) ) { |
|
| 273 | - throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
| 272 | + if (empty($invoice)) { |
|
| 273 | + throw new Exception(__('Invalid invoice', 'invoicing')); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - if ( $invoice->is_paid() ) { |
|
| 277 | - throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
| 276 | + if ($invoice->is_paid()) { |
|
| 277 | + throw new Exception(__('This invoice is already paid for.', 'invoicing')); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | $this->payment_form->invoice = $invoice; |
| 281 | - if ( ! $this->payment_form->is_default() ) { |
|
| 281 | + if (!$this->payment_form->is_default()) { |
|
| 282 | 282 | |
| 283 | 283 | $items = array(); |
| 284 | 284 | $item_ids = array(); |
| 285 | 285 | |
| 286 | - foreach ( $invoice->get_items() as $item ) { |
|
| 287 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 286 | + foreach ($invoice->get_items() as $item) { |
|
| 287 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 288 | 288 | $item_ids[] = $item->get_id(); |
| 289 | 289 | $items[] = $item; |
| 290 | 290 | } |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - foreach ( $this->payment_form->get_items() as $item ) { |
|
| 294 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 293 | + foreach ($this->payment_form->get_items() as $item) { |
|
| 294 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 295 | 295 | $item_ids[] = $item->get_id(); |
| 296 | 296 | $items[] = $item; |
| 297 | 297 | } |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - $this->payment_form->set_items( $items ); |
|
| 300 | + $this->payment_form->set_items($items); |
|
| 301 | 301 | |
| 302 | 302 | } else { |
| 303 | - $this->payment_form->set_items( $invoice->get_items() ); |
|
| 303 | + $this->payment_form->set_items($invoice->get_items()); |
|
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | $this->country = $invoice->get_country(); |
| 307 | 307 | $this->state = $invoice->get_state(); |
| 308 | 308 | $this->invoice = $invoice; |
| 309 | 309 | |
| 310 | - do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
| 310 | + do_action_ref_array('getpaid_submissions_process_invoice', array(&$this)); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | /** |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | * @return bool |
| 328 | 328 | */ |
| 329 | 329 | public function has_invoice() { |
| 330 | - return ! empty( $this->invoice ); |
|
| 330 | + return !empty($this->invoice); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | /* |
@@ -346,13 +346,13 @@ discard block |
||
| 346 | 346 | */ |
| 347 | 347 | public function process_items() { |
| 348 | 348 | |
| 349 | - $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
| 349 | + $processor = new GetPaid_Payment_Form_Submission_Items($this); |
|
| 350 | 350 | |
| 351 | - foreach ( $processor->items as $item ) { |
|
| 352 | - $this->add_item( $item ); |
|
| 351 | + foreach ($processor->items as $item) { |
|
| 352 | + $this->add_item($item); |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
| 355 | + do_action_ref_array('getpaid_submissions_process_items', array(&$this)); |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | /** |
@@ -361,20 +361,20 @@ discard block |
||
| 361 | 361 | * @since 1.0.19 |
| 362 | 362 | * @param GetPaid_Form_Item $item |
| 363 | 363 | */ |
| 364 | - public function add_item( $item ) { |
|
| 364 | + public function add_item($item) { |
|
| 365 | 365 | |
| 366 | 366 | // Make sure that it is available for purchase. |
| 367 | - if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
| 367 | + if (!$item->can_purchase() || isset($this->items[$item->get_id()])) { |
|
| 368 | 368 | return; |
| 369 | 369 | } |
| 370 | 370 | |
| 371 | 371 | // Each submission can only contain one recurring item. |
| 372 | - if ( $item->is_recurring() ) { |
|
| 372 | + if ($item->is_recurring()) { |
|
| 373 | 373 | $this->has_recurring = $item->get_id(); |
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | // Update the items and totals. |
| 377 | - $this->items[ $item->get_id() ] = $item; |
|
| 377 | + $this->items[$item->get_id()] = $item; |
|
| 378 | 378 | $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
| 379 | 379 | $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
| 380 | 380 | |
@@ -388,17 +388,17 @@ discard block |
||
| 388 | 388 | * |
| 389 | 389 | * @since 1.0.19 |
| 390 | 390 | */ |
| 391 | - public function remove_item( $item_id ) { |
|
| 391 | + public function remove_item($item_id) { |
|
| 392 | 392 | |
| 393 | - if ( isset( $this->items[ $item_id ] ) ) { |
|
| 394 | - $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
| 395 | - $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
| 393 | + if (isset($this->items[$item_id])) { |
|
| 394 | + $this->totals['subtotal']['initial'] -= $this->items[$item_id]->get_sub_total(); |
|
| 395 | + $this->totals['subtotal']['recurring'] -= $this->items[$item_id]->get_recurring_sub_total(); |
|
| 396 | 396 | |
| 397 | - if ( $this->items[ $item_id ]->is_recurring() ) { |
|
| 397 | + if ($this->items[$item_id]->is_recurring()) { |
|
| 398 | 398 | $this->has_recurring = 0; |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - unset( $this->items[ $item_id ] ); |
|
| 401 | + unset($this->items[$item_id]); |
|
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | } |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | */ |
| 411 | 411 | public function get_subtotal() { |
| 412 | 412 | |
| 413 | - if ( wpinv_prices_include_tax() ) { |
|
| 413 | + if (wpinv_prices_include_tax()) { |
|
| 414 | 414 | return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
| 415 | 415 | } |
| 416 | 416 | |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | */ |
| 425 | 425 | public function get_recurring_subtotal() { |
| 426 | 426 | |
| 427 | - if ( wpinv_prices_include_tax() ) { |
|
| 427 | + if (wpinv_prices_include_tax()) { |
|
| 428 | 428 | return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
| 429 | 429 | } |
| 430 | 430 | |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | * @return bool |
| 449 | 449 | */ |
| 450 | 450 | public function has_subscription_group() { |
| 451 | - return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
| 451 | + return $this->has_recurring && getpaid_should_group_subscriptions($this) && 1 == count(getpaid_get_subscription_groups($this)); |
|
| 452 | 452 | } |
| 453 | 453 | |
| 454 | 454 | /** |
@@ -458,7 +458,7 @@ discard block |
||
| 458 | 458 | * @return bool |
| 459 | 459 | */ |
| 460 | 460 | public function has_multiple_subscription_groups() { |
| 461 | - return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
| 461 | + return $this->has_recurring && 1 < count(getpaid_get_subscription_groups($this)); |
|
| 462 | 462 | } |
| 463 | 463 | |
| 464 | 464 | /* |
@@ -478,39 +478,39 @@ discard block |
||
| 478 | 478 | public function process_taxes() { |
| 479 | 479 | |
| 480 | 480 | // Abort if we're not using taxes. |
| 481 | - if ( ! $this->use_taxes() ) { |
|
| 481 | + if (!$this->use_taxes()) { |
|
| 482 | 482 | return; |
| 483 | 483 | } |
| 484 | 484 | |
| 485 | 485 | // If a custom country && state has been passed in, use it to calculate taxes. |
| 486 | - $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
| 487 | - if ( ! empty( $country ) ) { |
|
| 486 | + $country = $this->get_field('wpinv_country', 'billing'); |
|
| 487 | + if (!empty($country)) { |
|
| 488 | 488 | $this->country = $country; |
| 489 | 489 | } |
| 490 | 490 | |
| 491 | - $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
| 492 | - if ( ! empty( $state ) ) { |
|
| 491 | + $state = $this->get_field('wpinv_state', 'billing'); |
|
| 492 | + if (!empty($state)) { |
|
| 493 | 493 | $this->state = $state; |
| 494 | 494 | } |
| 495 | 495 | |
| 496 | 496 | // Confirm if the provided country and the ip country are similar. |
| 497 | - $address_confirmed = $this->get_field( 'confirm-address' ); |
|
| 498 | - if ( isset( $_POST['billing']['country'] ) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
| 499 | - throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
| 497 | + $address_confirmed = $this->get_field('confirm-address'); |
|
| 498 | + if (isset($_POST['billing']['country']) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty($address_confirmed)) { |
|
| 499 | + throw new Exception(__('The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing')); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | 502 | // Abort if the country is not taxable. |
| 503 | - if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
| 503 | + if (!wpinv_is_country_taxable($this->country)) { |
|
| 504 | 504 | return; |
| 505 | 505 | } |
| 506 | 506 | |
| 507 | - $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
| 507 | + $processor = new GetPaid_Payment_Form_Submission_Taxes($this); |
|
| 508 | 508 | |
| 509 | - foreach ( $processor->taxes as $tax ) { |
|
| 510 | - $this->add_tax( $tax ); |
|
| 509 | + foreach ($processor->taxes as $tax) { |
|
| 510 | + $this->add_tax($tax); |
|
| 511 | 511 | } |
| 512 | 512 | |
| 513 | - do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
| 513 | + do_action_ref_array('getpaid_submissions_process_taxes', array(&$this)); |
|
| 514 | 514 | } |
| 515 | 515 | |
| 516 | 516 | /** |
@@ -519,16 +519,16 @@ discard block |
||
| 519 | 519 | * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
| 520 | 520 | * @since 1.0.19 |
| 521 | 521 | */ |
| 522 | - public function add_tax( $tax ) { |
|
| 522 | + public function add_tax($tax) { |
|
| 523 | 523 | |
| 524 | - if ( wpinv_round_tax_per_tax_rate() ) { |
|
| 525 | - $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
| 526 | - $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
| 524 | + if (wpinv_round_tax_per_tax_rate()) { |
|
| 525 | + $tax['initial_tax'] = wpinv_round_amount($tax['initial_tax']); |
|
| 526 | + $tax['recurring_tax'] = wpinv_round_amount($tax['recurring_tax']); |
|
| 527 | 527 | } |
| 528 | 528 | |
| 529 | - $this->taxes[ $tax['name'] ] = $tax; |
|
| 530 | - $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
| 531 | - $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
| 529 | + $this->taxes[$tax['name']] = $tax; |
|
| 530 | + $this->totals['taxes']['initial'] += wpinv_sanitize_amount($tax['initial_tax']); |
|
| 531 | + $this->totals['taxes']['recurring'] += wpinv_sanitize_amount($tax['recurring_tax']); |
|
| 532 | 532 | |
| 533 | 533 | } |
| 534 | 534 | |
@@ -537,12 +537,12 @@ discard block |
||
| 537 | 537 | * |
| 538 | 538 | * @since 1.0.19 |
| 539 | 539 | */ |
| 540 | - public function remove_tax( $tax_name ) { |
|
| 540 | + public function remove_tax($tax_name) { |
|
| 541 | 541 | |
| 542 | - if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
| 543 | - $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
| 544 | - $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
| 545 | - unset( $this->taxes[ $tax_name ] ); |
|
| 542 | + if (isset($this->taxes[$tax_name])) { |
|
| 543 | + $this->totals['taxes']['initial'] -= $this->taxes[$tax_name]['initial_tax']; |
|
| 544 | + $this->totals['taxes']['recurring'] -= $this->taxes[$tax_name]['recurring_tax']; |
|
| 545 | + unset($this->taxes[$tax_name]); |
|
| 546 | 546 | } |
| 547 | 547 | |
| 548 | 548 | } |
@@ -556,11 +556,11 @@ discard block |
||
| 556 | 556 | |
| 557 | 557 | $use_taxes = wpinv_use_taxes(); |
| 558 | 558 | |
| 559 | - if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
| 559 | + if ($this->has_invoice() && !$this->invoice->is_taxable()) { |
|
| 560 | 560 | $use_taxes = false; |
| 561 | 561 | } |
| 562 | 562 | |
| 563 | - return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
| 563 | + return apply_filters('getpaid_submission_use_taxes', $use_taxes, $this); |
|
| 564 | 564 | |
| 565 | 565 | } |
| 566 | 566 | |
@@ -609,13 +609,13 @@ discard block |
||
| 609 | 609 | |
| 610 | 610 | $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
| 611 | 611 | $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
| 612 | - $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
| 612 | + $processor = new GetPaid_Payment_Form_Submission_Discount($this, $initial_total, $recurring_total); |
|
| 613 | 613 | |
| 614 | - foreach ( $processor->discounts as $discount ) { |
|
| 615 | - $this->add_discount( $discount ); |
|
| 614 | + foreach ($processor->discounts as $discount) { |
|
| 615 | + $this->add_discount($discount); |
|
| 616 | 616 | } |
| 617 | 617 | |
| 618 | - do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
| 618 | + do_action_ref_array('getpaid_submissions_process_discounts', array(&$this)); |
|
| 619 | 619 | } |
| 620 | 620 | |
| 621 | 621 | /** |
@@ -624,10 +624,10 @@ discard block |
||
| 624 | 624 | * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
| 625 | 625 | * @since 1.0.19 |
| 626 | 626 | */ |
| 627 | - public function add_discount( $discount ) { |
|
| 628 | - $this->discounts[ $discount['name'] ] = $discount; |
|
| 629 | - $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
| 630 | - $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
| 627 | + public function add_discount($discount) { |
|
| 628 | + $this->discounts[$discount['name']] = $discount; |
|
| 629 | + $this->totals['discount']['initial'] += wpinv_sanitize_amount($discount['initial_discount']); |
|
| 630 | + $this->totals['discount']['recurring'] += wpinv_sanitize_amount($discount['recurring_discount']); |
|
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | /** |
@@ -635,12 +635,12 @@ discard block |
||
| 635 | 635 | * |
| 636 | 636 | * @since 1.0.19 |
| 637 | 637 | */ |
| 638 | - public function remove_discount( $name ) { |
|
| 638 | + public function remove_discount($name) { |
|
| 639 | 639 | |
| 640 | - if ( isset( $this->discounts[ $name ] ) ) { |
|
| 641 | - $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
| 642 | - $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
| 643 | - unset( $this->discounts[ $name ] ); |
|
| 640 | + if (isset($this->discounts[$name])) { |
|
| 641 | + $this->totals['discount']['initial'] -= $this->discounts[$name]['initial_discount']; |
|
| 642 | + $this->totals['discount']['recurring'] -= $this->discounts[$name]['recurring_discount']; |
|
| 643 | + unset($this->discounts[$name]); |
|
| 644 | 644 | } |
| 645 | 645 | |
| 646 | 646 | } |
@@ -652,7 +652,7 @@ discard block |
||
| 652 | 652 | * @return bool |
| 653 | 653 | */ |
| 654 | 654 | public function has_discount_code() { |
| 655 | - return ! empty( $this->discounts['discount_code'] ); |
|
| 655 | + return !empty($this->discounts['discount_code']); |
|
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | /** |
@@ -709,13 +709,13 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | public function process_fees() { |
| 711 | 711 | |
| 712 | - $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
| 712 | + $fees_processor = new GetPaid_Payment_Form_Submission_Fees($this); |
|
| 713 | 713 | |
| 714 | - foreach ( $fees_processor->fees as $fee ) { |
|
| 715 | - $this->add_fee( $fee ); |
|
| 714 | + foreach ($fees_processor->fees as $fee) { |
|
| 715 | + $this->add_fee($fee); |
|
| 716 | 716 | } |
| 717 | 717 | |
| 718 | - do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
| 718 | + do_action_ref_array('getpaid_submissions_process_fees', array(&$this)); |
|
| 719 | 719 | } |
| 720 | 720 | |
| 721 | 721 | /** |
@@ -724,17 +724,17 @@ discard block |
||
| 724 | 724 | * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
| 725 | 725 | * @since 1.0.19 |
| 726 | 726 | */ |
| 727 | - public function add_fee( $fee ) { |
|
| 727 | + public function add_fee($fee) { |
|
| 728 | 728 | |
| 729 | - if ( $fee['name'] == 'shipping' ) { |
|
| 730 | - $this->totals['shipping']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 731 | - $this->totals['shipping']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 729 | + if ($fee['name'] == 'shipping') { |
|
| 730 | + $this->totals['shipping']['initial'] += wpinv_sanitize_amount($fee['initial_fee']); |
|
| 731 | + $this->totals['shipping']['recurring'] += wpinv_sanitize_amount($fee['recurring_fee']); |
|
| 732 | 732 | return; |
| 733 | 733 | } |
| 734 | 734 | |
| 735 | - $this->fees[ $fee['name'] ] = $fee; |
|
| 736 | - $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
| 737 | - $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
| 735 | + $this->fees[$fee['name']] = $fee; |
|
| 736 | + $this->totals['fees']['initial'] += wpinv_sanitize_amount($fee['initial_fee']); |
|
| 737 | + $this->totals['fees']['recurring'] += wpinv_sanitize_amount($fee['recurring_fee']); |
|
| 738 | 738 | |
| 739 | 739 | } |
| 740 | 740 | |
@@ -743,15 +743,15 @@ discard block |
||
| 743 | 743 | * |
| 744 | 744 | * @since 1.0.19 |
| 745 | 745 | */ |
| 746 | - public function remove_fee( $name ) { |
|
| 746 | + public function remove_fee($name) { |
|
| 747 | 747 | |
| 748 | - if ( isset( $this->fees[ $name ] ) ) { |
|
| 749 | - $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
| 750 | - $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
| 751 | - unset( $this->fees[ $name ] ); |
|
| 748 | + if (isset($this->fees[$name])) { |
|
| 749 | + $this->totals['fees']['initial'] -= $this->fees[$name]['initial_fee']; |
|
| 750 | + $this->totals['fees']['recurring'] -= $this->fees[$name]['recurring_fee']; |
|
| 751 | + unset($this->fees[$name]); |
|
| 752 | 752 | } |
| 753 | 753 | |
| 754 | - if ( 'shipping' == $name ) { |
|
| 754 | + if ('shipping' == $name) { |
|
| 755 | 755 | $this->totals['shipping']['initial'] = 0; |
| 756 | 756 | $this->totals['shipping']['recurring'] = 0; |
| 757 | 757 | } |
@@ -792,7 +792,7 @@ discard block |
||
| 792 | 792 | * @since 1.0.19 |
| 793 | 793 | */ |
| 794 | 794 | public function has_fees() { |
| 795 | - return count( $this->fees ) !== 0; |
|
| 795 | + return count($this->fees) !== 0; |
|
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | /* |
@@ -828,7 +828,7 @@ discard block |
||
| 828 | 828 | * @since 1.0.19 |
| 829 | 829 | */ |
| 830 | 830 | public function has_shipping() { |
| 831 | - return apply_filters( 'getpaid_payment_form_has_shipping', false, $this ); |
|
| 831 | + return apply_filters('getpaid_payment_form_has_shipping', false, $this); |
|
| 832 | 832 | } |
| 833 | 833 | |
| 834 | 834 | /** |
@@ -838,7 +838,7 @@ discard block |
||
| 838 | 838 | * @since 1.0.19 |
| 839 | 839 | */ |
| 840 | 840 | public function is_initial_fetch() { |
| 841 | - return empty( $this->data['initial_state'] ); |
|
| 841 | + return empty($this->data['initial_state']); |
|
| 842 | 842 | } |
| 843 | 843 | |
| 844 | 844 | /** |
@@ -848,7 +848,7 @@ discard block |
||
| 848 | 848 | */ |
| 849 | 849 | public function get_total() { |
| 850 | 850 | $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() + $this->get_shipping() - $this->get_discount(); |
| 851 | - return max( $total, 0 ); |
|
| 851 | + return max($total, 0); |
|
| 852 | 852 | } |
| 853 | 853 | |
| 854 | 854 | /** |
@@ -858,7 +858,7 @@ discard block |
||
| 858 | 858 | */ |
| 859 | 859 | public function get_recurring_total() { |
| 860 | 860 | $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() + $this->get_recurring_shipping() - $this->get_recurring_discount(); |
| 861 | - return max( $total, 0 ); |
|
| 861 | + return max($total, 0); |
|
| 862 | 862 | } |
| 863 | 863 | |
| 864 | 864 | /** |
@@ -870,12 +870,12 @@ discard block |
||
| 870 | 870 | $initial = $this->get_total(); |
| 871 | 871 | $recurring = $this->get_recurring_total(); |
| 872 | 872 | |
| 873 | - if ( $this->has_recurring == 0 ) { |
|
| 873 | + if ($this->has_recurring == 0) { |
|
| 874 | 874 | $recurring = 0; |
| 875 | 875 | } |
| 876 | 876 | |
| 877 | 877 | $collect = $initial > 0 || $recurring > 0; |
| 878 | - return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
| 878 | + return apply_filters('getpaid_submission_should_collect_payment_details', $collect, $this); |
|
| 879 | 879 | } |
| 880 | 880 | |
| 881 | 881 | /** |
@@ -884,7 +884,7 @@ discard block |
||
| 884 | 884 | * @since 1.0.19 |
| 885 | 885 | */ |
| 886 | 886 | public function get_billing_email() { |
| 887 | - return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
| 887 | + return apply_filters('getpaid_get_submission_billing_email', $this->get_field('billing_email'), $this); |
|
| 888 | 888 | } |
| 889 | 889 | |
| 890 | 890 | /** |
@@ -894,7 +894,7 @@ discard block |
||
| 894 | 894 | */ |
| 895 | 895 | public function has_billing_email() { |
| 896 | 896 | $billing_email = $this->get_billing_email(); |
| 897 | - return ! empty( $billing_email ) && is_email( $billing_email ); |
|
| 897 | + return !empty($billing_email) && is_email($billing_email); |
|
| 898 | 898 | } |
| 899 | 899 | |
| 900 | 900 | /** |
@@ -924,8 +924,8 @@ discard block |
||
| 924 | 924 | * @since 1.0.19 |
| 925 | 925 | * @return mixed|null |
| 926 | 926 | */ |
| 927 | - public function get_field( $field, $sub_array_key = null ) { |
|
| 928 | - return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
| 927 | + public function get_field($field, $sub_array_key = null) { |
|
| 928 | + return getpaid_get_array_field($this->data, $field, $sub_array_key); |
|
| 929 | 929 | } |
| 930 | 930 | |
| 931 | 931 | /** |
@@ -933,8 +933,8 @@ discard block |
||
| 933 | 933 | * |
| 934 | 934 | * @since 1.0.19 |
| 935 | 935 | */ |
| 936 | - public function is_required_field_set( $field ) { |
|
| 937 | - return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
| 936 | + public function is_required_field_set($field) { |
|
| 937 | + return empty($field['required']) || !empty($this->data[$field['id']]); |
|
| 938 | 938 | } |
| 939 | 939 | |
| 940 | 940 | /** |
@@ -942,8 +942,8 @@ discard block |
||
| 942 | 942 | * |
| 943 | 943 | * @since 1.0.19 |
| 944 | 944 | */ |
| 945 | - public function format_amount( $amount ) { |
|
| 946 | - return wpinv_price( $amount, $this->get_currency() ); |
|
| 945 | + public function format_amount($amount) { |
|
| 946 | + return wpinv_price($amount, $this->get_currency()); |
|
| 947 | 947 | } |
| 948 | 948 | |
| 949 | 949 | } |
@@ -14,621 +14,621 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | class WPInv_Plugin { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * GetPaid version. |
|
| 19 | - * |
|
| 20 | - * @var string |
|
| 21 | - */ |
|
| 22 | - public $version; |
|
| 23 | - |
|
| 24 | - /** |
|
| 25 | - * Data container. |
|
| 26 | - * |
|
| 27 | - * @var array |
|
| 28 | - */ |
|
| 29 | - protected $data = array(); |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * Form elements instance. |
|
| 33 | - * |
|
| 34 | - * @var WPInv_Payment_Form_Elements |
|
| 35 | - */ |
|
| 36 | - public $form_elements; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * @var array An array of payment gateways. |
|
| 40 | - */ |
|
| 41 | - public $gateways; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Class constructor. |
|
| 45 | - */ |
|
| 46 | - public function __construct() { |
|
| 47 | - $this->define_constants(); |
|
| 48 | - $this->includes(); |
|
| 49 | - $this->init_hooks(); |
|
| 50 | - $this->set_properties(); |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Sets a custom data property. |
|
| 55 | - * |
|
| 56 | - * @param string $prop The prop to set. |
|
| 57 | - * @param mixed $value The value to retrieve. |
|
| 58 | - */ |
|
| 59 | - public function set( $prop, $value ) { |
|
| 60 | - $this->data[ $prop ] = $value; |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * Gets a custom data property. |
|
| 65 | - * |
|
| 66 | - * @param string $prop The prop to set. |
|
| 67 | - * @return mixed The value. |
|
| 68 | - */ |
|
| 69 | - public function get( $prop ) { |
|
| 70 | - |
|
| 71 | - if ( isset( $this->data[ $prop ] ) ) { |
|
| 72 | - return $this->data[ $prop ]; |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - return null; |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * Define class properties. |
|
| 80 | - */ |
|
| 81 | - public function set_properties() { |
|
| 82 | - |
|
| 83 | - // Sessions. |
|
| 84 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
| 85 | - $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
| 86 | - $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
|
| 87 | - |
|
| 88 | - // Init other objects. |
|
| 89 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
| 90 | - $this->set( 'notes', new WPInv_Notes() ); |
|
| 91 | - $this->set( 'api', new WPInv_API() ); |
|
| 92 | - $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
| 93 | - $this->set( 'template', new GetPaid_Template() ); |
|
| 94 | - $this->set( 'admin', new GetPaid_Admin() ); |
|
| 95 | - $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
| 96 | - $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
| 97 | - $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
| 98 | - $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
| 99 | - $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
| 100 | - $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
| 101 | - |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - /** |
|
| 105 | - * Define plugin constants. |
|
| 106 | - */ |
|
| 107 | - public function define_constants() { |
|
| 108 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
| 109 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
| 110 | - $this->version = WPINV_VERSION; |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - /** |
|
| 114 | - * Hook into actions and filters. |
|
| 115 | - * |
|
| 116 | - * @since 1.0.19 |
|
| 117 | - */ |
|
| 118 | - protected function init_hooks() { |
|
| 119 | - /* Internationalize the text strings used. */ |
|
| 120 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
| 121 | - |
|
| 122 | - // Init the plugin after WordPress inits. |
|
| 123 | - add_action( 'init', array( $this, 'init' ), 1 ); |
|
| 124 | - add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
| 125 | - add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
| 126 | - add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
| 127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
| 128 | - add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
| 129 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
| 130 | - add_action( 'widgets_init', array( $this, 'register_widgets' ) ); |
|
| 131 | - add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
| 132 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
| 133 | - |
|
| 134 | - add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
| 17 | + /** |
|
| 18 | + * GetPaid version. |
|
| 19 | + * |
|
| 20 | + * @var string |
|
| 21 | + */ |
|
| 22 | + public $version; |
|
| 23 | + |
|
| 24 | + /** |
|
| 25 | + * Data container. |
|
| 26 | + * |
|
| 27 | + * @var array |
|
| 28 | + */ |
|
| 29 | + protected $data = array(); |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * Form elements instance. |
|
| 33 | + * |
|
| 34 | + * @var WPInv_Payment_Form_Elements |
|
| 35 | + */ |
|
| 36 | + public $form_elements; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * @var array An array of payment gateways. |
|
| 40 | + */ |
|
| 41 | + public $gateways; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Class constructor. |
|
| 45 | + */ |
|
| 46 | + public function __construct() { |
|
| 47 | + $this->define_constants(); |
|
| 48 | + $this->includes(); |
|
| 49 | + $this->init_hooks(); |
|
| 50 | + $this->set_properties(); |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Sets a custom data property. |
|
| 55 | + * |
|
| 56 | + * @param string $prop The prop to set. |
|
| 57 | + * @param mixed $value The value to retrieve. |
|
| 58 | + */ |
|
| 59 | + public function set( $prop, $value ) { |
|
| 60 | + $this->data[ $prop ] = $value; |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * Gets a custom data property. |
|
| 65 | + * |
|
| 66 | + * @param string $prop The prop to set. |
|
| 67 | + * @return mixed The value. |
|
| 68 | + */ |
|
| 69 | + public function get( $prop ) { |
|
| 70 | + |
|
| 71 | + if ( isset( $this->data[ $prop ] ) ) { |
|
| 72 | + return $this->data[ $prop ]; |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + return null; |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * Define class properties. |
|
| 80 | + */ |
|
| 81 | + public function set_properties() { |
|
| 82 | + |
|
| 83 | + // Sessions. |
|
| 84 | + $this->set( 'session', new WPInv_Session_Handler() ); |
|
| 85 | + $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
| 86 | + $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
|
| 87 | + |
|
| 88 | + // Init other objects. |
|
| 89 | + $this->set( 'session', new WPInv_Session_Handler() ); |
|
| 90 | + $this->set( 'notes', new WPInv_Notes() ); |
|
| 91 | + $this->set( 'api', new WPInv_API() ); |
|
| 92 | + $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
| 93 | + $this->set( 'template', new GetPaid_Template() ); |
|
| 94 | + $this->set( 'admin', new GetPaid_Admin() ); |
|
| 95 | + $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
| 96 | + $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
| 97 | + $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
| 98 | + $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
| 99 | + $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
| 100 | + $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
| 101 | + |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + /** |
|
| 105 | + * Define plugin constants. |
|
| 106 | + */ |
|
| 107 | + public function define_constants() { |
|
| 108 | + define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
| 109 | + define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
| 110 | + $this->version = WPINV_VERSION; |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + /** |
|
| 114 | + * Hook into actions and filters. |
|
| 115 | + * |
|
| 116 | + * @since 1.0.19 |
|
| 117 | + */ |
|
| 118 | + protected function init_hooks() { |
|
| 119 | + /* Internationalize the text strings used. */ |
|
| 120 | + add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
| 121 | + |
|
| 122 | + // Init the plugin after WordPress inits. |
|
| 123 | + add_action( 'init', array( $this, 'init' ), 1 ); |
|
| 124 | + add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
| 125 | + add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
| 126 | + add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
| 127 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
| 128 | + add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
| 129 | + add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
| 130 | + add_action( 'widgets_init', array( $this, 'register_widgets' ) ); |
|
| 131 | + add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
| 132 | + add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
| 133 | + |
|
| 134 | + add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
| 135 | 135 | add_action( 'init', array( $this, 'add_rewrite_rule' ), 10, 0 ); |
| 136 | - add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
| 137 | - |
|
| 138 | - // Fires after registering actions. |
|
| 139 | - do_action( 'wpinv_actions', $this ); |
|
| 140 | - do_action( 'getpaid_actions', $this ); |
|
| 141 | - |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - public function plugins_loaded() { |
|
| 145 | - /* Internationalize the text strings used. */ |
|
| 146 | - $this->load_textdomain(); |
|
| 147 | - |
|
| 148 | - do_action( 'wpinv_loaded' ); |
|
| 149 | - |
|
| 150 | - // Fix oxygen page builder conflict |
|
| 151 | - if ( function_exists( 'ct_css_output' ) ) { |
|
| 152 | - wpinv_oxygen_fix_conflict(); |
|
| 153 | - } |
|
| 154 | - } |
|
| 155 | - |
|
| 156 | - /** |
|
| 157 | - * Load Localisation files. |
|
| 158 | - * |
|
| 159 | - * Note: the first-loaded translation file overrides any following ones if the same translation is present. |
|
| 160 | - * |
|
| 161 | - * Locales found in: |
|
| 162 | - * - WP_LANG_DIR/plugins/invoicing-LOCALE.mo |
|
| 163 | - * - WP_PLUGIN_DIR/invoicing/languages/invoicing-LOCALE.mo |
|
| 164 | - * |
|
| 165 | - * @since 1.0.0 |
|
| 166 | - */ |
|
| 167 | - public function load_textdomain() { |
|
| 168 | - |
|
| 169 | - load_plugin_textdomain( |
|
| 170 | - 'invoicing', |
|
| 171 | - false, |
|
| 172 | - plugin_basename( dirname( WPINV_PLUGIN_FILE ) ) . '/languages/' |
|
| 173 | - ); |
|
| 174 | - |
|
| 175 | - } |
|
| 176 | - |
|
| 177 | - /** |
|
| 178 | - * Include required core files used in admin and on the frontend. |
|
| 179 | - */ |
|
| 180 | - public function includes() { |
|
| 181 | - |
|
| 182 | - // Start with the settings. |
|
| 183 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
| 184 | - |
|
| 185 | - // Packages/libraries. |
|
| 186 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
| 187 | - require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
| 188 | - |
|
| 189 | - // Load functions. |
|
| 190 | - require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
| 191 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
| 192 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
| 193 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
| 194 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
| 195 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
| 196 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
| 197 | - require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
| 198 | - require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
| 199 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
| 200 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
| 201 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
| 202 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
| 203 | - require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
| 204 | - require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
| 205 | - |
|
| 206 | - // Register autoloader. |
|
| 207 | - try { |
|
| 208 | - spl_autoload_register( array( $this, 'autoload' ), true ); |
|
| 209 | - } catch ( Exception $e ) { |
|
| 210 | - wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
| 211 | - } |
|
| 212 | - |
|
| 213 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
| 214 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
| 215 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
| 216 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
| 217 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
| 218 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
| 219 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
| 220 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
| 221 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
| 222 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
| 223 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
| 224 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
| 225 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
| 226 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
| 227 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
| 228 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
| 229 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
| 230 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
| 231 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
| 232 | - require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
| 233 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice.php' ); |
|
| 234 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
| 235 | - |
|
| 236 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
| 237 | - GetPaid_Post_Types_Admin::init(); |
|
| 238 | - |
|
| 239 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
| 240 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
| 241 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
| 242 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
| 243 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
| 244 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
| 245 | - // load the user class only on the users.php page |
|
| 246 | - global $pagenow; |
|
| 247 | - if($pagenow=='users.php'){ |
|
| 248 | - new WPInv_Admin_Users(); |
|
| 249 | - } |
|
| 250 | - } |
|
| 251 | - |
|
| 252 | - // Register cli commands |
|
| 253 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
| 254 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
| 255 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
| 256 | - } |
|
| 257 | - |
|
| 258 | - } |
|
| 259 | - |
|
| 260 | - /** |
|
| 261 | - * Class autoloader |
|
| 262 | - * |
|
| 263 | - * @param string $class_name The name of the class to load. |
|
| 264 | - * @access public |
|
| 265 | - * @since 1.0.19 |
|
| 266 | - * @return void |
|
| 267 | - */ |
|
| 268 | - public function autoload( $class_name ) { |
|
| 269 | - |
|
| 270 | - // Normalize the class name... |
|
| 271 | - $class_name = strtolower( $class_name ); |
|
| 272 | - |
|
| 273 | - // ... and make sure it is our class. |
|
| 274 | - if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
| 275 | - return; |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - // Next, prepare the file name from the class. |
|
| 279 | - $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
| 280 | - |
|
| 281 | - // Base path of the classes. |
|
| 282 | - $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
| 283 | - |
|
| 284 | - // And an array of possible locations in order of importance. |
|
| 285 | - $locations = array( |
|
| 286 | - "$plugin_path/includes", |
|
| 287 | - "$plugin_path/includes/data-stores", |
|
| 288 | - "$plugin_path/includes/gateways", |
|
| 289 | - "$plugin_path/includes/payments", |
|
| 290 | - "$plugin_path/includes/geolocation", |
|
| 291 | - "$plugin_path/includes/reports", |
|
| 292 | - "$plugin_path/includes/api", |
|
| 293 | - "$plugin_path/includes/admin", |
|
| 294 | - "$plugin_path/includes/admin/meta-boxes", |
|
| 295 | - ); |
|
| 296 | - |
|
| 297 | - foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
| 298 | - |
|
| 299 | - if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
| 300 | - include trailingslashit( $location ) . $file_name; |
|
| 301 | - break; |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - } |
|
| 305 | - |
|
| 306 | - } |
|
| 307 | - |
|
| 308 | - /** |
|
| 309 | - * Inits hooks etc. |
|
| 310 | - */ |
|
| 311 | - public function init() { |
|
| 312 | - |
|
| 313 | - // Fires before getpaid inits. |
|
| 314 | - do_action( 'before_getpaid_init', $this ); |
|
| 315 | - |
|
| 316 | - // Maybe upgrade. |
|
| 317 | - $this->maybe_upgrade_database(); |
|
| 318 | - |
|
| 319 | - // Load default gateways. |
|
| 320 | - $gateways = apply_filters( |
|
| 321 | - 'getpaid_default_gateways', |
|
| 322 | - array( |
|
| 323 | - 'manual' => 'GetPaid_Manual_Gateway', |
|
| 324 | - 'paypal' => 'GetPaid_Paypal_Gateway', |
|
| 325 | - 'worldpay' => 'GetPaid_Worldpay_Gateway', |
|
| 326 | - 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
|
| 327 | - 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
|
| 328 | - ) |
|
| 329 | - ); |
|
| 330 | - |
|
| 331 | - foreach ( $gateways as $id => $class ) { |
|
| 332 | - $this->gateways[ $id ] = new $class(); |
|
| 333 | - } |
|
| 334 | - |
|
| 335 | - if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
| 336 | - GetPaid_Installer::rename_gateways_label(); |
|
| 337 | - update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - // Fires after getpaid inits. |
|
| 341 | - do_action( 'getpaid_init', $this ); |
|
| 342 | - |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - /** |
|
| 346 | - * Checks if this is an IPN request and processes it. |
|
| 347 | - */ |
|
| 348 | - public function maybe_process_ipn() { |
|
| 349 | - |
|
| 350 | - // Ensure that this is an IPN request. |
|
| 351 | - if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
| 352 | - return; |
|
| 353 | - } |
|
| 354 | - |
|
| 355 | - $gateway = sanitize_text_field( $_GET['wpi-gateway'] ); |
|
| 356 | - |
|
| 357 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
| 358 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
| 359 | - exit; |
|
| 360 | - |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - public function enqueue_scripts() { |
|
| 364 | - |
|
| 365 | - // Fires before adding scripts. |
|
| 366 | - do_action( 'getpaid_enqueue_scripts' ); |
|
| 367 | - |
|
| 368 | - $localize = array(); |
|
| 369 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
| 370 | - $localize['thousands'] = wpinv_thousands_separator(); |
|
| 371 | - $localize['decimals'] = wpinv_decimal_separator(); |
|
| 372 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
| 373 | - $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
| 374 | - $localize['UseTaxes'] = wpinv_use_taxes(); |
|
| 375 | - $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
| 376 | - $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
| 377 | - $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
| 378 | - |
|
| 379 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
| 380 | - |
|
| 381 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
| 382 | - wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
| 383 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - public function wpinv_actions() { |
|
| 387 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
| 388 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
| 389 | - } |
|
| 390 | - |
|
| 391 | - if ( defined( 'WP_ALL_IMPORT_ROOT_DIR' ) ) { |
|
| 392 | - include plugin_dir_path( __FILE__ ) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
| 393 | - } |
|
| 394 | - } |
|
| 136 | + add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
| 137 | + |
|
| 138 | + // Fires after registering actions. |
|
| 139 | + do_action( 'wpinv_actions', $this ); |
|
| 140 | + do_action( 'getpaid_actions', $this ); |
|
| 141 | + |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + public function plugins_loaded() { |
|
| 145 | + /* Internationalize the text strings used. */ |
|
| 146 | + $this->load_textdomain(); |
|
| 147 | + |
|
| 148 | + do_action( 'wpinv_loaded' ); |
|
| 149 | + |
|
| 150 | + // Fix oxygen page builder conflict |
|
| 151 | + if ( function_exists( 'ct_css_output' ) ) { |
|
| 152 | + wpinv_oxygen_fix_conflict(); |
|
| 153 | + } |
|
| 154 | + } |
|
| 155 | + |
|
| 156 | + /** |
|
| 157 | + * Load Localisation files. |
|
| 158 | + * |
|
| 159 | + * Note: the first-loaded translation file overrides any following ones if the same translation is present. |
|
| 160 | + * |
|
| 161 | + * Locales found in: |
|
| 162 | + * - WP_LANG_DIR/plugins/invoicing-LOCALE.mo |
|
| 163 | + * - WP_PLUGIN_DIR/invoicing/languages/invoicing-LOCALE.mo |
|
| 164 | + * |
|
| 165 | + * @since 1.0.0 |
|
| 166 | + */ |
|
| 167 | + public function load_textdomain() { |
|
| 168 | + |
|
| 169 | + load_plugin_textdomain( |
|
| 170 | + 'invoicing', |
|
| 171 | + false, |
|
| 172 | + plugin_basename( dirname( WPINV_PLUGIN_FILE ) ) . '/languages/' |
|
| 173 | + ); |
|
| 174 | + |
|
| 175 | + } |
|
| 176 | + |
|
| 177 | + /** |
|
| 178 | + * Include required core files used in admin and on the frontend. |
|
| 179 | + */ |
|
| 180 | + public function includes() { |
|
| 181 | + |
|
| 182 | + // Start with the settings. |
|
| 183 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
| 184 | + |
|
| 185 | + // Packages/libraries. |
|
| 186 | + require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
| 187 | + require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
| 188 | + |
|
| 189 | + // Load functions. |
|
| 190 | + require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
| 191 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
| 192 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
| 193 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
| 194 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
| 195 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
| 196 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
| 197 | + require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
| 198 | + require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
| 199 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
| 200 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
| 201 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
| 202 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
| 203 | + require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
| 204 | + require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
| 205 | + |
|
| 206 | + // Register autoloader. |
|
| 207 | + try { |
|
| 208 | + spl_autoload_register( array( $this, 'autoload' ), true ); |
|
| 209 | + } catch ( Exception $e ) { |
|
| 210 | + wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
| 211 | + } |
|
| 212 | + |
|
| 213 | + require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
| 214 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
| 215 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
| 216 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
| 217 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
| 218 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
| 219 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
| 220 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
| 221 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
| 222 | + require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
| 223 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
| 224 | + require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
| 225 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
| 226 | + require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
| 227 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
| 228 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
| 229 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
| 230 | + require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
| 231 | + require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
| 232 | + require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
| 233 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice.php' ); |
|
| 234 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
| 235 | + |
|
| 236 | + if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
| 237 | + GetPaid_Post_Types_Admin::init(); |
|
| 238 | + |
|
| 239 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
| 240 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
| 241 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
| 242 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
| 243 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
| 244 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
| 245 | + // load the user class only on the users.php page |
|
| 246 | + global $pagenow; |
|
| 247 | + if($pagenow=='users.php'){ |
|
| 248 | + new WPInv_Admin_Users(); |
|
| 249 | + } |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + // Register cli commands |
|
| 253 | + if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
| 254 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
| 255 | + WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
| 256 | + } |
|
| 257 | + |
|
| 258 | + } |
|
| 259 | + |
|
| 260 | + /** |
|
| 261 | + * Class autoloader |
|
| 262 | + * |
|
| 263 | + * @param string $class_name The name of the class to load. |
|
| 264 | + * @access public |
|
| 265 | + * @since 1.0.19 |
|
| 266 | + * @return void |
|
| 267 | + */ |
|
| 268 | + public function autoload( $class_name ) { |
|
| 269 | + |
|
| 270 | + // Normalize the class name... |
|
| 271 | + $class_name = strtolower( $class_name ); |
|
| 272 | + |
|
| 273 | + // ... and make sure it is our class. |
|
| 274 | + if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
| 275 | + return; |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + // Next, prepare the file name from the class. |
|
| 279 | + $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
| 280 | + |
|
| 281 | + // Base path of the classes. |
|
| 282 | + $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
| 283 | + |
|
| 284 | + // And an array of possible locations in order of importance. |
|
| 285 | + $locations = array( |
|
| 286 | + "$plugin_path/includes", |
|
| 287 | + "$plugin_path/includes/data-stores", |
|
| 288 | + "$plugin_path/includes/gateways", |
|
| 289 | + "$plugin_path/includes/payments", |
|
| 290 | + "$plugin_path/includes/geolocation", |
|
| 291 | + "$plugin_path/includes/reports", |
|
| 292 | + "$plugin_path/includes/api", |
|
| 293 | + "$plugin_path/includes/admin", |
|
| 294 | + "$plugin_path/includes/admin/meta-boxes", |
|
| 295 | + ); |
|
| 296 | + |
|
| 297 | + foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
| 298 | + |
|
| 299 | + if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
| 300 | + include trailingslashit( $location ) . $file_name; |
|
| 301 | + break; |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + } |
|
| 305 | + |
|
| 306 | + } |
|
| 307 | + |
|
| 308 | + /** |
|
| 309 | + * Inits hooks etc. |
|
| 310 | + */ |
|
| 311 | + public function init() { |
|
| 312 | + |
|
| 313 | + // Fires before getpaid inits. |
|
| 314 | + do_action( 'before_getpaid_init', $this ); |
|
| 315 | + |
|
| 316 | + // Maybe upgrade. |
|
| 317 | + $this->maybe_upgrade_database(); |
|
| 318 | + |
|
| 319 | + // Load default gateways. |
|
| 320 | + $gateways = apply_filters( |
|
| 321 | + 'getpaid_default_gateways', |
|
| 322 | + array( |
|
| 323 | + 'manual' => 'GetPaid_Manual_Gateway', |
|
| 324 | + 'paypal' => 'GetPaid_Paypal_Gateway', |
|
| 325 | + 'worldpay' => 'GetPaid_Worldpay_Gateway', |
|
| 326 | + 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
|
| 327 | + 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
|
| 328 | + ) |
|
| 329 | + ); |
|
| 330 | + |
|
| 331 | + foreach ( $gateways as $id => $class ) { |
|
| 332 | + $this->gateways[ $id ] = new $class(); |
|
| 333 | + } |
|
| 334 | + |
|
| 335 | + if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
| 336 | + GetPaid_Installer::rename_gateways_label(); |
|
| 337 | + update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + // Fires after getpaid inits. |
|
| 341 | + do_action( 'getpaid_init', $this ); |
|
| 342 | + |
|
| 343 | + } |
|
| 395 | 344 | |
| 396 | - /** |
|
| 345 | + /** |
|
| 346 | + * Checks if this is an IPN request and processes it. |
|
| 347 | + */ |
|
| 348 | + public function maybe_process_ipn() { |
|
| 349 | + |
|
| 350 | + // Ensure that this is an IPN request. |
|
| 351 | + if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
| 352 | + return; |
|
| 353 | + } |
|
| 354 | + |
|
| 355 | + $gateway = sanitize_text_field( $_GET['wpi-gateway'] ); |
|
| 356 | + |
|
| 357 | + do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
| 358 | + do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
| 359 | + exit; |
|
| 360 | + |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + public function enqueue_scripts() { |
|
| 364 | + |
|
| 365 | + // Fires before adding scripts. |
|
| 366 | + do_action( 'getpaid_enqueue_scripts' ); |
|
| 367 | + |
|
| 368 | + $localize = array(); |
|
| 369 | + $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
| 370 | + $localize['thousands'] = wpinv_thousands_separator(); |
|
| 371 | + $localize['decimals'] = wpinv_decimal_separator(); |
|
| 372 | + $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
| 373 | + $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
| 374 | + $localize['UseTaxes'] = wpinv_use_taxes(); |
|
| 375 | + $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
| 376 | + $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
| 377 | + $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
| 378 | + |
|
| 379 | + $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
| 380 | + |
|
| 381 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
| 382 | + wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
| 383 | + wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + public function wpinv_actions() { |
|
| 387 | + if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
| 388 | + do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
| 389 | + } |
|
| 390 | + |
|
| 391 | + if ( defined( 'WP_ALL_IMPORT_ROOT_DIR' ) ) { |
|
| 392 | + include plugin_dir_path( __FILE__ ) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
| 393 | + } |
|
| 394 | + } |
|
| 395 | + |
|
| 396 | + /** |
|
| 397 | 397 | * Fires an action after verifying that a user can fire them. |
| 398 | - * |
|
| 399 | - * Note: If the action is on an invoice, subscription etc, esure that the |
|
| 400 | - * current user owns the invoice/subscription. |
|
| 398 | + * |
|
| 399 | + * Note: If the action is on an invoice, subscription etc, esure that the |
|
| 400 | + * current user owns the invoice/subscription. |
|
| 401 | 401 | */ |
| 402 | 402 | public function maybe_do_authenticated_action() { |
| 403 | 403 | |
| 404 | - if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
| 404 | + if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
| 405 | + |
|
| 406 | + $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
| 407 | + $data = wp_unslash( $_REQUEST ); |
|
| 408 | + if ( is_user_logged_in() ) { |
|
| 409 | + do_action( "getpaid_authenticated_action_$key", $data ); |
|
| 410 | + } |
|
| 411 | + |
|
| 412 | + do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
| 413 | + |
|
| 414 | + } |
|
| 415 | + |
|
| 416 | + } |
|
| 417 | + |
|
| 418 | + public function pre_get_posts( $wp_query ) { |
|
| 419 | + |
|
| 420 | + if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
| 421 | + $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
| 422 | + } |
|
| 423 | + |
|
| 424 | + return $wp_query; |
|
| 425 | + } |
|
| 426 | + |
|
| 427 | + /** |
|
| 428 | + * Register widgets |
|
| 429 | + * |
|
| 430 | + */ |
|
| 431 | + public function register_widgets() { |
|
| 432 | + global $pagenow; |
|
| 433 | + |
|
| 434 | + // Currently, UX Builder does not work particulaly well with SuperDuper. |
|
| 435 | + // So we disable our widgets when editing a page with UX Builder. |
|
| 436 | + if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
| 437 | + return; |
|
| 438 | + } |
|
| 439 | + |
|
| 440 | + $block_widget_init_screens = function_exists('sd_pagenow_exclude') ? sd_pagenow_exclude() : array(); |
|
| 441 | + |
|
| 442 | + if ( is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
| 443 | + // don't initiate in these conditions. |
|
| 444 | + }else{ |
|
| 445 | + |
|
| 446 | + // Only load allowed widgets. |
|
| 447 | + $exclude = function_exists( 'sd_widget_exclude' ) ? sd_widget_exclude() : array(); |
|
| 448 | + $widgets = apply_filters( |
|
| 449 | + 'getpaid_widget_classes', |
|
| 450 | + array( |
|
| 451 | + 'WPInv_Checkout_Widget', |
|
| 452 | + 'WPInv_History_Widget', |
|
| 453 | + 'WPInv_Receipt_Widget', |
|
| 454 | + 'WPInv_Subscriptions_Widget', |
|
| 455 | + 'WPInv_Buy_Item_Widget', |
|
| 456 | + 'WPInv_Messages_Widget', |
|
| 457 | + 'WPInv_GetPaid_Widget', |
|
| 458 | + 'WPInv_Invoice_Widget' |
|
| 459 | + ) |
|
| 460 | + ); |
|
| 461 | + |
|
| 462 | + // For each widget... |
|
| 463 | + foreach ( $widgets as $widget ) { |
|
| 464 | + |
|
| 465 | + // Abort early if it is excluded for this page. |
|
| 466 | + if ( in_array( $widget, $exclude ) ) { |
|
| 467 | + continue; |
|
| 468 | + } |
|
| 469 | + |
|
| 470 | + // SD V1 used to extend the widget class. V2 does not, so we cannot call register widget on it. |
|
| 471 | + if ( is_subclass_of( $widget, 'WP_Widget' ) ) { |
|
| 472 | + register_widget( $widget ); |
|
| 473 | + } else { |
|
| 474 | + new $widget(); |
|
| 475 | + } |
|
| 476 | + |
|
| 477 | + } |
|
| 478 | + |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + } |
|
| 482 | + |
|
| 483 | + /** |
|
| 484 | + * Upgrades the database. |
|
| 485 | + * |
|
| 486 | + * @since 2.0.2 |
|
| 487 | + */ |
|
| 488 | + public function maybe_upgrade_database() { |
|
| 489 | + |
|
| 490 | + $wpi_version = get_option( 'wpinv_version', 0 ); |
|
| 491 | + |
|
| 492 | + if ( $wpi_version == WPINV_VERSION ) { |
|
| 493 | + return; |
|
| 494 | + } |
|
| 495 | + |
|
| 496 | + $installer = new GetPaid_Installer(); |
|
| 497 | + |
|
| 498 | + if ( empty( $wpi_version ) ) { |
|
| 499 | + return $installer->upgrade_db( 0 ); |
|
| 500 | + } |
|
| 501 | + |
|
| 502 | + $upgrades = array( |
|
| 503 | + '0.0.5' => '004', |
|
| 504 | + '1.0.3' => '102', |
|
| 505 | + '2.0.0' => '118', |
|
| 506 | + '2.0.8' => '207', |
|
| 507 | + ); |
|
| 508 | + |
|
| 509 | + foreach ( $upgrades as $key => $method ) { |
|
| 510 | + |
|
| 511 | + if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
| 512 | + return $installer->upgrade_db( $method ); |
|
| 513 | + } |
|
| 514 | + |
|
| 515 | + } |
|
| 405 | 516 | |
| 406 | - $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
| 407 | - $data = wp_unslash( $_REQUEST ); |
|
| 408 | - if ( is_user_logged_in() ) { |
|
| 409 | - do_action( "getpaid_authenticated_action_$key", $data ); |
|
| 410 | - } |
|
| 517 | + } |
|
| 411 | 518 | |
| 412 | - do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
| 519 | + /** |
|
| 520 | + * Flushes the permalinks if needed. |
|
| 521 | + * |
|
| 522 | + * @since 2.0.8 |
|
| 523 | + */ |
|
| 524 | + public function maybe_flush_permalinks() { |
|
| 413 | 525 | |
| 414 | - } |
|
| 526 | + $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
| 527 | + |
|
| 528 | + if ( ! empty( $flush ) ) { |
|
| 529 | + flush_rewrite_rules(); |
|
| 530 | + delete_option( 'wpinv_flush_permalinks' ); |
|
| 531 | + } |
|
| 415 | 532 | |
| 416 | 533 | } |
| 417 | 534 | |
| 418 | - public function pre_get_posts( $wp_query ) { |
|
| 535 | + /** |
|
| 536 | + * Remove our pages from yoast sitemaps. |
|
| 537 | + * |
|
| 538 | + * @since 1.0.19 |
|
| 539 | + * @param int[] $excluded_posts_ids |
|
| 540 | + */ |
|
| 541 | + public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
| 419 | 542 | |
| 420 | - if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
| 421 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
| 422 | - } |
|
| 423 | - |
|
| 424 | - return $wp_query; |
|
| 425 | - } |
|
| 426 | - |
|
| 427 | - /** |
|
| 428 | - * Register widgets |
|
| 429 | - * |
|
| 430 | - */ |
|
| 431 | - public function register_widgets() { |
|
| 432 | - global $pagenow; |
|
| 433 | - |
|
| 434 | - // Currently, UX Builder does not work particulaly well with SuperDuper. |
|
| 435 | - // So we disable our widgets when editing a page with UX Builder. |
|
| 436 | - if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
| 437 | - return; |
|
| 438 | - } |
|
| 439 | - |
|
| 440 | - $block_widget_init_screens = function_exists('sd_pagenow_exclude') ? sd_pagenow_exclude() : array(); |
|
| 441 | - |
|
| 442 | - if ( is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
| 443 | - // don't initiate in these conditions. |
|
| 444 | - }else{ |
|
| 445 | - |
|
| 446 | - // Only load allowed widgets. |
|
| 447 | - $exclude = function_exists( 'sd_widget_exclude' ) ? sd_widget_exclude() : array(); |
|
| 448 | - $widgets = apply_filters( |
|
| 449 | - 'getpaid_widget_classes', |
|
| 450 | - array( |
|
| 451 | - 'WPInv_Checkout_Widget', |
|
| 452 | - 'WPInv_History_Widget', |
|
| 453 | - 'WPInv_Receipt_Widget', |
|
| 454 | - 'WPInv_Subscriptions_Widget', |
|
| 455 | - 'WPInv_Buy_Item_Widget', |
|
| 456 | - 'WPInv_Messages_Widget', |
|
| 457 | - 'WPInv_GetPaid_Widget', |
|
| 458 | - 'WPInv_Invoice_Widget' |
|
| 459 | - ) |
|
| 460 | - ); |
|
| 461 | - |
|
| 462 | - // For each widget... |
|
| 463 | - foreach ( $widgets as $widget ) { |
|
| 464 | - |
|
| 465 | - // Abort early if it is excluded for this page. |
|
| 466 | - if ( in_array( $widget, $exclude ) ) { |
|
| 467 | - continue; |
|
| 468 | - } |
|
| 543 | + // Ensure that we have an array. |
|
| 544 | + if ( ! is_array( $excluded_posts_ids ) ) { |
|
| 545 | + $excluded_posts_ids = array(); |
|
| 546 | + } |
|
| 469 | 547 | |
| 470 | - // SD V1 used to extend the widget class. V2 does not, so we cannot call register widget on it. |
|
| 471 | - if ( is_subclass_of( $widget, 'WP_Widget' ) ) { |
|
| 472 | - register_widget( $widget ); |
|
| 473 | - } else { |
|
| 474 | - new $widget(); |
|
| 475 | - } |
|
| 548 | + // Prepare our pages. |
|
| 549 | + $our_pages = array(); |
|
| 476 | 550 | |
| 477 | - } |
|
| 551 | + // Checkout page. |
|
| 552 | + $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
| 478 | 553 | |
| 479 | - } |
|
| 480 | - |
|
| 481 | - } |
|
| 554 | + // Success page. |
|
| 555 | + $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
| 482 | 556 | |
| 483 | - /** |
|
| 484 | - * Upgrades the database. |
|
| 485 | - * |
|
| 486 | - * @since 2.0.2 |
|
| 487 | - */ |
|
| 488 | - public function maybe_upgrade_database() { |
|
| 489 | - |
|
| 490 | - $wpi_version = get_option( 'wpinv_version', 0 ); |
|
| 491 | - |
|
| 492 | - if ( $wpi_version == WPINV_VERSION ) { |
|
| 493 | - return; |
|
| 494 | - } |
|
| 495 | - |
|
| 496 | - $installer = new GetPaid_Installer(); |
|
| 497 | - |
|
| 498 | - if ( empty( $wpi_version ) ) { |
|
| 499 | - return $installer->upgrade_db( 0 ); |
|
| 500 | - } |
|
| 501 | - |
|
| 502 | - $upgrades = array( |
|
| 503 | - '0.0.5' => '004', |
|
| 504 | - '1.0.3' => '102', |
|
| 505 | - '2.0.0' => '118', |
|
| 506 | - '2.0.8' => '207', |
|
| 507 | - ); |
|
| 508 | - |
|
| 509 | - foreach ( $upgrades as $key => $method ) { |
|
| 510 | - |
|
| 511 | - if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
| 512 | - return $installer->upgrade_db( $method ); |
|
| 513 | - } |
|
| 514 | - |
|
| 515 | - } |
|
| 516 | - |
|
| 517 | - } |
|
| 518 | - |
|
| 519 | - /** |
|
| 520 | - * Flushes the permalinks if needed. |
|
| 521 | - * |
|
| 522 | - * @since 2.0.8 |
|
| 523 | - */ |
|
| 524 | - public function maybe_flush_permalinks() { |
|
| 525 | - |
|
| 526 | - $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
| 527 | - |
|
| 528 | - if ( ! empty( $flush ) ) { |
|
| 529 | - flush_rewrite_rules(); |
|
| 530 | - delete_option( 'wpinv_flush_permalinks' ); |
|
| 531 | - } |
|
| 532 | - |
|
| 533 | - } |
|
| 534 | - |
|
| 535 | - /** |
|
| 536 | - * Remove our pages from yoast sitemaps. |
|
| 537 | - * |
|
| 538 | - * @since 1.0.19 |
|
| 539 | - * @param int[] $excluded_posts_ids |
|
| 540 | - */ |
|
| 541 | - public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
| 542 | - |
|
| 543 | - // Ensure that we have an array. |
|
| 544 | - if ( ! is_array( $excluded_posts_ids ) ) { |
|
| 545 | - $excluded_posts_ids = array(); |
|
| 546 | - } |
|
| 547 | - |
|
| 548 | - // Prepare our pages. |
|
| 549 | - $our_pages = array(); |
|
| 550 | - |
|
| 551 | - // Checkout page. |
|
| 552 | - $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
| 553 | - |
|
| 554 | - // Success page. |
|
| 555 | - $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
| 556 | - |
|
| 557 | - // Failure page. |
|
| 558 | - $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
| 557 | + // Failure page. |
|
| 558 | + $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
| 559 | 559 | |
| 560 | - // History page. |
|
| 561 | - $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
| 560 | + // History page. |
|
| 561 | + $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
| 562 | 562 | |
| 563 | - // Subscriptions page. |
|
| 564 | - $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
| 563 | + // Subscriptions page. |
|
| 564 | + $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
| 565 | 565 | |
| 566 | - $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
| 566 | + $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
| 567 | 567 | |
| 568 | - $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
|
| 569 | - return array_unique( $excluded_posts_ids ); |
|
| 568 | + $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
|
| 569 | + return array_unique( $excluded_posts_ids ); |
|
| 570 | 570 | |
| 571 | - } |
|
| 571 | + } |
|
| 572 | 572 | |
| 573 | - /** |
|
| 574 | - * Displays additional footer code. |
|
| 575 | - * |
|
| 576 | - * @since 2.0.0 |
|
| 577 | - */ |
|
| 578 | - public function wp_footer() { |
|
| 579 | - wpinv_get_template( 'frontend-footer.php' ); |
|
| 580 | - } |
|
| 573 | + /** |
|
| 574 | + * Displays additional footer code. |
|
| 575 | + * |
|
| 576 | + * @since 2.0.0 |
|
| 577 | + */ |
|
| 578 | + public function wp_footer() { |
|
| 579 | + wpinv_get_template( 'frontend-footer.php' ); |
|
| 580 | + } |
|
| 581 | 581 | |
| 582 | - /** |
|
| 583 | - * Displays additional header code. |
|
| 584 | - * |
|
| 585 | - * @since 2.0.0 |
|
| 586 | - */ |
|
| 587 | - public function wp_head() { |
|
| 588 | - wpinv_get_template( 'frontend-head.php' ); |
|
| 589 | - } |
|
| 582 | + /** |
|
| 583 | + * Displays additional header code. |
|
| 584 | + * |
|
| 585 | + * @since 2.0.0 |
|
| 586 | + */ |
|
| 587 | + public function wp_head() { |
|
| 588 | + wpinv_get_template( 'frontend-head.php' ); |
|
| 589 | + } |
|
| 590 | 590 | |
| 591 | - /** |
|
| 592 | - * Custom query vars. |
|
| 593 | - * |
|
| 594 | - */ |
|
| 595 | - public function custom_query_vars( $vars ) { |
|
| 591 | + /** |
|
| 592 | + * Custom query vars. |
|
| 593 | + * |
|
| 594 | + */ |
|
| 595 | + public function custom_query_vars( $vars ) { |
|
| 596 | 596 | $vars[] = 'getpaid-ipn'; |
| 597 | 597 | return $vars; |
| 598 | - } |
|
| 598 | + } |
|
| 599 | 599 | |
| 600 | - /** |
|
| 601 | - * Add rewrite tags and rules. |
|
| 602 | - * |
|
| 603 | - */ |
|
| 604 | - public function add_rewrite_rule() { |
|
| 600 | + /** |
|
| 601 | + * Add rewrite tags and rules. |
|
| 602 | + * |
|
| 603 | + */ |
|
| 604 | + public function add_rewrite_rule() { |
|
| 605 | 605 | $tag = 'getpaid-ipn'; |
| 606 | 606 | add_rewrite_tag( "%$tag%", '([^&]+)' ); |
| 607 | 607 | add_rewrite_rule( "^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]",'top' ); |
| 608 | - } |
|
| 608 | + } |
|
| 609 | 609 | |
| 610 | - /** |
|
| 611 | - * Processes non-query string ipns. |
|
| 612 | - * |
|
| 613 | - */ |
|
| 614 | - public function maybe_process_new_ipn( $query ) { |
|
| 610 | + /** |
|
| 611 | + * Processes non-query string ipns. |
|
| 612 | + * |
|
| 613 | + */ |
|
| 614 | + public function maybe_process_new_ipn( $query ) { |
|
| 615 | 615 | |
| 616 | 616 | if ( is_admin() || ! $query->is_main_query() ) { |
| 617 | 617 | return; |
| 618 | 618 | } |
| 619 | 619 | |
| 620 | - $gateway = get_query_var( 'getpaid-ipn' ); |
|
| 620 | + $gateway = get_query_var( 'getpaid-ipn' ); |
|
| 621 | 621 | |
| 622 | 622 | if ( ! empty( $gateway ) ){ |
| 623 | 623 | |
| 624 | - $gateway = sanitize_text_field( $gateway ); |
|
| 625 | - nocache_headers(); |
|
| 626 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
| 627 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
| 628 | - exit; |
|
| 624 | + $gateway = sanitize_text_field( $gateway ); |
|
| 625 | + nocache_headers(); |
|
| 626 | + do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
| 627 | + do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
| 628 | + exit; |
|
| 629 | 629 | |
| 630 | 630 | } |
| 631 | 631 | |
| 632 | - } |
|
| 632 | + } |
|
| 633 | 633 | |
| 634 | 634 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @since 1.0.0 |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * Main Invoicing class. |
@@ -56,8 +56,8 @@ discard block |
||
| 56 | 56 | * @param string $prop The prop to set. |
| 57 | 57 | * @param mixed $value The value to retrieve. |
| 58 | 58 | */ |
| 59 | - public function set( $prop, $value ) { |
|
| 60 | - $this->data[ $prop ] = $value; |
|
| 59 | + public function set($prop, $value) { |
|
| 60 | + $this->data[$prop] = $value; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -66,10 +66,10 @@ discard block |
||
| 66 | 66 | * @param string $prop The prop to set. |
| 67 | 67 | * @return mixed The value. |
| 68 | 68 | */ |
| 69 | - public function get( $prop ) { |
|
| 69 | + public function get($prop) { |
|
| 70 | 70 | |
| 71 | - if ( isset( $this->data[ $prop ] ) ) { |
|
| 72 | - return $this->data[ $prop ]; |
|
| 71 | + if (isset($this->data[$prop])) { |
|
| 72 | + return $this->data[$prop]; |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | return null; |
@@ -81,23 +81,23 @@ discard block |
||
| 81 | 81 | public function set_properties() { |
| 82 | 82 | |
| 83 | 83 | // Sessions. |
| 84 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
| 85 | - $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
| 84 | + $this->set('session', new WPInv_Session_Handler()); |
|
| 85 | + $GLOBALS['wpi_session'] = $this->get('session'); // Backwards compatibility. |
|
| 86 | 86 | $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
| 87 | 87 | |
| 88 | 88 | // Init other objects. |
| 89 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
| 90 | - $this->set( 'notes', new WPInv_Notes() ); |
|
| 91 | - $this->set( 'api', new WPInv_API() ); |
|
| 92 | - $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
| 93 | - $this->set( 'template', new GetPaid_Template() ); |
|
| 94 | - $this->set( 'admin', new GetPaid_Admin() ); |
|
| 95 | - $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
| 96 | - $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
| 97 | - $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
| 98 | - $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
| 99 | - $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
| 100 | - $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
| 89 | + $this->set('session', new WPInv_Session_Handler()); |
|
| 90 | + $this->set('notes', new WPInv_Notes()); |
|
| 91 | + $this->set('api', new WPInv_API()); |
|
| 92 | + $this->set('post_types', new GetPaid_Post_Types()); |
|
| 93 | + $this->set('template', new GetPaid_Template()); |
|
| 94 | + $this->set('admin', new GetPaid_Admin()); |
|
| 95 | + $this->set('subscriptions', new WPInv_Subscriptions()); |
|
| 96 | + $this->set('invoice_emails', new GetPaid_Invoice_Notification_Emails()); |
|
| 97 | + $this->set('subscription_emails', new GetPaid_Subscription_Notification_Emails()); |
|
| 98 | + $this->set('daily_maintenace', new GetPaid_Daily_Maintenance()); |
|
| 99 | + $this->set('payment_forms', new GetPaid_Payment_Forms()); |
|
| 100 | + $this->set('maxmind', new GetPaid_MaxMind_Geolocation()); |
|
| 101 | 101 | |
| 102 | 102 | } |
| 103 | 103 | |
@@ -105,8 +105,8 @@ discard block |
||
| 105 | 105 | * Define plugin constants. |
| 106 | 106 | */ |
| 107 | 107 | public function define_constants() { |
| 108 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
| 109 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
| 108 | + define('WPINV_PLUGIN_DIR', plugin_dir_path(WPINV_PLUGIN_FILE)); |
|
| 109 | + define('WPINV_PLUGIN_URL', plugin_dir_url(WPINV_PLUGIN_FILE)); |
|
| 110 | 110 | $this->version = WPINV_VERSION; |
| 111 | 111 | } |
| 112 | 112 | |
@@ -117,27 +117,27 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | protected function init_hooks() { |
| 119 | 119 | /* Internationalize the text strings used. */ |
| 120 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
| 120 | + add_action('plugins_loaded', array(&$this, 'plugins_loaded')); |
|
| 121 | 121 | |
| 122 | 122 | // Init the plugin after WordPress inits. |
| 123 | - add_action( 'init', array( $this, 'init' ), 1 ); |
|
| 124 | - add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
| 125 | - add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
| 126 | - add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
| 127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
| 128 | - add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
| 129 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
| 130 | - add_action( 'widgets_init', array( $this, 'register_widgets' ) ); |
|
| 131 | - add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
| 132 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
| 133 | - |
|
| 134 | - add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
| 135 | - add_action( 'init', array( $this, 'add_rewrite_rule' ), 10, 0 ); |
|
| 136 | - add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
| 123 | + add_action('init', array($this, 'init'), 1); |
|
| 124 | + add_action('init', array($this, 'maybe_process_ipn'), 10); |
|
| 125 | + add_action('init', array($this, 'wpinv_actions')); |
|
| 126 | + add_action('init', array($this, 'maybe_do_authenticated_action'), 100); |
|
| 127 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 11); |
|
| 128 | + add_action('wp_footer', array($this, 'wp_footer')); |
|
| 129 | + add_action('wp_head', array($this, 'wp_head')); |
|
| 130 | + add_action('widgets_init', array($this, 'register_widgets')); |
|
| 131 | + add_filter('wpseo_exclude_from_sitemap_by_post_ids', array($this, 'wpseo_exclude_from_sitemap_by_post_ids')); |
|
| 132 | + add_filter('pre_get_posts', array(&$this, 'pre_get_posts')); |
|
| 133 | + |
|
| 134 | + add_filter('query_vars', array($this, 'custom_query_vars')); |
|
| 135 | + add_action('init', array($this, 'add_rewrite_rule'), 10, 0); |
|
| 136 | + add_action('pre_get_posts', array($this, 'maybe_process_new_ipn'), 1); |
|
| 137 | 137 | |
| 138 | 138 | // Fires after registering actions. |
| 139 | - do_action( 'wpinv_actions', $this ); |
|
| 140 | - do_action( 'getpaid_actions', $this ); |
|
| 139 | + do_action('wpinv_actions', $this); |
|
| 140 | + do_action('getpaid_actions', $this); |
|
| 141 | 141 | |
| 142 | 142 | } |
| 143 | 143 | |
@@ -145,10 +145,10 @@ discard block |
||
| 145 | 145 | /* Internationalize the text strings used. */ |
| 146 | 146 | $this->load_textdomain(); |
| 147 | 147 | |
| 148 | - do_action( 'wpinv_loaded' ); |
|
| 148 | + do_action('wpinv_loaded'); |
|
| 149 | 149 | |
| 150 | 150 | // Fix oxygen page builder conflict |
| 151 | - if ( function_exists( 'ct_css_output' ) ) { |
|
| 151 | + if (function_exists('ct_css_output')) { |
|
| 152 | 152 | wpinv_oxygen_fix_conflict(); |
| 153 | 153 | } |
| 154 | 154 | } |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | load_plugin_textdomain( |
| 170 | 170 | 'invoicing', |
| 171 | 171 | false, |
| 172 | - plugin_basename( dirname( WPINV_PLUGIN_FILE ) ) . '/languages/' |
|
| 172 | + plugin_basename(dirname(WPINV_PLUGIN_FILE)) . '/languages/' |
|
| 173 | 173 | ); |
| 174 | 174 | |
| 175 | 175 | } |
@@ -180,79 +180,79 @@ discard block |
||
| 180 | 180 | public function includes() { |
| 181 | 181 | |
| 182 | 182 | // Start with the settings. |
| 183 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
| 183 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php'); |
|
| 184 | 184 | |
| 185 | 185 | // Packages/libraries. |
| 186 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
| 187 | - require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
| 186 | + require_once(WPINV_PLUGIN_DIR . 'vendor/autoload.php'); |
|
| 187 | + require_once(WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php'); |
|
| 188 | 188 | |
| 189 | 189 | // Load functions. |
| 190 | - require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
| 191 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
| 192 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
| 193 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
| 194 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
| 195 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
| 196 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
| 197 | - require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
| 198 | - require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
| 199 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
| 200 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
| 201 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
| 202 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
| 203 | - require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
| 204 | - require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
| 190 | + require_once(WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php'); |
|
| 191 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php'); |
|
| 192 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php'); |
|
| 193 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php'); |
|
| 194 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php'); |
|
| 195 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php'); |
|
| 196 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php'); |
|
| 197 | + require_once(WPINV_PLUGIN_DIR . 'includes/invoice-functions.php'); |
|
| 198 | + require_once(WPINV_PLUGIN_DIR . 'includes/subscription-functions.php'); |
|
| 199 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php'); |
|
| 200 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php'); |
|
| 201 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php'); |
|
| 202 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php'); |
|
| 203 | + require_once(WPINV_PLUGIN_DIR . 'includes/user-functions.php'); |
|
| 204 | + require_once(WPINV_PLUGIN_DIR . 'includes/error-functions.php'); |
|
| 205 | 205 | |
| 206 | 206 | // Register autoloader. |
| 207 | 207 | try { |
| 208 | - spl_autoload_register( array( $this, 'autoload' ), true ); |
|
| 209 | - } catch ( Exception $e ) { |
|
| 210 | - wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
| 208 | + spl_autoload_register(array($this, 'autoload'), true); |
|
| 209 | + } catch (Exception $e) { |
|
| 210 | + wpinv_error_log($e->getMessage(), '', __FILE__, 149, true); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
| 214 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
| 215 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
| 216 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
| 217 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
| 218 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
| 219 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
| 220 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
| 221 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
| 222 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
| 223 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
| 224 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
| 225 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
| 226 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
| 227 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
| 228 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
| 229 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
| 230 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
| 231 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
| 232 | - require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
| 233 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice.php' ); |
|
| 234 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
| 235 | - |
|
| 236 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
| 213 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php'); |
|
| 214 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php'); |
|
| 215 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php'); |
|
| 216 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php'); |
|
| 217 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php'); |
|
| 218 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php'); |
|
| 219 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php'); |
|
| 220 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php'); |
|
| 221 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php'); |
|
| 222 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php'); |
|
| 223 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php'); |
|
| 224 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php'); |
|
| 225 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php'); |
|
| 226 | + require_once(WPINV_PLUGIN_DIR . 'widgets/checkout.php'); |
|
| 227 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-history.php'); |
|
| 228 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php'); |
|
| 229 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php'); |
|
| 230 | + require_once(WPINV_PLUGIN_DIR . 'widgets/subscriptions.php'); |
|
| 231 | + require_once(WPINV_PLUGIN_DIR . 'widgets/buy-item.php'); |
|
| 232 | + require_once(WPINV_PLUGIN_DIR . 'widgets/getpaid.php'); |
|
| 233 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice.php'); |
|
| 234 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php'); |
|
| 235 | + |
|
| 236 | + if (is_admin() || (defined('WP_CLI') && WP_CLI)) { |
|
| 237 | 237 | GetPaid_Post_Types_Admin::init(); |
| 238 | 238 | |
| 239 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
| 240 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
| 241 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
| 242 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
| 243 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
| 244 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
| 239 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php'); |
|
| 240 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php'); |
|
| 241 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php'); |
|
| 242 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php'); |
|
| 243 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php'); |
|
| 244 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php'); |
|
| 245 | 245 | // load the user class only on the users.php page |
| 246 | 246 | global $pagenow; |
| 247 | - if($pagenow=='users.php'){ |
|
| 247 | + if ($pagenow == 'users.php') { |
|
| 248 | 248 | new WPInv_Admin_Users(); |
| 249 | 249 | } |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | // Register cli commands |
| 253 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
| 254 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
| 255 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
| 253 | + if (defined('WP_CLI') && WP_CLI) { |
|
| 254 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php'); |
|
| 255 | + WP_CLI::add_command('invoicing', 'WPInv_CLI'); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | } |
@@ -265,21 +265,21 @@ discard block |
||
| 265 | 265 | * @since 1.0.19 |
| 266 | 266 | * @return void |
| 267 | 267 | */ |
| 268 | - public function autoload( $class_name ) { |
|
| 268 | + public function autoload($class_name) { |
|
| 269 | 269 | |
| 270 | 270 | // Normalize the class name... |
| 271 | - $class_name = strtolower( $class_name ); |
|
| 271 | + $class_name = strtolower($class_name); |
|
| 272 | 272 | |
| 273 | 273 | // ... and make sure it is our class. |
| 274 | - if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
| 274 | + if (false === strpos($class_name, 'getpaid_') && false === strpos($class_name, 'wpinv_')) { |
|
| 275 | 275 | return; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | // Next, prepare the file name from the class. |
| 279 | - $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
| 279 | + $file_name = 'class-' . str_replace('_', '-', $class_name) . '.php'; |
|
| 280 | 280 | |
| 281 | 281 | // Base path of the classes. |
| 282 | - $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
| 282 | + $plugin_path = untrailingslashit(WPINV_PLUGIN_DIR); |
|
| 283 | 283 | |
| 284 | 284 | // And an array of possible locations in order of importance. |
| 285 | 285 | $locations = array( |
@@ -294,10 +294,10 @@ discard block |
||
| 294 | 294 | "$plugin_path/includes/admin/meta-boxes", |
| 295 | 295 | ); |
| 296 | 296 | |
| 297 | - foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
| 297 | + foreach (apply_filters('getpaid_autoload_locations', $locations) as $location) { |
|
| 298 | 298 | |
| 299 | - if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
| 300 | - include trailingslashit( $location ) . $file_name; |
|
| 299 | + if (file_exists(trailingslashit($location) . $file_name)) { |
|
| 300 | + include trailingslashit($location) . $file_name; |
|
| 301 | 301 | break; |
| 302 | 302 | } |
| 303 | 303 | |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | public function init() { |
| 312 | 312 | |
| 313 | 313 | // Fires before getpaid inits. |
| 314 | - do_action( 'before_getpaid_init', $this ); |
|
| 314 | + do_action('before_getpaid_init', $this); |
|
| 315 | 315 | |
| 316 | 316 | // Maybe upgrade. |
| 317 | 317 | $this->maybe_upgrade_database(); |
@@ -328,17 +328,17 @@ discard block |
||
| 328 | 328 | ) |
| 329 | 329 | ); |
| 330 | 330 | |
| 331 | - foreach ( $gateways as $id => $class ) { |
|
| 332 | - $this->gateways[ $id ] = new $class(); |
|
| 331 | + foreach ($gateways as $id => $class) { |
|
| 332 | + $this->gateways[$id] = new $class(); |
|
| 333 | 333 | } |
| 334 | 334 | |
| 335 | - if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
| 335 | + if ('yes' != get_option('wpinv_renamed_gateways')) { |
|
| 336 | 336 | GetPaid_Installer::rename_gateways_label(); |
| 337 | - update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
| 337 | + update_option('wpinv_renamed_gateways', 'yes'); |
|
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | // Fires after getpaid inits. |
| 341 | - do_action( 'getpaid_init', $this ); |
|
| 341 | + do_action('getpaid_init', $this); |
|
| 342 | 342 | |
| 343 | 343 | } |
| 344 | 344 | |
@@ -348,14 +348,14 @@ discard block |
||
| 348 | 348 | public function maybe_process_ipn() { |
| 349 | 349 | |
| 350 | 350 | // Ensure that this is an IPN request. |
| 351 | - if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
| 351 | + if (empty($_GET['wpi-listener']) || 'IPN' !== $_GET['wpi-listener'] || empty($_GET['wpi-gateway'])) { |
|
| 352 | 352 | return; |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - $gateway = sanitize_text_field( $_GET['wpi-gateway'] ); |
|
| 355 | + $gateway = sanitize_text_field($_GET['wpi-gateway']); |
|
| 356 | 356 | |
| 357 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
| 358 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
| 357 | + do_action('wpinv_verify_payment_ipn', $gateway); |
|
| 358 | + do_action("wpinv_verify_{$gateway}_ipn"); |
|
| 359 | 359 | exit; |
| 360 | 360 | |
| 361 | 361 | } |
@@ -363,33 +363,33 @@ discard block |
||
| 363 | 363 | public function enqueue_scripts() { |
| 364 | 364 | |
| 365 | 365 | // Fires before adding scripts. |
| 366 | - do_action( 'getpaid_enqueue_scripts' ); |
|
| 366 | + do_action('getpaid_enqueue_scripts'); |
|
| 367 | 367 | |
| 368 | 368 | $localize = array(); |
| 369 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
| 369 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
| 370 | 370 | $localize['thousands'] = wpinv_thousands_separator(); |
| 371 | 371 | $localize['decimals'] = wpinv_decimal_separator(); |
| 372 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
| 373 | - $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
| 372 | + $localize['nonce'] = wp_create_nonce('wpinv-nonce'); |
|
| 373 | + $localize['txtComplete'] = __('Continue', 'invoicing'); |
|
| 374 | 374 | $localize['UseTaxes'] = wpinv_use_taxes(); |
| 375 | - $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
| 376 | - $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
| 377 | - $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
| 375 | + $localize['formNonce'] = wp_create_nonce('getpaid_form_nonce'); |
|
| 376 | + $localize['loading'] = __('Loading...', 'invoicing'); |
|
| 377 | + $localize['connectionError'] = __('Could not establish a connection to the server.', 'invoicing'); |
|
| 378 | 378 | |
| 379 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
| 379 | + $localize = apply_filters('wpinv_front_js_localize', $localize); |
|
| 380 | 380 | |
| 381 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
| 382 | - wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
| 383 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
| 381 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js'); |
|
| 382 | + wp_enqueue_script('wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array('jquery'), $version, true); |
|
| 383 | + wp_localize_script('wpinv-front-script', 'WPInv', $localize); |
|
| 384 | 384 | } |
| 385 | 385 | |
| 386 | 386 | public function wpinv_actions() { |
| 387 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
| 388 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
| 387 | + if (isset($_REQUEST['wpi_action'])) { |
|
| 388 | + do_action('wpinv_' . wpinv_sanitize_key($_REQUEST['wpi_action']), $_REQUEST); |
|
| 389 | 389 | } |
| 390 | 390 | |
| 391 | - if ( defined( 'WP_ALL_IMPORT_ROOT_DIR' ) ) { |
|
| 392 | - include plugin_dir_path( __FILE__ ) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
| 391 | + if (defined('WP_ALL_IMPORT_ROOT_DIR')) { |
|
| 392 | + include plugin_dir_path(__FILE__) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
| 393 | 393 | } |
| 394 | 394 | } |
| 395 | 395 | |
@@ -401,24 +401,24 @@ discard block |
||
| 401 | 401 | */ |
| 402 | 402 | public function maybe_do_authenticated_action() { |
| 403 | 403 | |
| 404 | - if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
| 404 | + if (isset($_REQUEST['getpaid-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
| 405 | 405 | |
| 406 | - $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
| 407 | - $data = wp_unslash( $_REQUEST ); |
|
| 408 | - if ( is_user_logged_in() ) { |
|
| 409 | - do_action( "getpaid_authenticated_action_$key", $data ); |
|
| 406 | + $key = sanitize_key($_REQUEST['getpaid-action']); |
|
| 407 | + $data = wp_unslash($_REQUEST); |
|
| 408 | + if (is_user_logged_in()) { |
|
| 409 | + do_action("getpaid_authenticated_action_$key", $data); |
|
| 410 | 410 | } |
| 411 | 411 | |
| 412 | - do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
| 412 | + do_action("getpaid_unauthenticated_action_$key", $data); |
|
| 413 | 413 | |
| 414 | 414 | } |
| 415 | 415 | |
| 416 | 416 | } |
| 417 | 417 | |
| 418 | - public function pre_get_posts( $wp_query ) { |
|
| 418 | + public function pre_get_posts($wp_query) { |
|
| 419 | 419 | |
| 420 | - if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
| 421 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
| 420 | + if (!is_admin() && !empty($wp_query->query_vars['post_type']) && getpaid_is_invoice_post_type($wp_query->query_vars['post_type']) && is_user_logged_in() && is_single() && $wp_query->is_main_query()) { |
|
| 421 | + $wp_query->query_vars['post_status'] = array_keys(wpinv_get_invoice_statuses(false, false, $wp_query->query_vars['post_type'])); |
|
| 422 | 422 | } |
| 423 | 423 | |
| 424 | 424 | return $wp_query; |
@@ -433,18 +433,18 @@ discard block |
||
| 433 | 433 | |
| 434 | 434 | // Currently, UX Builder does not work particulaly well with SuperDuper. |
| 435 | 435 | // So we disable our widgets when editing a page with UX Builder. |
| 436 | - if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
| 436 | + if (function_exists('ux_builder_is_active') && ux_builder_is_active()) { |
|
| 437 | 437 | return; |
| 438 | 438 | } |
| 439 | 439 | |
| 440 | 440 | $block_widget_init_screens = function_exists('sd_pagenow_exclude') ? sd_pagenow_exclude() : array(); |
| 441 | 441 | |
| 442 | - if ( is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
| 442 | + if (is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
| 443 | 443 | // don't initiate in these conditions. |
| 444 | - }else{ |
|
| 444 | + } else { |
|
| 445 | 445 | |
| 446 | 446 | // Only load allowed widgets. |
| 447 | - $exclude = function_exists( 'sd_widget_exclude' ) ? sd_widget_exclude() : array(); |
|
| 447 | + $exclude = function_exists('sd_widget_exclude') ? sd_widget_exclude() : array(); |
|
| 448 | 448 | $widgets = apply_filters( |
| 449 | 449 | 'getpaid_widget_classes', |
| 450 | 450 | array( |
@@ -460,16 +460,16 @@ discard block |
||
| 460 | 460 | ); |
| 461 | 461 | |
| 462 | 462 | // For each widget... |
| 463 | - foreach ( $widgets as $widget ) { |
|
| 463 | + foreach ($widgets as $widget) { |
|
| 464 | 464 | |
| 465 | 465 | // Abort early if it is excluded for this page. |
| 466 | - if ( in_array( $widget, $exclude ) ) { |
|
| 466 | + if (in_array($widget, $exclude)) { |
|
| 467 | 467 | continue; |
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | // SD V1 used to extend the widget class. V2 does not, so we cannot call register widget on it. |
| 471 | - if ( is_subclass_of( $widget, 'WP_Widget' ) ) { |
|
| 472 | - register_widget( $widget ); |
|
| 471 | + if (is_subclass_of($widget, 'WP_Widget')) { |
|
| 472 | + register_widget($widget); |
|
| 473 | 473 | } else { |
| 474 | 474 | new $widget(); |
| 475 | 475 | } |
@@ -487,29 +487,29 @@ discard block |
||
| 487 | 487 | */ |
| 488 | 488 | public function maybe_upgrade_database() { |
| 489 | 489 | |
| 490 | - $wpi_version = get_option( 'wpinv_version', 0 ); |
|
| 490 | + $wpi_version = get_option('wpinv_version', 0); |
|
| 491 | 491 | |
| 492 | - if ( $wpi_version == WPINV_VERSION ) { |
|
| 492 | + if ($wpi_version == WPINV_VERSION) { |
|
| 493 | 493 | return; |
| 494 | 494 | } |
| 495 | 495 | |
| 496 | 496 | $installer = new GetPaid_Installer(); |
| 497 | 497 | |
| 498 | - if ( empty( $wpi_version ) ) { |
|
| 499 | - return $installer->upgrade_db( 0 ); |
|
| 498 | + if (empty($wpi_version)) { |
|
| 499 | + return $installer->upgrade_db(0); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | - $upgrades = array( |
|
| 502 | + $upgrades = array( |
|
| 503 | 503 | '0.0.5' => '004', |
| 504 | 504 | '1.0.3' => '102', |
| 505 | 505 | '2.0.0' => '118', |
| 506 | 506 | '2.0.8' => '207', |
| 507 | 507 | ); |
| 508 | 508 | |
| 509 | - foreach ( $upgrades as $key => $method ) { |
|
| 509 | + foreach ($upgrades as $key => $method) { |
|
| 510 | 510 | |
| 511 | - if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
| 512 | - return $installer->upgrade_db( $method ); |
|
| 511 | + if (version_compare($wpi_version, $key, '<')) { |
|
| 512 | + return $installer->upgrade_db($method); |
|
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | } |
@@ -523,11 +523,11 @@ discard block |
||
| 523 | 523 | */ |
| 524 | 524 | public function maybe_flush_permalinks() { |
| 525 | 525 | |
| 526 | - $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
| 526 | + $flush = get_option('wpinv_flush_permalinks', 0); |
|
| 527 | 527 | |
| 528 | - if ( ! empty( $flush ) ) { |
|
| 528 | + if (!empty($flush)) { |
|
| 529 | 529 | flush_rewrite_rules(); |
| 530 | - delete_option( 'wpinv_flush_permalinks' ); |
|
| 530 | + delete_option('wpinv_flush_permalinks'); |
|
| 531 | 531 | } |
| 532 | 532 | |
| 533 | 533 | } |
@@ -538,10 +538,10 @@ discard block |
||
| 538 | 538 | * @since 1.0.19 |
| 539 | 539 | * @param int[] $excluded_posts_ids |
| 540 | 540 | */ |
| 541 | - public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
| 541 | + public function wpseo_exclude_from_sitemap_by_post_ids($excluded_posts_ids) { |
|
| 542 | 542 | |
| 543 | 543 | // Ensure that we have an array. |
| 544 | - if ( ! is_array( $excluded_posts_ids ) ) { |
|
| 544 | + if (!is_array($excluded_posts_ids)) { |
|
| 545 | 545 | $excluded_posts_ids = array(); |
| 546 | 546 | } |
| 547 | 547 | |
@@ -549,24 +549,24 @@ discard block |
||
| 549 | 549 | $our_pages = array(); |
| 550 | 550 | |
| 551 | 551 | // Checkout page. |
| 552 | - $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
| 552 | + $our_pages[] = wpinv_get_option('checkout_page', false); |
|
| 553 | 553 | |
| 554 | 554 | // Success page. |
| 555 | - $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
| 555 | + $our_pages[] = wpinv_get_option('success_page', false); |
|
| 556 | 556 | |
| 557 | 557 | // Failure page. |
| 558 | - $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
| 558 | + $our_pages[] = wpinv_get_option('failure_page', false); |
|
| 559 | 559 | |
| 560 | 560 | // History page. |
| 561 | - $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
| 561 | + $our_pages[] = wpinv_get_option('invoice_history_page', false); |
|
| 562 | 562 | |
| 563 | 563 | // Subscriptions page. |
| 564 | - $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
| 564 | + $our_pages[] = wpinv_get_option('invoice_subscription_page', false); |
|
| 565 | 565 | |
| 566 | - $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
| 566 | + $our_pages = array_map('intval', array_filter($our_pages)); |
|
| 567 | 567 | |
| 568 | 568 | $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
| 569 | - return array_unique( $excluded_posts_ids ); |
|
| 569 | + return array_unique($excluded_posts_ids); |
|
| 570 | 570 | |
| 571 | 571 | } |
| 572 | 572 | |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | * @since 2.0.0 |
| 577 | 577 | */ |
| 578 | 578 | public function wp_footer() { |
| 579 | - wpinv_get_template( 'frontend-footer.php' ); |
|
| 579 | + wpinv_get_template('frontend-footer.php'); |
|
| 580 | 580 | } |
| 581 | 581 | |
| 582 | 582 | /** |
@@ -585,14 +585,14 @@ discard block |
||
| 585 | 585 | * @since 2.0.0 |
| 586 | 586 | */ |
| 587 | 587 | public function wp_head() { |
| 588 | - wpinv_get_template( 'frontend-head.php' ); |
|
| 588 | + wpinv_get_template('frontend-head.php'); |
|
| 589 | 589 | } |
| 590 | 590 | |
| 591 | 591 | /** |
| 592 | 592 | * Custom query vars. |
| 593 | 593 | * |
| 594 | 594 | */ |
| 595 | - public function custom_query_vars( $vars ) { |
|
| 595 | + public function custom_query_vars($vars) { |
|
| 596 | 596 | $vars[] = 'getpaid-ipn'; |
| 597 | 597 | return $vars; |
| 598 | 598 | } |
@@ -603,28 +603,28 @@ discard block |
||
| 603 | 603 | */ |
| 604 | 604 | public function add_rewrite_rule() { |
| 605 | 605 | $tag = 'getpaid-ipn'; |
| 606 | - add_rewrite_tag( "%$tag%", '([^&]+)' ); |
|
| 607 | - add_rewrite_rule( "^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]",'top' ); |
|
| 606 | + add_rewrite_tag("%$tag%", '([^&]+)'); |
|
| 607 | + add_rewrite_rule("^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]", 'top'); |
|
| 608 | 608 | } |
| 609 | 609 | |
| 610 | 610 | /** |
| 611 | 611 | * Processes non-query string ipns. |
| 612 | 612 | * |
| 613 | 613 | */ |
| 614 | - public function maybe_process_new_ipn( $query ) { |
|
| 614 | + public function maybe_process_new_ipn($query) { |
|
| 615 | 615 | |
| 616 | - if ( is_admin() || ! $query->is_main_query() ) { |
|
| 616 | + if (is_admin() || !$query->is_main_query()) { |
|
| 617 | 617 | return; |
| 618 | 618 | } |
| 619 | 619 | |
| 620 | - $gateway = get_query_var( 'getpaid-ipn' ); |
|
| 620 | + $gateway = get_query_var('getpaid-ipn'); |
|
| 621 | 621 | |
| 622 | - if ( ! empty( $gateway ) ){ |
|
| 622 | + if (!empty($gateway)) { |
|
| 623 | 623 | |
| 624 | - $gateway = sanitize_text_field( $gateway ); |
|
| 624 | + $gateway = sanitize_text_field($gateway); |
|
| 625 | 625 | nocache_headers(); |
| 626 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
| 627 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
| 626 | + do_action('wpinv_verify_payment_ipn', $gateway); |
|
| 627 | + do_action("wpinv_verify_{$gateway}_ipn"); |
|
| 628 | 628 | exit; |
| 629 | 629 | |
| 630 | 630 | } |