@@ -1,19 +1,19 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // Exit if accessed directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 3 | +if (!defined('ABSPATH')) exit; |
|
| 4 | 4 | |
| 5 | -function wpinv_get_item_by( $field = '', $value = '', $type = '' ) { |
|
| 6 | - if( empty( $field ) || empty( $value ) ) { |
|
| 5 | +function wpinv_get_item_by($field = '', $value = '', $type = '') { |
|
| 6 | + if (empty($field) || empty($value)) { |
|
| 7 | 7 | return false; |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | $posts = array(); |
| 11 | 11 | |
| 12 | - switch( strtolower( $field ) ) { |
|
| 12 | + switch (strtolower($field)) { |
|
| 13 | 13 | case 'id': |
| 14 | - $item = new WPInv_Item( $value ); |
|
| 14 | + $item = new WPInv_Item($value); |
|
| 15 | 15 | |
| 16 | - if ( !empty( $item ) && $item->post_type == 'wpi_item' ) { |
|
| 16 | + if (!empty($item) && $item->post_type == 'wpi_item') { |
|
| 17 | 17 | return $item; |
| 18 | 18 | } |
| 19 | 19 | return false; |
@@ -22,16 +22,16 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | case 'slug': |
| 24 | 24 | case 'name': |
| 25 | - $posts = get_posts( array( |
|
| 25 | + $posts = get_posts(array( |
|
| 26 | 26 | 'post_type' => 'wpi_item', |
| 27 | 27 | 'name' => $value, |
| 28 | 28 | 'posts_per_page' => 1, |
| 29 | 29 | 'post_status' => 'any' |
| 30 | - ) ); |
|
| 30 | + )); |
|
| 31 | 31 | |
| 32 | 32 | break; |
| 33 | 33 | case 'custom_id': |
| 34 | - if ( empty( $value ) || empty( $type ) ) { |
|
| 34 | + if (empty($value) || empty($type)) { |
|
| 35 | 35 | return false; |
| 36 | 36 | } |
| 37 | 37 | |
@@ -51,10 +51,10 @@ discard block |
||
| 51 | 51 | 'post_status' => 'any', |
| 52 | 52 | 'orderby' => 'ID', |
| 53 | 53 | 'order' => 'ASC', |
| 54 | - 'meta_query' => array( $meta_query ) |
|
| 54 | + 'meta_query' => array($meta_query) |
|
| 55 | 55 | ); |
| 56 | 56 | |
| 57 | - $posts = get_posts( $args ); |
|
| 57 | + $posts = get_posts($args); |
|
| 58 | 58 | |
| 59 | 59 | break; |
| 60 | 60 | |
@@ -62,10 +62,10 @@ discard block |
||
| 62 | 62 | return false; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - if ( !empty( $posts[0] ) ) { |
|
| 66 | - $item = new WPInv_Item( $posts[0]->ID ); |
|
| 65 | + if (!empty($posts[0])) { |
|
| 66 | + $item = new WPInv_Item($posts[0]->ID); |
|
| 67 | 67 | |
| 68 | - if ( !empty( $item ) && $item->post_type == 'wpi_item' ) { |
|
| 68 | + if (!empty($item) && $item->post_type == 'wpi_item') { |
|
| 69 | 69 | return $item; |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -73,10 +73,10 @@ discard block |
||
| 73 | 73 | return false; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | -function wpinv_get_item( $item = 0 ) { |
|
| 77 | - if ( is_numeric( $item ) ) { |
|
| 78 | - $item = get_post( $item ); |
|
| 79 | - if ( ! $item || 'wpi_item' !== $item->post_type ) |
|
| 76 | +function wpinv_get_item($item = 0) { |
|
| 77 | + if (is_numeric($item)) { |
|
| 78 | + $item = get_post($item); |
|
| 79 | + if (!$item || 'wpi_item' !== $item->post_type) |
|
| 80 | 80 | return null; |
| 81 | 81 | return $item; |
| 82 | 82 | } |
@@ -89,150 +89,150 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $item = get_posts($args); |
| 91 | 91 | |
| 92 | - if ( $item ) { |
|
| 92 | + if ($item) { |
|
| 93 | 93 | return $item[0]; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | return null; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | -function wpinv_is_free_item( $item_id = 0 ) { |
|
| 100 | - if( empty( $item_id ) ) { |
|
| 99 | +function wpinv_is_free_item($item_id = 0) { |
|
| 100 | + if (empty($item_id)) { |
|
| 101 | 101 | return false; |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - $item = new WPInv_Item( $item_id ); |
|
| 104 | + $item = new WPInv_Item($item_id); |
|
| 105 | 105 | |
| 106 | 106 | return $item->is_free(); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | -function wpinv_item_is_editable( $item = 0 ) { |
|
| 110 | - if ( !empty( $item ) && is_a( $item, 'WP_Post' ) ) { |
|
| 109 | +function wpinv_item_is_editable($item = 0) { |
|
| 110 | + if (!empty($item) && is_a($item, 'WP_Post')) { |
|
| 111 | 111 | $item = $item->ID; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - if ( empty( $item ) ) { |
|
| 114 | + if (empty($item)) { |
|
| 115 | 115 | return true; |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - $item = new WPInv_Item( $item ); |
|
| 118 | + $item = new WPInv_Item($item); |
|
| 119 | 119 | |
| 120 | - return (bool) $item->is_editable(); |
|
| 120 | + return (bool)$item->is_editable(); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | -function wpinv_get_item_price( $item_id = 0 ) { |
|
| 124 | - if( empty( $item_id ) ) { |
|
| 123 | +function wpinv_get_item_price($item_id = 0) { |
|
| 124 | + if (empty($item_id)) { |
|
| 125 | 125 | return false; |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - $item = new WPInv_Item( $item_id ); |
|
| 128 | + $item = new WPInv_Item($item_id); |
|
| 129 | 129 | |
| 130 | 130 | return $item->get_price(); |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | -function wpinv_is_recurring_item( $item_id = 0 ) { |
|
| 134 | - if( empty( $item_id ) ) { |
|
| 133 | +function wpinv_is_recurring_item($item_id = 0) { |
|
| 134 | + if (empty($item_id)) { |
|
| 135 | 135 | return false; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - $item = new WPInv_Item( $item_id ); |
|
| 138 | + $item = new WPInv_Item($item_id); |
|
| 139 | 139 | |
| 140 | 140 | return $item->is_recurring(); |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | -function wpinv_item_price( $item_id = 0 ) { |
|
| 144 | - if( empty( $item_id ) ) { |
|
| 143 | +function wpinv_item_price($item_id = 0) { |
|
| 144 | + if (empty($item_id)) { |
|
| 145 | 145 | return false; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - $price = wpinv_get_item_price( $item_id ); |
|
| 149 | - $price = wpinv_price( wpinv_format_amount( $price ) ); |
|
| 148 | + $price = wpinv_get_item_price($item_id); |
|
| 149 | + $price = wpinv_price(wpinv_format_amount($price)); |
|
| 150 | 150 | |
| 151 | - return apply_filters( 'wpinv_item_price', $price, $item_id ); |
|
| 151 | + return apply_filters('wpinv_item_price', $price, $item_id); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | -function wpinv_item_show_price( $item_id = 0, $echo = true ) { |
|
| 155 | - if ( empty( $item_id ) ) { |
|
| 154 | +function wpinv_item_show_price($item_id = 0, $echo = true) { |
|
| 155 | + if (empty($item_id)) { |
|
| 156 | 156 | $item_id = get_the_ID(); |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - $price = wpinv_item_price( $item_id ); |
|
| 159 | + $price = wpinv_item_price($item_id); |
|
| 160 | 160 | |
| 161 | - $price = apply_filters( 'wpinv_item_price', wpinv_sanitize_amount( $price ), $item_id ); |
|
| 161 | + $price = apply_filters('wpinv_item_price', wpinv_sanitize_amount($price), $item_id); |
|
| 162 | 162 | $formatted_price = '<span class="wpinv_price" id="wpinv_item_' . $item_id . '">' . $price . '</span>'; |
| 163 | - $formatted_price = apply_filters( 'wpinv_item_price_after_html', $formatted_price, $item_id, $price ); |
|
| 163 | + $formatted_price = apply_filters('wpinv_item_price_after_html', $formatted_price, $item_id, $price); |
|
| 164 | 164 | |
| 165 | - if ( $echo ) { |
|
| 165 | + if ($echo) { |
|
| 166 | 166 | echo $formatted_price; |
| 167 | 167 | } else { |
| 168 | 168 | return $formatted_price; |
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | -function wpinv_get_item_final_price( $item_id = 0, $amount_override = null ) { |
|
| 173 | - if ( is_null( $amount_override ) ) { |
|
| 174 | - $original_price = get_post_meta( $item_id, '_wpinv_price', true ); |
|
| 172 | +function wpinv_get_item_final_price($item_id = 0, $amount_override = null) { |
|
| 173 | + if (is_null($amount_override)) { |
|
| 174 | + $original_price = get_post_meta($item_id, '_wpinv_price', true); |
|
| 175 | 175 | } else { |
| 176 | 176 | $original_price = $amount_override; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | $price = $original_price; |
| 180 | 180 | |
| 181 | - return apply_filters( 'wpinv_get_item_final_price', $price, $item_id ); |
|
| 181 | + return apply_filters('wpinv_get_item_final_price', $price, $item_id); |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | -function wpinv_item_custom_singular_name( $item_id ) { |
|
| 185 | - if( empty( $item_id ) ) { |
|
| 184 | +function wpinv_item_custom_singular_name($item_id) { |
|
| 185 | + if (empty($item_id)) { |
|
| 186 | 186 | return false; |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - $item = new WPInv_Item( $item_id ); |
|
| 189 | + $item = new WPInv_Item($item_id); |
|
| 190 | 190 | |
| 191 | 191 | return $item->get_custom_singular_name(); |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | function wpinv_get_item_types() { |
| 195 | 195 | $item_types = array( |
| 196 | - 'custom' => __( 'Standard', 'invoicing' ), |
|
| 197 | - 'fee' => __( 'Fee', 'invoicing' ), |
|
| 196 | + 'custom' => __('Standard', 'invoicing'), |
|
| 197 | + 'fee' => __('Fee', 'invoicing'), |
|
| 198 | 198 | ); |
| 199 | - return apply_filters( 'wpinv_get_item_types', $item_types ); |
|
| 199 | + return apply_filters('wpinv_get_item_types', $item_types); |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | function wpinv_item_types() { |
| 203 | 203 | $item_types = wpinv_get_item_types(); |
| 204 | 204 | |
| 205 | - return ( !empty( $item_types ) ? array_keys( $item_types ) : array() ); |
|
| 205 | + return (!empty($item_types) ? array_keys($item_types) : array()); |
|
| 206 | 206 | } |
| 207 | 207 | |
| 208 | -function wpinv_get_item_type( $item_id ) { |
|
| 209 | - if( empty( $item_id ) ) { |
|
| 208 | +function wpinv_get_item_type($item_id) { |
|
| 209 | + if (empty($item_id)) { |
|
| 210 | 210 | return false; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - $item = new WPInv_Item( $item_id ); |
|
| 213 | + $item = new WPInv_Item($item_id); |
|
| 214 | 214 | |
| 215 | 215 | return $item->get_type(); |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | -function wpinv_item_type( $item_id ) { |
|
| 218 | +function wpinv_item_type($item_id) { |
|
| 219 | 219 | $item_types = wpinv_get_item_types(); |
| 220 | 220 | |
| 221 | - $item_type = wpinv_get_item_type( $item_id ); |
|
| 221 | + $item_type = wpinv_get_item_type($item_id); |
|
| 222 | 222 | |
| 223 | - if ( empty( $item_type ) ) { |
|
| 223 | + if (empty($item_type)) { |
|
| 224 | 224 | $item_type = '-'; |
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - $item_type = isset( $item_types[$item_type] ) ? $item_types[$item_type] : __( $item_type, 'invoicing' ); |
|
| 227 | + $item_type = isset($item_types[$item_type]) ? $item_types[$item_type] : __($item_type, 'invoicing'); |
|
| 228 | 228 | |
| 229 | - return apply_filters( 'wpinv_item_type', $item_type, $item_id ); |
|
| 229 | + return apply_filters('wpinv_item_type', $item_type, $item_id); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | -function wpinv_record_item_in_log( $item_id = 0, $file_id, $user_info, $ip, $invoice_id ) { |
|
| 232 | +function wpinv_record_item_in_log($item_id = 0, $file_id, $user_info, $ip, $invoice_id) { |
|
| 233 | 233 | global $wpinv_logs; |
| 234 | 234 | |
| 235 | - if ( empty( $wpinv_logs ) ) { |
|
| 235 | + if (empty($wpinv_logs)) { |
|
| 236 | 236 | return false; |
| 237 | 237 | } |
| 238 | 238 | |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | 'log_type' => 'wpi_item' |
| 242 | 242 | ); |
| 243 | 243 | |
| 244 | - $user_id = isset( $user_info['user_id'] ) ? $user_info['user_id'] : (int) -1; |
|
| 244 | + $user_id = isset($user_info['user_id']) ? $user_info['user_id'] : (int) -1; |
|
| 245 | 245 | |
| 246 | 246 | $log_meta = array( |
| 247 | 247 | 'user_info' => $user_info, |
@@ -251,253 +251,253 @@ discard block |
||
| 251 | 251 | 'invoice_id'=> $invoice_id, |
| 252 | 252 | ); |
| 253 | 253 | |
| 254 | - $wpinv_logs->insert_log( $log_data, $log_meta ); |
|
| 254 | + $wpinv_logs->insert_log($log_data, $log_meta); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | -function wpinv_remove_item_logs_on_delete( $item_id = 0 ) { |
|
| 258 | - if ( 'wpi_item' !== get_post_type( $item_id ) ) |
|
| 257 | +function wpinv_remove_item_logs_on_delete($item_id = 0) { |
|
| 258 | + if ('wpi_item' !== get_post_type($item_id)) |
|
| 259 | 259 | return; |
| 260 | 260 | |
| 261 | 261 | global $wpinv_logs; |
| 262 | 262 | |
| 263 | - if ( empty( $wpinv_logs ) ) { |
|
| 263 | + if (empty($wpinv_logs)) { |
|
| 264 | 264 | return false; |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | // Remove all log entries related to this item |
| 268 | - $wpinv_logs->delete_logs( $item_id ); |
|
| 268 | + $wpinv_logs->delete_logs($item_id); |
|
| 269 | 269 | } |
| 270 | -add_action( 'delete_post', 'wpinv_remove_item_logs_on_delete' ); |
|
| 270 | +add_action('delete_post', 'wpinv_remove_item_logs_on_delete'); |
|
| 271 | 271 | |
| 272 | -function wpinv_get_random_item( $post_ids = true ) { |
|
| 273 | - wpinv_get_random_items( 1, $post_ids ); |
|
| 272 | +function wpinv_get_random_item($post_ids = true) { |
|
| 273 | + wpinv_get_random_items(1, $post_ids); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | -function wpinv_get_random_items( $num = 3, $post_ids = true ) { |
|
| 277 | - if ( $post_ids ) { |
|
| 278 | - $args = array( 'post_type' => 'wpi_item', 'orderby' => 'rand', 'post_count' => $num, 'fields' => 'ids' ); |
|
| 276 | +function wpinv_get_random_items($num = 3, $post_ids = true) { |
|
| 277 | + if ($post_ids) { |
|
| 278 | + $args = array('post_type' => 'wpi_item', 'orderby' => 'rand', 'post_count' => $num, 'fields' => 'ids'); |
|
| 279 | 279 | } else { |
| 280 | - $args = array( 'post_type' => 'wpi_item', 'orderby' => 'rand', 'post_count' => $num ); |
|
| 280 | + $args = array('post_type' => 'wpi_item', 'orderby' => 'rand', 'post_count' => $num); |
|
| 281 | 281 | } |
| 282 | 282 | |
| 283 | - $args = apply_filters( 'wpinv_get_random_items', $args ); |
|
| 283 | + $args = apply_filters('wpinv_get_random_items', $args); |
|
| 284 | 284 | |
| 285 | - return get_posts( $args ); |
|
| 285 | + return get_posts($args); |
|
| 286 | 286 | } |
| 287 | 287 | |
| 288 | -function wpinv_get_item_token( $url = '' ) { |
|
| 288 | +function wpinv_get_item_token($url = '') { |
|
| 289 | 289 | $args = array(); |
| 290 | - $hash = apply_filters( 'wpinv_get_url_token_algorithm', 'sha256' ); |
|
| 291 | - $secret = apply_filters( 'wpinv_get_url_token_secret', hash( $hash, wp_salt() ) ); |
|
| 290 | + $hash = apply_filters('wpinv_get_url_token_algorithm', 'sha256'); |
|
| 291 | + $secret = apply_filters('wpinv_get_url_token_secret', hash($hash, wp_salt())); |
|
| 292 | 292 | |
| 293 | - $parts = parse_url( $url ); |
|
| 293 | + $parts = parse_url($url); |
|
| 294 | 294 | $options = array(); |
| 295 | 295 | |
| 296 | - if ( isset( $parts['query'] ) ) { |
|
| 297 | - wp_parse_str( $parts['query'], $query_args ); |
|
| 296 | + if (isset($parts['query'])) { |
|
| 297 | + wp_parse_str($parts['query'], $query_args); |
|
| 298 | 298 | |
| 299 | - if ( ! empty( $query_args['o'] ) ) { |
|
| 300 | - $options = explode( ':', rawurldecode( $query_args['o'] ) ); |
|
| 299 | + if (!empty($query_args['o'])) { |
|
| 300 | + $options = explode(':', rawurldecode($query_args['o'])); |
|
| 301 | 301 | |
| 302 | - if ( in_array( 'ip', $options ) ) { |
|
| 302 | + if (in_array('ip', $options)) { |
|
| 303 | 303 | $args['ip'] = wpinv_get_ip(); |
| 304 | 304 | } |
| 305 | 305 | |
| 306 | - if ( in_array( 'ua', $options ) ) { |
|
| 306 | + if (in_array('ua', $options)) { |
|
| 307 | 307 | $ua = wpinv_get_user_agent(); |
| 308 | - $args['user_agent'] = rawurlencode( $ua ); |
|
| 308 | + $args['user_agent'] = rawurlencode($ua); |
|
| 309 | 309 | } |
| 310 | 310 | } |
| 311 | 311 | } |
| 312 | 312 | |
| 313 | - $args = apply_filters( 'wpinv_get_url_token_args', $args, $url, $options ); |
|
| 313 | + $args = apply_filters('wpinv_get_url_token_args', $args, $url, $options); |
|
| 314 | 314 | |
| 315 | 315 | $args['secret'] = $secret; |
| 316 | 316 | $args['token'] = false; |
| 317 | 317 | |
| 318 | - $url = add_query_arg( $args, $url ); |
|
| 319 | - $parts = parse_url( $url ); |
|
| 318 | + $url = add_query_arg($args, $url); |
|
| 319 | + $parts = parse_url($url); |
|
| 320 | 320 | |
| 321 | - if ( ! isset( $parts['path'] ) ) { |
|
| 321 | + if (!isset($parts['path'])) { |
|
| 322 | 322 | $parts['path'] = ''; |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - $token = md5( $parts['path'] . '?' . $parts['query'] ); |
|
| 325 | + $token = md5($parts['path'] . '?' . $parts['query']); |
|
| 326 | 326 | |
| 327 | 327 | return $token; |
| 328 | 328 | } |
| 329 | 329 | |
| 330 | -function wpinv_validate_url_token( $url = '' ) { |
|
| 330 | +function wpinv_validate_url_token($url = '') { |
|
| 331 | 331 | $ret = false; |
| 332 | - $parts = parse_url( $url ); |
|
| 332 | + $parts = parse_url($url); |
|
| 333 | 333 | |
| 334 | - if ( isset( $parts['query'] ) ) { |
|
| 335 | - wp_parse_str( $parts['query'], $query_args ); |
|
| 334 | + if (isset($parts['query'])) { |
|
| 335 | + wp_parse_str($parts['query'], $query_args); |
|
| 336 | 336 | |
| 337 | - $allowed = apply_filters( 'wpinv_url_token_allowed_params', array( |
|
| 337 | + $allowed = apply_filters('wpinv_url_token_allowed_params', array( |
|
| 338 | 338 | 'item', |
| 339 | 339 | 'ttl', |
| 340 | 340 | 'token' |
| 341 | - ) ); |
|
| 341 | + )); |
|
| 342 | 342 | |
| 343 | 343 | $remove = array(); |
| 344 | 344 | |
| 345 | - foreach( $query_args as $key => $value ) { |
|
| 346 | - if( false === in_array( $key, $allowed ) ) { |
|
| 345 | + foreach ($query_args as $key => $value) { |
|
| 346 | + if (false === in_array($key, $allowed)) { |
|
| 347 | 347 | $remove[] = $key; |
| 348 | 348 | } |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | - if( ! empty( $remove ) ) { |
|
| 352 | - $url = remove_query_arg( $remove, $url ); |
|
| 351 | + if (!empty($remove)) { |
|
| 352 | + $url = remove_query_arg($remove, $url); |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - if ( isset( $query_args['ttl'] ) && current_time( 'timestamp' ) > $query_args['ttl'] ) { |
|
| 356 | - wp_die( apply_filters( 'wpinv_item_link_expired_text', __( 'Sorry but your item link has expired.', 'invoicing' ) ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 355 | + if (isset($query_args['ttl']) && current_time('timestamp') > $query_args['ttl']) { |
|
| 356 | + wp_die(apply_filters('wpinv_item_link_expired_text', __('Sorry but your item link has expired.', 'invoicing')), __('Error', 'invoicing'), array('response' => 403)); |
|
| 357 | 357 | } |
| 358 | 358 | |
| 359 | - if ( isset( $query_args['token'] ) && $query_args['token'] == wpinv_get_item_token( $url ) ) { |
|
| 359 | + if (isset($query_args['token']) && $query_args['token'] == wpinv_get_item_token($url)) { |
|
| 360 | 360 | $ret = true; |
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | } |
| 364 | 364 | |
| 365 | - return apply_filters( 'wpinv_validate_url_token', $ret, $url, $query_args ); |
|
| 365 | + return apply_filters('wpinv_validate_url_token', $ret, $url, $query_args); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | -function wpinv_item_in_cart( $item_id = 0, $options = array() ) { |
|
| 368 | +function wpinv_item_in_cart($item_id = 0, $options = array()) { |
|
| 369 | 369 | $cart_items = wpinv_get_cart_contents(); |
| 370 | 370 | |
| 371 | 371 | $ret = false; |
| 372 | 372 | |
| 373 | - if ( is_array( $cart_items ) ) { |
|
| 374 | - foreach ( $cart_items as $item ) { |
|
| 375 | - if ( $item['id'] == $item_id ) { |
|
| 373 | + if (is_array($cart_items)) { |
|
| 374 | + foreach ($cart_items as $item) { |
|
| 375 | + if ($item['id'] == $item_id) { |
|
| 376 | 376 | $ret = true; |
| 377 | 377 | break; |
| 378 | 378 | } |
| 379 | 379 | } |
| 380 | 380 | } |
| 381 | 381 | |
| 382 | - return (bool) apply_filters( 'wpinv_item_in_cart', $ret, $item_id, $options ); |
|
| 382 | + return (bool)apply_filters('wpinv_item_in_cart', $ret, $item_id, $options); |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | -function wpinv_get_cart_item_tax( $item_id = 0, $subtotal = '', $options = array() ) { |
|
| 385 | +function wpinv_get_cart_item_tax($item_id = 0, $subtotal = '', $options = array()) { |
|
| 386 | 386 | $tax = 0; |
| 387 | - if ( ! wpinv_item_is_tax_exclusive( $item_id ) ) { |
|
| 388 | - $country = !empty( $_POST['country'] ) ? $_POST['country'] : false; |
|
| 389 | - $state = isset( $_POST['state'] ) ? $_POST['state'] : ''; |
|
| 387 | + if (!wpinv_item_is_tax_exclusive($item_id)) { |
|
| 388 | + $country = !empty($_POST['country']) ? $_POST['country'] : false; |
|
| 389 | + $state = isset($_POST['state']) ? $_POST['state'] : ''; |
|
| 390 | 390 | |
| 391 | - $tax = wpinv_calculate_tax( $subtotal, $country, $state, $item_id ); |
|
| 391 | + $tax = wpinv_calculate_tax($subtotal, $country, $state, $item_id); |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | - return apply_filters( 'wpinv_get_cart_item_tax', $tax, $item_id, $subtotal, $options ); |
|
| 394 | + return apply_filters('wpinv_get_cart_item_tax', $tax, $item_id, $subtotal, $options); |
|
| 395 | 395 | } |
| 396 | 396 | |
| 397 | -function wpinv_cart_item_price( $item ) { |
|
| 397 | +function wpinv_cart_item_price($item) { |
|
| 398 | 398 | $use_taxes = wpinv_use_taxes(); |
| 399 | - $item_id = isset( $item['id'] ) ? $item['id'] : 0; |
|
| 400 | - $price = isset( $item['item_price'] ) ? wpinv_round_amount( $item['item_price'] ) : 0; |
|
| 401 | - $options = isset( $item['options'] ) ? $item['options'] : array(); |
|
| 402 | - $price_id = isset( $options['price_id'] ) ? $options['price_id'] : false; |
|
| 403 | - $tax = wpinv_price( wpinv_format_amount( $item['tax'] ) ); |
|
| 404 | - |
|
| 405 | - if ( !wpinv_is_free_item( $item_id, $price_id ) && !wpinv_item_is_tax_exclusive( $item_id ) ) { |
|
| 406 | - if ( wpinv_prices_show_tax_on_checkout() && !wpinv_prices_include_tax() ) { |
|
| 399 | + $item_id = isset($item['id']) ? $item['id'] : 0; |
|
| 400 | + $price = isset($item['item_price']) ? wpinv_round_amount($item['item_price']) : 0; |
|
| 401 | + $options = isset($item['options']) ? $item['options'] : array(); |
|
| 402 | + $price_id = isset($options['price_id']) ? $options['price_id'] : false; |
|
| 403 | + $tax = wpinv_price(wpinv_format_amount($item['tax'])); |
|
| 404 | + |
|
| 405 | + if (!wpinv_is_free_item($item_id, $price_id) && !wpinv_item_is_tax_exclusive($item_id)) { |
|
| 406 | + if (wpinv_prices_show_tax_on_checkout() && !wpinv_prices_include_tax()) { |
|
| 407 | 407 | $price += $tax; |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | - if( !wpinv_prices_show_tax_on_checkout() && wpinv_prices_include_tax() ) { |
|
| 410 | + if (!wpinv_prices_show_tax_on_checkout() && wpinv_prices_include_tax()) { |
|
| 411 | 411 | $price -= $tax; |
| 412 | 412 | } |
| 413 | 413 | } |
| 414 | 414 | |
| 415 | - $price = wpinv_price( wpinv_format_amount( $price ) ); |
|
| 415 | + $price = wpinv_price(wpinv_format_amount($price)); |
|
| 416 | 416 | |
| 417 | - return apply_filters( 'wpinv_cart_item_price_label', $price, $item ); |
|
| 417 | + return apply_filters('wpinv_cart_item_price_label', $price, $item); |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | -function wpinv_cart_item_subtotal( $item ) { |
|
| 421 | - $subtotal = isset( $item['subtotal'] ) ? $item['subtotal'] : 0; |
|
| 422 | - $subtotal = wpinv_price( wpinv_format_amount( $subtotal ) ); |
|
| 420 | +function wpinv_cart_item_subtotal($item) { |
|
| 421 | + $subtotal = isset($item['subtotal']) ? $item['subtotal'] : 0; |
|
| 422 | + $subtotal = wpinv_price(wpinv_format_amount($subtotal)); |
|
| 423 | 423 | |
| 424 | - return apply_filters( 'wpinv_cart_item_subtotal_label', $subtotal, $item ); |
|
| 424 | + return apply_filters('wpinv_cart_item_subtotal_label', $subtotal, $item); |
|
| 425 | 425 | } |
| 426 | 426 | |
| 427 | -function wpinv_cart_item_tax( $item ) { |
|
| 427 | +function wpinv_cart_item_tax($item) { |
|
| 428 | 428 | $tax = ''; |
| 429 | 429 | $tax_rate = ''; |
| 430 | 430 | |
| 431 | - if ( isset( $item['tax'] ) && $item['tax'] > 0 && $item['subtotal'] > 0 ) { |
|
| 432 | - $tax = wpinv_price( wpinv_format_amount( $item['tax'] ) ); |
|
| 433 | - $tax_rate = !empty( $item['vat_rate'] ) ? $item['vat_rate'] : ( $item['tax'] / $item['subtotal'] ) * 100; |
|
| 434 | - $tax_rate = $tax_rate > 0 ? (float)wpinv_round_amount( $tax_rate, 4 ) : ''; |
|
| 431 | + if (isset($item['tax']) && $item['tax'] > 0 && $item['subtotal'] > 0) { |
|
| 432 | + $tax = wpinv_price(wpinv_format_amount($item['tax'])); |
|
| 433 | + $tax_rate = !empty($item['vat_rate']) ? $item['vat_rate'] : ($item['tax'] / $item['subtotal']) * 100; |
|
| 434 | + $tax_rate = $tax_rate > 0 ? (float)wpinv_round_amount($tax_rate, 4) : ''; |
|
| 435 | 435 | $tax_rate = $tax_rate != '' ? ' <small class="tax-rate normal small">(' . $tax_rate . '%)</small>' : ''; |
| 436 | 436 | } |
| 437 | 437 | |
| 438 | - $tax = $tax . $tax_rate; |
|
| 438 | + $tax = $tax . $tax_rate; |
|
| 439 | 439 | |
| 440 | - if ( $tax === '' ) { |
|
| 440 | + if ($tax === '') { |
|
| 441 | 441 | $tax = 0; // Zero tax |
| 442 | 442 | } |
| 443 | 443 | |
| 444 | - return apply_filters( 'wpinv_cart_item_tax_label', $tax, $item ); |
|
| 444 | + return apply_filters('wpinv_cart_item_tax_label', $tax, $item); |
|
| 445 | 445 | } |
| 446 | 446 | |
| 447 | -function wpinv_get_cart_item_price( $item_id = 0, $cart_item = array(), $options = array(), $remove_tax_from_inclusive = false ) { |
|
| 447 | +function wpinv_get_cart_item_price($item_id = 0, $cart_item = array(), $options = array(), $remove_tax_from_inclusive = false) { |
|
| 448 | 448 | $price = 0; |
| 449 | 449 | |
| 450 | 450 | // Set custom price |
| 451 | - if ( isset( $cart_item['custom_price'] ) && $cart_item['custom_price'] !== '' ) { |
|
| 451 | + if (isset($cart_item['custom_price']) && $cart_item['custom_price'] !== '') { |
|
| 452 | 452 | $price = $cart_item['custom_price']; |
| 453 | 453 | } else { |
| 454 | - $variable_prices = wpinv_has_variable_prices( $item_id ); |
|
| 454 | + $variable_prices = wpinv_has_variable_prices($item_id); |
|
| 455 | 455 | |
| 456 | - if ( $variable_prices ) { |
|
| 457 | - $prices = wpinv_get_variable_prices( $item_id ); |
|
| 456 | + if ($variable_prices) { |
|
| 457 | + $prices = wpinv_get_variable_prices($item_id); |
|
| 458 | 458 | |
| 459 | - if ( $prices ) { |
|
| 460 | - if( ! empty( $options ) ) { |
|
| 461 | - $price = isset( $prices[ $options['price_id'] ] ) ? $prices[ $options['price_id'] ]['amount'] : false; |
|
| 459 | + if ($prices) { |
|
| 460 | + if (!empty($options)) { |
|
| 461 | + $price = isset($prices[$options['price_id']]) ? $prices[$options['price_id']]['amount'] : false; |
|
| 462 | 462 | } else { |
| 463 | 463 | $price = false; |
| 464 | 464 | } |
| 465 | 465 | } |
| 466 | 466 | } |
| 467 | 467 | |
| 468 | - if( ! $variable_prices || false === $price ) { |
|
| 468 | + if (!$variable_prices || false === $price) { |
|
| 469 | 469 | // Get the standard Item price if not using variable prices |
| 470 | - $price = wpinv_get_item_price( $item_id ); |
|
| 470 | + $price = wpinv_get_item_price($item_id); |
|
| 471 | 471 | } |
| 472 | 472 | } |
| 473 | 473 | |
| 474 | - if ( $remove_tax_from_inclusive && wpinv_prices_include_tax() ) { |
|
| 475 | - $price -= wpinv_get_cart_item_tax( $item_id, $price, $options ); |
|
| 474 | + if ($remove_tax_from_inclusive && wpinv_prices_include_tax()) { |
|
| 475 | + $price -= wpinv_get_cart_item_tax($item_id, $price, $options); |
|
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - return apply_filters( 'wpinv_cart_item_price', $price, $item_id, $cart_item, $options, $remove_tax_from_inclusive ); |
|
| 478 | + return apply_filters('wpinv_cart_item_price', $price, $item_id, $cart_item, $options, $remove_tax_from_inclusive); |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | -function wpinv_get_cart_item_price_id( $item = array() ) { |
|
| 482 | - if( isset( $item['item_number'] ) ) { |
|
| 483 | - $price_id = isset( $item['item_number']['options']['price_id'] ) ? $item['item_number']['options']['price_id'] : null; |
|
| 481 | +function wpinv_get_cart_item_price_id($item = array()) { |
|
| 482 | + if (isset($item['item_number'])) { |
|
| 483 | + $price_id = isset($item['item_number']['options']['price_id']) ? $item['item_number']['options']['price_id'] : null; |
|
| 484 | 484 | } else { |
| 485 | - $price_id = isset( $item['options']['price_id'] ) ? $item['options']['price_id'] : null; |
|
| 485 | + $price_id = isset($item['options']['price_id']) ? $item['options']['price_id'] : null; |
|
| 486 | 486 | } |
| 487 | 487 | return $price_id; |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | -function wpinv_get_cart_item_price_name( $item = array() ) { |
|
| 491 | - $price_id = (int)wpinv_get_cart_item_price_id( $item ); |
|
| 492 | - $prices = wpinv_get_variable_prices( $item['id'] ); |
|
| 493 | - $name = ! empty( $prices[ $price_id ] ) ? $prices[ $price_id ]['name'] : ''; |
|
| 494 | - return apply_filters( 'wpinv_get_cart_item_price_name', $name, $item['id'], $price_id, $item ); |
|
| 490 | +function wpinv_get_cart_item_price_name($item = array()) { |
|
| 491 | + $price_id = (int)wpinv_get_cart_item_price_id($item); |
|
| 492 | + $prices = wpinv_get_variable_prices($item['id']); |
|
| 493 | + $name = !empty($prices[$price_id]) ? $prices[$price_id]['name'] : ''; |
|
| 494 | + return apply_filters('wpinv_get_cart_item_price_name', $name, $item['id'], $price_id, $item); |
|
| 495 | 495 | } |
| 496 | 496 | |
| 497 | -function wpinv_get_cart_item_name( $item = array() ) { |
|
| 498 | - $item_title = !empty( $item['name'] ) ? $item['name'] : get_the_title( $item['id'] ); |
|
| 497 | +function wpinv_get_cart_item_name($item = array()) { |
|
| 498 | + $item_title = !empty($item['name']) ? $item['name'] : get_the_title($item['id']); |
|
| 499 | 499 | |
| 500 | - if ( empty( $item_title ) ) { |
|
| 500 | + if (empty($item_title)) { |
|
| 501 | 501 | $item_title = $item['id']; |
| 502 | 502 | } |
| 503 | 503 | |
@@ -507,23 +507,23 @@ discard block |
||
| 507 | 507 | } |
| 508 | 508 | */ |
| 509 | 509 | |
| 510 | - return apply_filters( 'wpinv_get_cart_item_name', $item_title, $item['id'], $item ); |
|
| 510 | + return apply_filters('wpinv_get_cart_item_name', $item_title, $item['id'], $item); |
|
| 511 | 511 | } |
| 512 | 512 | |
| 513 | -function wpinv_has_variable_prices( $item_id = 0 ) { |
|
| 513 | +function wpinv_has_variable_prices($item_id = 0) { |
|
| 514 | 514 | return false; |
| 515 | 515 | } |
| 516 | 516 | |
| 517 | -function wpinv_get_item_position_in_cart( $item_id = 0, $options = array() ) { |
|
| 517 | +function wpinv_get_item_position_in_cart($item_id = 0, $options = array()) { |
|
| 518 | 518 | $cart_items = wpinv_get_cart_contents(); |
| 519 | 519 | |
| 520 | - if ( !is_array( $cart_items ) ) { |
|
| 520 | + if (!is_array($cart_items)) { |
|
| 521 | 521 | return false; // Empty cart |
| 522 | 522 | } else { |
| 523 | - foreach ( $cart_items as $position => $item ) { |
|
| 524 | - if ( $item['id'] == $item_id ) { |
|
| 525 | - if ( isset( $options['price_id'] ) && isset( $item['options']['price_id'] ) ) { |
|
| 526 | - if ( (int) $options['price_id'] == (int) $item['options']['price_id'] ) { |
|
| 523 | + foreach ($cart_items as $position => $item) { |
|
| 524 | + if ($item['id'] == $item_id) { |
|
| 525 | + if (isset($options['price_id']) && isset($item['options']['price_id'])) { |
|
| 526 | + if ((int)$options['price_id'] == (int)$item['options']['price_id']) { |
|
| 527 | 527 | return $position; |
| 528 | 528 | } |
| 529 | 529 | } else { |
@@ -536,80 +536,80 @@ discard block |
||
| 536 | 536 | return false; // Not found |
| 537 | 537 | } |
| 538 | 538 | |
| 539 | -function wpinv_get_cart_item_quantity( $item ) { |
|
| 540 | - if ( wpinv_item_quantities_enabled() ) { |
|
| 541 | - $quantity = !empty( $item['quantity'] ) && (int)$item['quantity'] > 0 ? absint( $item['quantity'] ) : 1; |
|
| 539 | +function wpinv_get_cart_item_quantity($item) { |
|
| 540 | + if (wpinv_item_quantities_enabled()) { |
|
| 541 | + $quantity = !empty($item['quantity']) && (int)$item['quantity'] > 0 ? absint($item['quantity']) : 1; |
|
| 542 | 542 | } else { |
| 543 | 543 | $quantity = 1; |
| 544 | 544 | } |
| 545 | 545 | |
| 546 | - if ( $quantity < 1 ) { |
|
| 546 | + if ($quantity < 1) { |
|
| 547 | 547 | $quantity = 1; |
| 548 | 548 | } |
| 549 | 549 | |
| 550 | - return apply_filters( 'wpinv_get_cart_item_quantity', $quantity, $item ); |
|
| 550 | + return apply_filters('wpinv_get_cart_item_quantity', $quantity, $item); |
|
| 551 | 551 | } |
| 552 | 552 | |
| 553 | -function wpinv_get_item_suffix( $item, $html = true ) { |
|
| 554 | - if ( empty( $item ) ) { |
|
| 553 | +function wpinv_get_item_suffix($item, $html = true) { |
|
| 554 | + if (empty($item)) { |
|
| 555 | 555 | return NULL; |
| 556 | 556 | } |
| 557 | 557 | |
| 558 | - if ( is_int( $item ) ) { |
|
| 559 | - $item = new WPInv_Item( $item ); |
|
| 558 | + if (is_int($item)) { |
|
| 559 | + $item = new WPInv_Item($item); |
|
| 560 | 560 | } |
| 561 | 561 | |
| 562 | - if ( !( is_object( $item ) && is_a( $item, 'WPInv_Item' ) ) ) { |
|
| 562 | + if (!(is_object($item) && is_a($item, 'WPInv_Item'))) { |
|
| 563 | 563 | return NULL; |
| 564 | 564 | } |
| 565 | 565 | |
| 566 | - $suffix = $item->is_recurring() ? ' <span class="wpi-suffix">' . __( '(r)', 'invoicing' ) . '</span>' : ''; |
|
| 566 | + $suffix = $item->is_recurring() ? ' <span class="wpi-suffix">' . __('(r)', 'invoicing') . '</span>' : ''; |
|
| 567 | 567 | |
| 568 | - if ( !$html && $suffix ) { |
|
| 569 | - $suffix = strip_tags( $suffix ); |
|
| 568 | + if (!$html && $suffix) { |
|
| 569 | + $suffix = strip_tags($suffix); |
|
| 570 | 570 | } |
| 571 | 571 | |
| 572 | - return apply_filters( 'wpinv_get_item_suffix', $suffix, $item, $html ); |
|
| 572 | + return apply_filters('wpinv_get_item_suffix', $suffix, $item, $html); |
|
| 573 | 573 | } |
| 574 | 574 | |
| 575 | -function wpinv_remove_item( $item = 0, $force_delete = false ) { |
|
| 576 | - if ( empty( $item ) ) { |
|
| 575 | +function wpinv_remove_item($item = 0, $force_delete = false) { |
|
| 576 | + if (empty($item)) { |
|
| 577 | 577 | return NULL; |
| 578 | 578 | } |
| 579 | 579 | |
| 580 | - if ( is_int( $item ) ) { |
|
| 581 | - $item = new WPInv_Item( $item ); |
|
| 580 | + if (is_int($item)) { |
|
| 581 | + $item = new WPInv_Item($item); |
|
| 582 | 582 | } |
| 583 | 583 | |
| 584 | - if ( !( is_object( $item ) && is_a( $item, 'WPInv_Item' ) ) ) { |
|
| 584 | + if (!(is_object($item) && is_a($item, 'WPInv_Item'))) { |
|
| 585 | 585 | return NULL; |
| 586 | 586 | } |
| 587 | 587 | |
| 588 | - do_action( 'wpinv_pre_delete_item', $item ); |
|
| 588 | + do_action('wpinv_pre_delete_item', $item); |
|
| 589 | 589 | |
| 590 | - wp_delete_post( $item->ID, $force_delete ); |
|
| 590 | + wp_delete_post($item->ID, $force_delete); |
|
| 591 | 591 | |
| 592 | - do_action( 'wpinv_post_delete_item', $item ); |
|
| 592 | + do_action('wpinv_post_delete_item', $item); |
|
| 593 | 593 | } |
| 594 | 594 | |
| 595 | -function wpinv_can_delete_item( $post_id ) { |
|
| 596 | - $return = current_user_can( 'manage_options' ) ? true : false; |
|
| 595 | +function wpinv_can_delete_item($post_id) { |
|
| 596 | + $return = current_user_can('manage_options') ? true : false; |
|
| 597 | 597 | |
| 598 | - if ( $return && wpinv_item_in_use( $post_id ) ) { |
|
| 598 | + if ($return && wpinv_item_in_use($post_id)) { |
|
| 599 | 599 | $return = false; // Don't delete item already use in invoices. |
| 600 | 600 | } |
| 601 | 601 | |
| 602 | - return apply_filters( 'wpinv_can_delete_item', $return, $post_id ); |
|
| 602 | + return apply_filters('wpinv_can_delete_item', $return, $post_id); |
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | 605 | function wpinv_admin_action_delete() { |
| 606 | 606 | $screen = get_current_screen(); |
| 607 | 607 | |
| 608 | - if ( !empty( $screen->post_type ) && $screen->post_type == 'wpi_item' && !empty( $_REQUEST['post'] ) && is_array( $_REQUEST['post'] ) ) { |
|
| 608 | + if (!empty($screen->post_type) && $screen->post_type == 'wpi_item' && !empty($_REQUEST['post']) && is_array($_REQUEST['post'])) { |
|
| 609 | 609 | $post_ids = array(); |
| 610 | 610 | |
| 611 | - foreach ( $_REQUEST['post'] as $post_id ) { |
|
| 612 | - if ( !wpinv_can_delete_item( $post_id ) ) { |
|
| 611 | + foreach ($_REQUEST['post'] as $post_id) { |
|
| 612 | + if (!wpinv_can_delete_item($post_id)) { |
|
| 613 | 613 | continue; |
| 614 | 614 | } |
| 615 | 615 | |
@@ -619,86 +619,86 @@ discard block |
||
| 619 | 619 | $_REQUEST['post'] = $post_ids; |
| 620 | 620 | } |
| 621 | 621 | } |
| 622 | -add_action( 'admin_action_trash', 'wpinv_admin_action_delete', -10 ); |
|
| 623 | -add_action( 'admin_action_delete', 'wpinv_admin_action_delete', -10 ); |
|
| 622 | +add_action('admin_action_trash', 'wpinv_admin_action_delete', -10); |
|
| 623 | +add_action('admin_action_delete', 'wpinv_admin_action_delete', -10); |
|
| 624 | 624 | |
| 625 | -function wpinv_check_delete_item( $check, $post, $force_delete ) { |
|
| 626 | - if ( $post->post_type == 'wpi_item' ) { |
|
| 627 | - if ( $force_delete && !wpinv_can_delete_item( $post->ID ) ) { |
|
| 625 | +function wpinv_check_delete_item($check, $post, $force_delete) { |
|
| 626 | + if ($post->post_type == 'wpi_item') { |
|
| 627 | + if ($force_delete && !wpinv_can_delete_item($post->ID)) { |
|
| 628 | 628 | return true; |
| 629 | 629 | } |
| 630 | 630 | } |
| 631 | 631 | |
| 632 | 632 | return $check; |
| 633 | 633 | } |
| 634 | -add_filter( 'pre_delete_post', 'wpinv_check_delete_item', 10, 3 ); |
|
| 634 | +add_filter('pre_delete_post', 'wpinv_check_delete_item', 10, 3); |
|
| 635 | 635 | |
| 636 | -function wpinv_item_in_use( $item_id ) { |
|
| 636 | +function wpinv_item_in_use($item_id) { |
|
| 637 | 637 | global $wpdb, $wpi_items_in_use; |
| 638 | 638 | |
| 639 | - if ( !$item_id > 0 ) { |
|
| 639 | + if (!$item_id > 0) { |
|
| 640 | 640 | return false; |
| 641 | 641 | } |
| 642 | 642 | |
| 643 | - if ( !empty( $wpi_items_in_use ) ) { |
|
| 644 | - if ( isset( $wpi_items_in_use[$item_id] ) ) { |
|
| 643 | + if (!empty($wpi_items_in_use)) { |
|
| 644 | + if (isset($wpi_items_in_use[$item_id])) { |
|
| 645 | 645 | return $wpi_items_in_use[$item_id]; |
| 646 | 646 | } |
| 647 | 647 | } else { |
| 648 | 648 | $wpi_items_in_use = array(); |
| 649 | 649 | } |
| 650 | 650 | |
| 651 | - $statuses = array_keys( wpinv_get_invoice_statuses( true ) ); |
|
| 651 | + $statuses = array_keys(wpinv_get_invoice_statuses(true)); |
|
| 652 | 652 | |
| 653 | - $query = "SELECT p.ID FROM " . $wpdb->posts . " AS p INNER JOIN " . $wpdb->postmeta . " AS pm ON p.ID = pm.post_id WHERE p.post_type = 'wpi_invoice' AND p.post_status IN( '" . implode( "','", $statuses ) . "' ) AND pm.meta_key = '_wpinv_item_ids' AND FIND_IN_SET( '" . (int)$item_id . "', pm.meta_value )"; |
|
| 654 | - $in_use = $wpdb->get_var( $query ) > 0 ? true : false; |
|
| 653 | + $query = "SELECT p.ID FROM " . $wpdb->posts . " AS p INNER JOIN " . $wpdb->postmeta . " AS pm ON p.ID = pm.post_id WHERE p.post_type = 'wpi_invoice' AND p.post_status IN( '" . implode("','", $statuses) . "' ) AND pm.meta_key = '_wpinv_item_ids' AND FIND_IN_SET( '" . (int)$item_id . "', pm.meta_value )"; |
|
| 654 | + $in_use = $wpdb->get_var($query) > 0 ? true : false; |
|
| 655 | 655 | |
| 656 | 656 | $wpi_items_in_use[$item_id] = $in_use; |
| 657 | 657 | |
| 658 | 658 | return $in_use; |
| 659 | 659 | } |
| 660 | 660 | |
| 661 | -function wpinv_create_item( $args = array(), $wp_error = false, $force_update = false ) { |
|
| 661 | +function wpinv_create_item($args = array(), $wp_error = false, $force_update = false) { |
|
| 662 | 662 | // Set some defaults |
| 663 | 663 | $defaults = array( |
| 664 | - 'type' => 'custom', // Optional. Item type. Default 'custom'. |
|
| 665 | - 'title' => '', // Required. Item title. |
|
| 666 | - 'custom_id' => 0, // Optional. Any integer or non numeric id. Must be unique within item type. |
|
| 667 | - 'price' => '0.00', // Optional. Item price. Default '0.00'. |
|
| 668 | - 'status' => 'pending', // Optional. pending, publish |
|
| 669 | - 'custom_name' => '', // Optional. Plural sub title for item. |
|
| 670 | - 'custom_singular_name' => '', // Optional. Singular sub title for item. |
|
| 671 | - 'vat_rule' => 'digital', // Optional. digital => Digital item, physical => Physical item |
|
| 672 | - 'editable' => true, // Optional. Item editable from Items list page? Default true. |
|
| 673 | - 'excerpt' => '', // Optional. Item short description |
|
| 664 | + 'type' => 'custom', // Optional. Item type. Default 'custom'. |
|
| 665 | + 'title' => '', // Required. Item title. |
|
| 666 | + 'custom_id' => 0, // Optional. Any integer or non numeric id. Must be unique within item type. |
|
| 667 | + 'price' => '0.00', // Optional. Item price. Default '0.00'. |
|
| 668 | + 'status' => 'pending', // Optional. pending, publish |
|
| 669 | + 'custom_name' => '', // Optional. Plural sub title for item. |
|
| 670 | + 'custom_singular_name' => '', // Optional. Singular sub title for item. |
|
| 671 | + 'vat_rule' => 'digital', // Optional. digital => Digital item, physical => Physical item |
|
| 672 | + 'editable' => true, // Optional. Item editable from Items list page? Default true. |
|
| 673 | + 'excerpt' => '', // Optional. Item short description |
|
| 674 | 674 | /* Recurring item fields */ |
| 675 | - 'is_recurring' => 0, // Optional. 1 => Allow recurring or 0 => Don't allow recurring |
|
| 676 | - 'recurring_period' => 'M', // Optional. D => Daily, W => Weekly, M => Monthly, Y => Yearly |
|
| 677 | - 'recurring_interval' => 0, // Optional. Integer value between 1 - 90. |
|
| 678 | - 'recurring_limit' => 0, // Optional. Any integer number. 0 for recurring forever until cancelled. |
|
| 679 | - 'free_trial' => 0, // Optional. 1 => Allow free trial or 0 => Don't free trial |
|
| 680 | - 'trial_period' => 'M', // Optional. D => Daily, W => Weekly, M => Monthly, Y => Yearly |
|
| 681 | - 'trial_interval' => 0, // Optional. Any integer number. |
|
| 675 | + 'is_recurring' => 0, // Optional. 1 => Allow recurring or 0 => Don't allow recurring |
|
| 676 | + 'recurring_period' => 'M', // Optional. D => Daily, W => Weekly, M => Monthly, Y => Yearly |
|
| 677 | + 'recurring_interval' => 0, // Optional. Integer value between 1 - 90. |
|
| 678 | + 'recurring_limit' => 0, // Optional. Any integer number. 0 for recurring forever until cancelled. |
|
| 679 | + 'free_trial' => 0, // Optional. 1 => Allow free trial or 0 => Don't free trial |
|
| 680 | + 'trial_period' => 'M', // Optional. D => Daily, W => Weekly, M => Monthly, Y => Yearly |
|
| 681 | + 'trial_interval' => 0, // Optional. Any integer number. |
|
| 682 | 682 | ); |
| 683 | 683 | |
| 684 | - $data = wp_parse_args( $args, $defaults ); |
|
| 684 | + $data = wp_parse_args($args, $defaults); |
|
| 685 | 685 | |
| 686 | - if ( empty( $data['type'] ) ) { |
|
| 686 | + if (empty($data['type'])) { |
|
| 687 | 687 | $data['type'] = 'custom'; |
| 688 | 688 | } |
| 689 | 689 | |
| 690 | - if ( !empty( $data['custom_id'] ) ) { |
|
| 691 | - $item = wpinv_get_item_by( 'custom_id', $data['custom_id'], $data['type'] ); |
|
| 690 | + if (!empty($data['custom_id'])) { |
|
| 691 | + $item = wpinv_get_item_by('custom_id', $data['custom_id'], $data['type']); |
|
| 692 | 692 | } else { |
| 693 | 693 | $item = NULL; |
| 694 | 694 | } |
| 695 | 695 | |
| 696 | - if ( !empty( $item ) ) { |
|
| 697 | - if ( $force_update ) { |
|
| 698 | - if ( empty( $args['ID'] ) ) { |
|
| 696 | + if (!empty($item)) { |
|
| 697 | + if ($force_update) { |
|
| 698 | + if (empty($args['ID'])) { |
|
| 699 | 699 | $args['ID'] = $item->ID; |
| 700 | 700 | } |
| 701 | - return wpinv_update_item( $args, $wp_error ); |
|
| 701 | + return wpinv_update_item($args, $wp_error); |
|
| 702 | 702 | } |
| 703 | 703 | |
| 704 | 704 | return $item; |
@@ -709,19 +709,19 @@ discard block |
||
| 709 | 709 | $meta['custom_id'] = $data['custom_id']; |
| 710 | 710 | $meta['custom_singular_name'] = $data['custom_singular_name']; |
| 711 | 711 | $meta['custom_name'] = $data['custom_name']; |
| 712 | - $meta['price'] = wpinv_round_amount( $data['price'] ); |
|
| 712 | + $meta['price'] = wpinv_round_amount($data['price']); |
|
| 713 | 713 | $meta['editable'] = (int)$data['editable']; |
| 714 | 714 | $meta['vat_rule'] = $data['vat_rule']; |
| 715 | 715 | $meta['vat_class'] = '_standard'; |
| 716 | 716 | |
| 717 | - if ( !empty( $data['is_recurring'] ) ) { |
|
| 717 | + if (!empty($data['is_recurring'])) { |
|
| 718 | 718 | $meta['is_recurring'] = $data['is_recurring']; |
| 719 | 719 | $meta['recurring_period'] = $data['recurring_period']; |
| 720 | - $meta['recurring_interval'] = absint( $data['recurring_interval'] ); |
|
| 721 | - $meta['recurring_limit'] = absint( $data['recurring_limit'] ); |
|
| 720 | + $meta['recurring_interval'] = absint($data['recurring_interval']); |
|
| 721 | + $meta['recurring_limit'] = absint($data['recurring_limit']); |
|
| 722 | 722 | $meta['free_trial'] = $data['free_trial']; |
| 723 | 723 | $meta['trial_period'] = $data['trial_period']; |
| 724 | - $meta['trial_interval'] = absint( $data['trial_interval'] ); |
|
| 724 | + $meta['trial_interval'] = absint($data['trial_interval']); |
|
| 725 | 725 | } else { |
| 726 | 726 | $meta['is_recurring'] = 0; |
| 727 | 727 | $meta['recurring_period'] = ''; |
@@ -732,7 +732,7 @@ discard block |
||
| 732 | 732 | $meta['trial_interval'] = ''; |
| 733 | 733 | } |
| 734 | 734 | |
| 735 | - $post_data = array( |
|
| 735 | + $post_data = array( |
|
| 736 | 736 | 'post_title' => $data['title'], |
| 737 | 737 | 'post_excerpt' => $data['excerpt'], |
| 738 | 738 | 'post_status' => $data['status'], |
@@ -740,86 +740,86 @@ discard block |
||
| 740 | 740 | ); |
| 741 | 741 | |
| 742 | 742 | $item = new WPInv_Item(); |
| 743 | - $return = $item->create( $post_data, $wp_error ); |
|
| 743 | + $return = $item->create($post_data, $wp_error); |
|
| 744 | 744 | |
| 745 | - if ( $return && !empty( $item ) && !is_wp_error( $return ) ) { |
|
| 745 | + if ($return && !empty($item) && !is_wp_error($return)) { |
|
| 746 | 746 | return $item; |
| 747 | 747 | } |
| 748 | 748 | |
| 749 | - if ( $wp_error && is_wp_error( $return ) ) { |
|
| 749 | + if ($wp_error && is_wp_error($return)) { |
|
| 750 | 750 | return $return; |
| 751 | 751 | } |
| 752 | 752 | return 0; |
| 753 | 753 | } |
| 754 | 754 | |
| 755 | -function wpinv_update_item( $args = array(), $wp_error = false ) { |
|
| 756 | - $item = !empty( $args['ID'] ) ? new WPInv_Item( $args['ID'] ) : NULL; |
|
| 755 | +function wpinv_update_item($args = array(), $wp_error = false) { |
|
| 756 | + $item = !empty($args['ID']) ? new WPInv_Item($args['ID']) : NULL; |
|
| 757 | 757 | |
| 758 | - if ( empty( $item ) || !( !empty( $item->post_type ) && $item->post_type == 'wpi_item' ) ) { |
|
| 759 | - if ( $wp_error ) { |
|
| 760 | - return new WP_Error( 'wpinv_invalid_item', __( 'Invalid item.', 'invoicing' ) ); |
|
| 758 | + if (empty($item) || !(!empty($item->post_type) && $item->post_type == 'wpi_item')) { |
|
| 759 | + if ($wp_error) { |
|
| 760 | + return new WP_Error('wpinv_invalid_item', __('Invalid item.', 'invoicing')); |
|
| 761 | 761 | } |
| 762 | 762 | return 0; |
| 763 | 763 | } |
| 764 | 764 | |
| 765 | - if ( !empty( $args['custom_id'] ) ) { |
|
| 766 | - $item_exists = wpinv_get_item_by( 'custom_id', $args['custom_id'], ( !empty( $args['type'] ) ? $args['type'] : $item->type ) ); |
|
| 765 | + if (!empty($args['custom_id'])) { |
|
| 766 | + $item_exists = wpinv_get_item_by('custom_id', $args['custom_id'], (!empty($args['type']) ? $args['type'] : $item->type)); |
|
| 767 | 767 | |
| 768 | - if ( !empty( $item_exists ) && $item_exists->ID != $args['ID'] ) { |
|
| 769 | - if ( $wp_error ) { |
|
| 770 | - return new WP_Error( 'wpinv_invalid_custom_id', __( 'Item with custom id already exists.', 'invoicing' ) ); |
|
| 768 | + if (!empty($item_exists) && $item_exists->ID != $args['ID']) { |
|
| 769 | + if ($wp_error) { |
|
| 770 | + return new WP_Error('wpinv_invalid_custom_id', __('Item with custom id already exists.', 'invoicing')); |
|
| 771 | 771 | } |
| 772 | 772 | return 0; |
| 773 | 773 | } |
| 774 | 774 | } |
| 775 | 775 | |
| 776 | - $meta_fields = array( 'type', 'custom_id', 'custom_singular_name', 'custom_name', 'price', 'editable', 'vat_rule', 'vat_class', 'is_recurring', 'recurring_period', 'recurring_interval', 'recurring_limit', 'free_trial', 'trial_period', 'trial_interval' ); |
|
| 776 | + $meta_fields = array('type', 'custom_id', 'custom_singular_name', 'custom_name', 'price', 'editable', 'vat_rule', 'vat_class', 'is_recurring', 'recurring_period', 'recurring_interval', 'recurring_limit', 'free_trial', 'trial_period', 'trial_interval'); |
|
| 777 | 777 | |
| 778 | 778 | $post_data = array(); |
| 779 | - if ( isset( $args['title'] ) ) { |
|
| 779 | + if (isset($args['title'])) { |
|
| 780 | 780 | $post_data['post_title'] = $args['title']; |
| 781 | 781 | } |
| 782 | - if ( isset( $args['excerpt'] ) ) { |
|
| 782 | + if (isset($args['excerpt'])) { |
|
| 783 | 783 | $post_data['post_excerpt'] = $args['excerpt']; |
| 784 | 784 | } |
| 785 | - if ( isset( $args['status'] ) ) { |
|
| 785 | + if (isset($args['status'])) { |
|
| 786 | 786 | $post_data['post_status'] = $args['status']; |
| 787 | 787 | } |
| 788 | 788 | |
| 789 | - foreach ( $meta_fields as $meta_field ) { |
|
| 790 | - if ( isset( $args[ $meta_field ] ) ) { |
|
| 791 | - $value = $args[ $meta_field ]; |
|
| 789 | + foreach ($meta_fields as $meta_field) { |
|
| 790 | + if (isset($args[$meta_field])) { |
|
| 791 | + $value = $args[$meta_field]; |
|
| 792 | 792 | |
| 793 | - switch ( $meta_field ) { |
|
| 793 | + switch ($meta_field) { |
|
| 794 | 794 | case 'price': |
| 795 | - $value = wpinv_round_amount( $value ); |
|
| 795 | + $value = wpinv_round_amount($value); |
|
| 796 | 796 | break; |
| 797 | 797 | case 'recurring_interval': |
| 798 | 798 | case 'recurring_limit': |
| 799 | 799 | case 'trial_interval': |
| 800 | - $value = absint( $value ); |
|
| 800 | + $value = absint($value); |
|
| 801 | 801 | break; |
| 802 | 802 | } |
| 803 | 803 | |
| 804 | - $post_data['meta'][ $meta_field ] = $value; |
|
| 804 | + $post_data['meta'][$meta_field] = $value; |
|
| 805 | 805 | }; |
| 806 | 806 | } |
| 807 | 807 | |
| 808 | - if ( empty( $post_data ) ) { |
|
| 809 | - if ( $wp_error ) { |
|
| 810 | - return new WP_Error( 'wpinv_invalid_item_data', __( 'Invalid item data.', 'invoicing' ) ); |
|
| 808 | + if (empty($post_data)) { |
|
| 809 | + if ($wp_error) { |
|
| 810 | + return new WP_Error('wpinv_invalid_item_data', __('Invalid item data.', 'invoicing')); |
|
| 811 | 811 | } |
| 812 | 812 | return 0; |
| 813 | 813 | } |
| 814 | 814 | $post_data['ID'] = $args['ID']; |
| 815 | 815 | |
| 816 | - $return = $item->update( $post_data, $wp_error ); |
|
| 816 | + $return = $item->update($post_data, $wp_error); |
|
| 817 | 817 | |
| 818 | - if ( $return && !empty( $item ) && !is_wp_error( $return ) ) { |
|
| 818 | + if ($return && !empty($item) && !is_wp_error($return)) { |
|
| 819 | 819 | return $item; |
| 820 | 820 | } |
| 821 | 821 | |
| 822 | - if ( $wp_error && is_wp_error( $return ) ) { |
|
| 822 | + if ($wp_error && is_wp_error($return)) { |
|
| 823 | 823 | return $return; |
| 824 | 824 | } |
| 825 | 825 | return 0; |
@@ -1,72 +1,72 @@ 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( 'admin_menu', 'wpinv_add_options_link', 10 ); |
|
| 7 | +add_action('admin_menu', 'wpinv_add_options_link', 10); |
|
| 8 | 8 | function wpinv_add_options_link() { |
| 9 | 9 | global $menu; |
| 10 | 10 | |
| 11 | - if ( !(current_user_can( 'manage_invoicing' ) || current_user_can( 'manage_options' )) ) { |
|
| 11 | + if (!(current_user_can('manage_invoicing') || current_user_can('manage_options'))) { |
|
| 12 | 12 | return; |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | - $capability = apply_filters( 'invoicing_capability', 'manage_invoicing' ); |
|
| 15 | + $capability = apply_filters('invoicing_capability', 'manage_invoicing'); |
|
| 16 | 16 | |
| 17 | - if ( current_user_can( 'manage_options' ) ) { |
|
| 18 | - $menu[] = array( '', 'read', 'separator-wpinv', '', 'wp-menu-separator wpinv' ); |
|
| 17 | + if (current_user_can('manage_options')) { |
|
| 18 | + $menu[] = array('', 'read', 'separator-wpinv', '', 'wp-menu-separator wpinv'); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - $wpi_invoice = get_post_type_object( 'wpi_invoice' ); |
|
| 21 | + $wpi_invoice = get_post_type_object('wpi_invoice'); |
|
| 22 | 22 | |
| 23 | - add_menu_page( __( 'Invoicing', 'invoicing' ), __( 'Invoicing', 'invoicing' ), $capability, 'wpinv', null, $wpi_invoice->menu_icon, '54.123460' ); |
|
| 23 | + add_menu_page(__('Invoicing', 'invoicing'), __('Invoicing', 'invoicing'), $capability, 'wpinv', null, $wpi_invoice->menu_icon, '54.123460'); |
|
| 24 | 24 | |
| 25 | - $wpi_settings_page = add_submenu_page( 'wpinv', __( 'Invoice Settings', 'invoicing' ), __( 'Settings', 'invoicing' ), $capability, 'wpinv-settings', 'wpinv_options_page' ); |
|
| 25 | + $wpi_settings_page = add_submenu_page('wpinv', __('Invoice Settings', 'invoicing'), __('Settings', 'invoicing'), $capability, 'wpinv-settings', 'wpinv_options_page'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | -add_action( 'admin_menu', 'wpinv_remove_admin_submenus', 999 ); |
|
| 28 | +add_action('admin_menu', 'wpinv_remove_admin_submenus', 999); |
|
| 29 | 29 | function wpinv_remove_admin_submenus() { |
| 30 | - remove_submenu_page( 'edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice' ); |
|
| 30 | + remove_submenu_page('edit.php?post_type=wpi_invoice', 'post-new.php?post_type=wpi_invoice'); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | -add_filter( 'manage_wpi_discount_posts_columns', 'wpinv_discount_columns' ); |
|
| 34 | -function wpinv_discount_columns( $existing_columns ) { |
|
| 33 | +add_filter('manage_wpi_discount_posts_columns', 'wpinv_discount_columns'); |
|
| 34 | +function wpinv_discount_columns($existing_columns) { |
|
| 35 | 35 | $columns = array(); |
| 36 | 36 | $columns['cb'] = $existing_columns['cb']; |
| 37 | - $columns['name'] = __( 'Name', 'invoicing' ); |
|
| 38 | - $columns['code'] = __( 'Code', 'invoicing' ); |
|
| 39 | - $columns['amount'] = __( 'Amount', 'invoicing' ); |
|
| 40 | - $columns['usage'] = __( 'Usage / Limit', 'invoicing' ); |
|
| 41 | - $columns['expiry_date'] = __( 'Expiry Date', 'invoicing' ); |
|
| 42 | - $columns['status'] = __( 'Status', 'invoicing' ); |
|
| 37 | + $columns['name'] = __('Name', 'invoicing'); |
|
| 38 | + $columns['code'] = __('Code', 'invoicing'); |
|
| 39 | + $columns['amount'] = __('Amount', 'invoicing'); |
|
| 40 | + $columns['usage'] = __('Usage / Limit', 'invoicing'); |
|
| 41 | + $columns['expiry_date'] = __('Expiry Date', 'invoicing'); |
|
| 42 | + $columns['status'] = __('Status', 'invoicing'); |
|
| 43 | 43 | |
| 44 | 44 | return $columns; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | -add_action( 'manage_wpi_discount_posts_custom_column', 'wpinv_discount_custom_column' ); |
|
| 48 | -function wpinv_discount_custom_column( $column ) { |
|
| 47 | +add_action('manage_wpi_discount_posts_custom_column', 'wpinv_discount_custom_column'); |
|
| 48 | +function wpinv_discount_custom_column($column) { |
|
| 49 | 49 | global $post; |
| 50 | 50 | |
| 51 | 51 | $discount = $post; |
| 52 | 52 | |
| 53 | - switch ( $column ) { |
|
| 53 | + switch ($column) { |
|
| 54 | 54 | case 'name' : |
| 55 | - echo get_the_title( $discount->ID ); |
|
| 55 | + echo get_the_title($discount->ID); |
|
| 56 | 56 | break; |
| 57 | 57 | case 'code' : |
| 58 | - echo wpinv_get_discount_code( $discount->ID ); |
|
| 58 | + echo wpinv_get_discount_code($discount->ID); |
|
| 59 | 59 | break; |
| 60 | 60 | case 'amount' : |
| 61 | - echo wpinv_format_discount_rate( wpinv_get_discount_type( $discount->ID ), wpinv_get_discount_amount( $discount->ID ) ); |
|
| 61 | + echo wpinv_format_discount_rate(wpinv_get_discount_type($discount->ID), wpinv_get_discount_amount($discount->ID)); |
|
| 62 | 62 | break; |
| 63 | 63 | case 'usage_limit' : |
| 64 | - echo wpinv_get_discount_uses( $discount->ID ); |
|
| 64 | + echo wpinv_get_discount_uses($discount->ID); |
|
| 65 | 65 | break; |
| 66 | 66 | case 'usage' : |
| 67 | - $usage = wpinv_get_discount_uses( $discount->ID ) . ' / '; |
|
| 68 | - if ( wpinv_get_discount_max_uses( $discount->ID ) ) { |
|
| 69 | - $usage .= wpinv_get_discount_max_uses( $discount->ID ); |
|
| 67 | + $usage = wpinv_get_discount_uses($discount->ID) . ' / '; |
|
| 68 | + if (wpinv_get_discount_max_uses($discount->ID)) { |
|
| 69 | + $usage .= wpinv_get_discount_max_uses($discount->ID); |
|
| 70 | 70 | } else { |
| 71 | 71 | $usage .= ' ∞'; |
| 72 | 72 | } |
@@ -74,162 +74,162 @@ discard block |
||
| 74 | 74 | echo $usage; |
| 75 | 75 | break; |
| 76 | 76 | case 'expiry_date' : |
| 77 | - if ( wpinv_get_discount_expiration( $discount->ID ) ) { |
|
| 78 | - $expiration = date_i18n( get_option( 'date_format' ), strtotime( wpinv_get_discount_expiration( $discount->ID ) ) ); |
|
| 77 | + if (wpinv_get_discount_expiration($discount->ID)) { |
|
| 78 | + $expiration = date_i18n(get_option('date_format'), strtotime(wpinv_get_discount_expiration($discount->ID))); |
|
| 79 | 79 | } else { |
| 80 | - $expiration = __( 'Never', 'invoicing' ); |
|
| 80 | + $expiration = __('Never', 'invoicing'); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | echo $expiration; |
| 84 | 84 | break; |
| 85 | 85 | case 'description' : |
| 86 | - echo wp_kses_post( $post->post_excerpt ); |
|
| 86 | + echo wp_kses_post($post->post_excerpt); |
|
| 87 | 87 | break; |
| 88 | 88 | case 'status' : |
| 89 | - $status = wpinv_is_discount_expired( $discount->ID ) ? 'expired' : $discount->post_status; |
|
| 89 | + $status = wpinv_is_discount_expired($discount->ID) ? 'expired' : $discount->post_status; |
|
| 90 | 90 | |
| 91 | - echo wpinv_discount_status( $status ); |
|
| 91 | + echo wpinv_discount_status($status); |
|
| 92 | 92 | break; |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | -add_filter( 'post_row_actions', 'wpinv_post_row_actions', 9999, 2 ); |
|
| 97 | -function wpinv_post_row_actions( $actions, $post ) { |
|
| 98 | - $post_type = !empty( $post->post_type ) ? $post->post_type : ''; |
|
| 96 | +add_filter('post_row_actions', 'wpinv_post_row_actions', 9999, 2); |
|
| 97 | +function wpinv_post_row_actions($actions, $post) { |
|
| 98 | + $post_type = !empty($post->post_type) ? $post->post_type : ''; |
|
| 99 | 99 | |
| 100 | - if ( $post_type == 'wpi_invoice' ) { |
|
| 100 | + if ($post_type == 'wpi_invoice') { |
|
| 101 | 101 | $actions = array(); |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - if ( $post_type == 'wpi_discount' ) { |
|
| 105 | - $actions = wpinv_discount_row_actions( $post, $actions ); |
|
| 104 | + if ($post_type == 'wpi_discount') { |
|
| 105 | + $actions = wpinv_discount_row_actions($post, $actions); |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | return $actions; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | -function wpinv_discount_row_actions( $discount, $row_actions ) { |
|
| 112 | - $row_actions = array(); |
|
| 113 | - $edit_link = get_edit_post_link( $discount->ID ); |
|
| 114 | - $row_actions['edit'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit', 'invoicing' ) . '</a>'; |
|
| 111 | +function wpinv_discount_row_actions($discount, $row_actions) { |
|
| 112 | + $row_actions = array(); |
|
| 113 | + $edit_link = get_edit_post_link($discount->ID); |
|
| 114 | + $row_actions['edit'] = '<a href="' . esc_url($edit_link) . '">' . __('Edit', 'invoicing') . '</a>'; |
|
| 115 | 115 | |
| 116 | - if( in_array( strtolower( $discount->post_status ), array( 'publish' ) ) ) { |
|
| 117 | - $row_actions['deactivate'] = '<a href="' . esc_url( wp_nonce_url( add_query_arg( array( 'wpi_action' => 'deactivate_discount', 'discount' => $discount->ID ) ), 'wpinv_discount_nonce' ) ) . '">' . __( 'Deactivate', 'invoicing' ) . '</a>'; |
|
| 118 | - } elseif( in_array( strtolower( $discount->post_status ), array( 'pending', 'draft' ) ) ) { |
|
| 119 | - $row_actions['activate'] = '<a href="' . esc_url( wp_nonce_url( add_query_arg( array( 'wpi_action' => 'activate_discount', 'discount' => $discount->ID ) ), 'wpinv_discount_nonce' ) ) . '">' . __( 'Activate', 'invoicing' ) . '</a>'; |
|
| 116 | + if (in_array(strtolower($discount->post_status), array('publish'))) { |
|
| 117 | + $row_actions['deactivate'] = '<a href="' . esc_url(wp_nonce_url(add_query_arg(array('wpi_action' => 'deactivate_discount', 'discount' => $discount->ID)), 'wpinv_discount_nonce')) . '">' . __('Deactivate', 'invoicing') . '</a>'; |
|
| 118 | + } elseif (in_array(strtolower($discount->post_status), array('pending', 'draft'))) { |
|
| 119 | + $row_actions['activate'] = '<a href="' . esc_url(wp_nonce_url(add_query_arg(array('wpi_action' => 'activate_discount', 'discount' => $discount->ID)), 'wpinv_discount_nonce')) . '">' . __('Activate', 'invoicing') . '</a>'; |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - if ( wpinv_get_discount_uses( $discount->ID ) > 0 ) { |
|
| 123 | - if ( isset( $row_actions['delete'] ) ) { |
|
| 124 | - unset( $row_actions['delete'] ); // Don't delete used discounts. |
|
| 122 | + if (wpinv_get_discount_uses($discount->ID) > 0) { |
|
| 123 | + if (isset($row_actions['delete'])) { |
|
| 124 | + unset($row_actions['delete']); // Don't delete used discounts. |
|
| 125 | 125 | } |
| 126 | 126 | } else { |
| 127 | - $row_actions['delete'] = '<a href="' . esc_url( wp_nonce_url( add_query_arg( array( 'wpi_action' => 'delete_discount', 'discount' => $discount->ID ) ), 'wpinv_discount_nonce' ) ) . '">' . __( 'Delete', 'invoicing' ) . '</a>'; |
|
| 127 | + $row_actions['delete'] = '<a href="' . esc_url(wp_nonce_url(add_query_arg(array('wpi_action' => 'delete_discount', 'discount' => $discount->ID)), 'wpinv_discount_nonce')) . '">' . __('Delete', 'invoicing') . '</a>'; |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | |
| 131 | - $row_actions = apply_filters( 'wpinv_discount_row_actions', $row_actions, $discount ); |
|
| 131 | + $row_actions = apply_filters('wpinv_discount_row_actions', $row_actions, $discount); |
|
| 132 | 132 | |
| 133 | 133 | return $row_actions; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | -add_filter( 'list_table_primary_column', 'wpinv_table_primary_column', 10, 2 ); |
|
| 137 | -function wpinv_table_primary_column( $default, $screen_id ) { |
|
| 138 | - if ( 'edit-wpi_invoice' === $screen_id ) { |
|
| 136 | +add_filter('list_table_primary_column', 'wpinv_table_primary_column', 10, 2); |
|
| 137 | +function wpinv_table_primary_column($default, $screen_id) { |
|
| 138 | + if ('edit-wpi_invoice' === $screen_id) { |
|
| 139 | 139 | return 'name'; |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | return $default; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | -function wpinv_discount_bulk_actions( $actions, $display = false ) { |
|
| 146 | - if ( !$display ) { |
|
| 145 | +function wpinv_discount_bulk_actions($actions, $display = false) { |
|
| 146 | + if (!$display) { |
|
| 147 | 147 | return array(); |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | $actions = array( |
| 151 | - 'activate' => __( 'Activate', 'invoicing' ), |
|
| 152 | - 'deactivate' => __( 'Deactivate', 'invoicing' ), |
|
| 153 | - 'delete' => __( 'Delete', 'invoicing' ), |
|
| 151 | + 'activate' => __('Activate', 'invoicing'), |
|
| 152 | + 'deactivate' => __('Deactivate', 'invoicing'), |
|
| 153 | + 'delete' => __('Delete', 'invoicing'), |
|
| 154 | 154 | ); |
| 155 | 155 | $two = ''; |
| 156 | 156 | $which = 'top'; |
| 157 | 157 | echo '</div><div class="alignleft actions bulkactions">'; |
| 158 | - echo '<label for="bulk-action-selector-' . esc_attr( $which ) . '" class="screen-reader-text">' . __( 'Select bulk action' ) . '</label>'; |
|
| 159 | - echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr( $which ) . "\">"; |
|
| 160 | - echo '<option value="-1">' . __( 'Bulk Actions' ) . "</option>"; |
|
| 158 | + echo '<label for="bulk-action-selector-' . esc_attr($which) . '" class="screen-reader-text">' . __('Select bulk action') . '</label>'; |
|
| 159 | + echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr($which) . "\">"; |
|
| 160 | + echo '<option value="-1">' . __('Bulk Actions') . "</option>"; |
|
| 161 | 161 | |
| 162 | - foreach ( $actions as $name => $title ) { |
|
| 162 | + foreach ($actions as $name => $title) { |
|
| 163 | 163 | $class = 'edit' === $name ? ' class="hide-if-no-js"' : ''; |
| 164 | 164 | |
| 165 | 165 | echo "" . '<option value="' . $name . '"' . $class . '>' . $title . "</option>"; |
| 166 | 166 | } |
| 167 | 167 | echo "</select>"; |
| 168 | 168 | |
| 169 | - submit_button( __( 'Apply' ), 'action', '', false, array( 'id' => "doaction$two" ) ); |
|
| 169 | + submit_button(__('Apply'), 'action', '', false, array('id' => "doaction$two")); |
|
| 170 | 170 | |
| 171 | 171 | echo '</div><div class="alignleft actions">'; |
| 172 | 172 | } |
| 173 | -add_filter( 'bulk_actions-edit-wpi_discount', 'wpinv_discount_bulk_actions', 10 ); |
|
| 173 | +add_filter('bulk_actions-edit-wpi_discount', 'wpinv_discount_bulk_actions', 10); |
|
| 174 | 174 | |
| 175 | -function wpinv_disable_months_dropdown( $disable, $post_type ) { |
|
| 176 | - if ( $post_type == 'wpi_discount' ) { |
|
| 175 | +function wpinv_disable_months_dropdown($disable, $post_type) { |
|
| 176 | + if ($post_type == 'wpi_discount') { |
|
| 177 | 177 | $disable = true; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | return $disable; |
| 181 | 181 | } |
| 182 | -add_filter( 'disable_months_dropdown', 'wpinv_disable_months_dropdown', 10, 2 ); |
|
| 182 | +add_filter('disable_months_dropdown', 'wpinv_disable_months_dropdown', 10, 2); |
|
| 183 | 183 | |
| 184 | 184 | function wpinv_restrict_manage_posts() { |
| 185 | 185 | global $typenow; |
| 186 | 186 | |
| 187 | - if( 'wpi_discount' == $typenow ) { |
|
| 187 | + if ('wpi_discount' == $typenow) { |
|
| 188 | 188 | wpinv_discount_filters(); |
| 189 | 189 | } |
| 190 | 190 | } |
| 191 | -add_action( 'restrict_manage_posts', 'wpinv_restrict_manage_posts', 10 ); |
|
| 191 | +add_action('restrict_manage_posts', 'wpinv_restrict_manage_posts', 10); |
|
| 192 | 192 | |
| 193 | 193 | function wpinv_discount_filters() { |
| 194 | - echo wpinv_discount_bulk_actions( array(), true ); |
|
| 194 | + echo wpinv_discount_bulk_actions(array(), true); |
|
| 195 | 195 | |
| 196 | 196 | ?> |
| 197 | 197 | <select name="discount_type" id="dropdown_wpinv_discount_type"> |
| 198 | - <option value=""><?php _e( 'Show all types', 'invoicing' ); ?></option> |
|
| 198 | + <option value=""><?php _e('Show all types', 'invoicing'); ?></option> |
|
| 199 | 199 | <?php |
| 200 | 200 | $types = wpinv_get_discount_types(); |
| 201 | 201 | |
| 202 | - foreach ( $types as $name => $type ) { |
|
| 203 | - echo '<option value="' . esc_attr( $name ) . '"'; |
|
| 202 | + foreach ($types as $name => $type) { |
|
| 203 | + echo '<option value="' . esc_attr($name) . '"'; |
|
| 204 | 204 | |
| 205 | - if ( isset( $_GET['discount_type'] ) ) |
|
| 206 | - selected( $name, $_GET['discount_type'] ); |
|
| 205 | + if (isset($_GET['discount_type'])) |
|
| 206 | + selected($name, $_GET['discount_type']); |
|
| 207 | 207 | |
| 208 | - echo '>' . esc_html__( $type, 'invoicing' ) . '</option>'; |
|
| 208 | + echo '>' . esc_html__($type, 'invoicing') . '</option>'; |
|
| 209 | 209 | } |
| 210 | 210 | ?> |
| 211 | 211 | </select> |
| 212 | 212 | <?php |
| 213 | 213 | } |
| 214 | 214 | |
| 215 | -function wpinv_request( $vars ) { |
|
| 215 | +function wpinv_request($vars) { |
|
| 216 | 216 | global $typenow, $wp_query, $wp_post_statuses; |
| 217 | 217 | |
| 218 | - if ( 'wpi_invoice' === $typenow ) { |
|
| 219 | - if ( !isset( $vars['post_status'] ) ) { |
|
| 218 | + if ('wpi_invoice' === $typenow) { |
|
| 219 | + if (!isset($vars['post_status'])) { |
|
| 220 | 220 | $post_statuses = wpinv_get_invoice_statuses(); |
| 221 | 221 | |
| 222 | - foreach ( $post_statuses as $status => $value ) { |
|
| 223 | - if ( isset( $wp_post_statuses[ $status ] ) && false === $wp_post_statuses[ $status ]->show_in_admin_all_list ) { |
|
| 224 | - unset( $post_statuses[ $status ] ); |
|
| 222 | + foreach ($post_statuses as $status => $value) { |
|
| 223 | + if (isset($wp_post_statuses[$status]) && false === $wp_post_statuses[$status]->show_in_admin_all_list) { |
|
| 224 | + unset($post_statuses[$status]); |
|
| 225 | 225 | } |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - $vars['post_status'] = array_keys( $post_statuses ); |
|
| 228 | + $vars['post_status'] = array_keys($post_statuses); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - if ( isset( $vars['orderby'] ) ) { |
|
| 232 | - if ( 'amount' == $vars['orderby'] ) { |
|
| 231 | + if (isset($vars['orderby'])) { |
|
| 232 | + if ('amount' == $vars['orderby']) { |
|
| 233 | 233 | $vars = array_merge( |
| 234 | 234 | $vars, |
| 235 | 235 | array( |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | 'orderby' => 'meta_value_num' |
| 238 | 238 | ) |
| 239 | 239 | ); |
| 240 | - } else if ( 'customer' == $vars['orderby'] ) { |
|
| 240 | + } else if ('customer' == $vars['orderby']) { |
|
| 241 | 241 | $vars = array_merge( |
| 242 | 242 | $vars, |
| 243 | 243 | array( |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | 'orderby' => 'meta_value' |
| 246 | 246 | ) |
| 247 | 247 | ); |
| 248 | - } else if ( 'number' == $vars['orderby'] ) { |
|
| 248 | + } else if ('number' == $vars['orderby']) { |
|
| 249 | 249 | $vars = array_merge( |
| 250 | 250 | $vars, |
| 251 | 251 | array( |
@@ -255,9 +255,9 @@ discard block |
||
| 255 | 255 | ); |
| 256 | 256 | } |
| 257 | 257 | } |
| 258 | - } else if ( 'wpi_item' == $typenow ) { |
|
| 258 | + } else if ('wpi_item' == $typenow) { |
|
| 259 | 259 | // Check if 'orderby' is set to "price" |
| 260 | - if ( isset( $vars['orderby'] ) && 'price' == $vars['orderby'] ) { |
|
| 260 | + if (isset($vars['orderby']) && 'price' == $vars['orderby']) { |
|
| 261 | 261 | $vars = array_merge( |
| 262 | 262 | $vars, |
| 263 | 263 | array( |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | // Check if "orderby" is set to "vat_rule" |
| 271 | - if ( isset( $vars['orderby'] ) && 'vat_rule' == $vars['orderby'] ) { |
|
| 271 | + if (isset($vars['orderby']) && 'vat_rule' == $vars['orderby']) { |
|
| 272 | 272 | $vars = array_merge( |
| 273 | 273 | $vars, |
| 274 | 274 | array( |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | // Check if "orderby" is set to "vat_class" |
| 282 | - if ( isset( $vars['orderby'] ) && 'vat_class' == $vars['orderby'] ) { |
|
| 282 | + if (isset($vars['orderby']) && 'vat_class' == $vars['orderby']) { |
|
| 283 | 283 | $vars = array_merge( |
| 284 | 284 | $vars, |
| 285 | 285 | array( |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | // Check if "orderby" is set to "type" |
| 293 | - if ( isset( $vars['orderby'] ) && 'type' == $vars['orderby'] ) { |
|
| 293 | + if (isset($vars['orderby']) && 'type' == $vars['orderby']) { |
|
| 294 | 294 | $vars = array_merge( |
| 295 | 295 | $vars, |
| 296 | 296 | array( |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | // Check if "orderby" is set to "recurring" |
| 304 | - if ( isset( $vars['orderby'] ) && 'recurring' == $vars['orderby'] ) { |
|
| 304 | + if (isset($vars['orderby']) && 'recurring' == $vars['orderby']) { |
|
| 305 | 305 | $vars = array_merge( |
| 306 | 306 | $vars, |
| 307 | 307 | array( |
@@ -311,120 +311,120 @@ discard block |
||
| 311 | 311 | ); |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | - $meta_query = !empty( $vars['meta_query'] ) ? $vars['meta_query'] : array(); |
|
| 314 | + $meta_query = !empty($vars['meta_query']) ? $vars['meta_query'] : array(); |
|
| 315 | 315 | // Filter vat rule type |
| 316 | - if ( isset( $_GET['vat_rule'] ) && $_GET['vat_rule'] !== '' ) { |
|
| 316 | + if (isset($_GET['vat_rule']) && $_GET['vat_rule'] !== '') { |
|
| 317 | 317 | $meta_query[] = array( |
| 318 | 318 | 'key' => '_wpinv_vat_rule', |
| 319 | - 'value' => sanitize_text_field( $_GET['vat_rule'] ), |
|
| 319 | + 'value' => sanitize_text_field($_GET['vat_rule']), |
|
| 320 | 320 | 'compare' => '=' |
| 321 | 321 | ); |
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | // Filter vat class |
| 325 | - if ( isset( $_GET['vat_class'] ) && $_GET['vat_class'] !== '' ) { |
|
| 325 | + if (isset($_GET['vat_class']) && $_GET['vat_class'] !== '') { |
|
| 326 | 326 | $meta_query[] = array( |
| 327 | 327 | 'key' => '_wpinv_vat_class', |
| 328 | - 'value' => sanitize_text_field( $_GET['vat_class'] ), |
|
| 328 | + 'value' => sanitize_text_field($_GET['vat_class']), |
|
| 329 | 329 | 'compare' => '=' |
| 330 | 330 | ); |
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | // Filter item type |
| 334 | - if ( isset( $_GET['type'] ) && $_GET['type'] !== '' ) { |
|
| 334 | + if (isset($_GET['type']) && $_GET['type'] !== '') { |
|
| 335 | 335 | $meta_query[] = array( |
| 336 | 336 | 'key' => '_wpinv_type', |
| 337 | - 'value' => sanitize_text_field( $_GET['type'] ), |
|
| 337 | + 'value' => sanitize_text_field($_GET['type']), |
|
| 338 | 338 | 'compare' => '=' |
| 339 | 339 | ); |
| 340 | 340 | } |
| 341 | 341 | |
| 342 | - if ( !empty( $meta_query ) ) { |
|
| 342 | + if (!empty($meta_query)) { |
|
| 343 | 343 | $vars['meta_query'] = $meta_query; |
| 344 | 344 | } |
| 345 | - } else if ( 'wpi_discount' == $typenow ) { |
|
| 346 | - $meta_query = !empty( $vars['meta_query'] ) ? $vars['meta_query'] : array(); |
|
| 345 | + } else if ('wpi_discount' == $typenow) { |
|
| 346 | + $meta_query = !empty($vars['meta_query']) ? $vars['meta_query'] : array(); |
|
| 347 | 347 | // Filter vat rule type |
| 348 | - if ( isset( $_GET['discount_type'] ) && $_GET['discount_type'] !== '' ) { |
|
| 348 | + if (isset($_GET['discount_type']) && $_GET['discount_type'] !== '') { |
|
| 349 | 349 | $meta_query[] = array( |
| 350 | 350 | 'key' => '_wpi_discount_type', |
| 351 | - 'value' => sanitize_text_field( $_GET['discount_type'] ), |
|
| 351 | + 'value' => sanitize_text_field($_GET['discount_type']), |
|
| 352 | 352 | 'compare' => '=' |
| 353 | 353 | ); |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | - if ( !empty( $meta_query ) ) { |
|
| 356 | + if (!empty($meta_query)) { |
|
| 357 | 357 | $vars['meta_query'] = $meta_query; |
| 358 | 358 | } |
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | return $vars; |
| 362 | 362 | } |
| 363 | -add_filter( 'request', 'wpinv_request' ); |
|
| 363 | +add_filter('request', 'wpinv_request'); |
|
| 364 | 364 | |
| 365 | 365 | function wpinv_options_page() { |
| 366 | - $page = isset( $_GET['page'] ) ? strtolower( $_GET['page'] ) : false; |
|
| 366 | + $page = isset($_GET['page']) ? strtolower($_GET['page']) : false; |
|
| 367 | 367 | |
| 368 | - if ( $page !== 'wpinv-settings' ) { |
|
| 368 | + if ($page !== 'wpinv-settings') { |
|
| 369 | 369 | return; |
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | $settings_tabs = wpinv_get_settings_tabs(); |
| 373 | 373 | $settings_tabs = empty($settings_tabs) ? array() : $settings_tabs; |
| 374 | - $active_tab = isset( $_GET['tab'] ) && array_key_exists( $_GET['tab'], $settings_tabs ) ? sanitize_text_field( $_GET['tab'] ) : 'general'; |
|
| 375 | - $sections = wpinv_get_settings_tab_sections( $active_tab ); |
|
| 374 | + $active_tab = isset($_GET['tab']) && array_key_exists($_GET['tab'], $settings_tabs) ? sanitize_text_field($_GET['tab']) : 'general'; |
|
| 375 | + $sections = wpinv_get_settings_tab_sections($active_tab); |
|
| 376 | 376 | $key = 'main'; |
| 377 | 377 | |
| 378 | - if ( is_array( $sections ) ) { |
|
| 379 | - $key = key( $sections ); |
|
| 378 | + if (is_array($sections)) { |
|
| 379 | + $key = key($sections); |
|
| 380 | 380 | } |
| 381 | 381 | |
| 382 | - $registered_sections = wpinv_get_settings_tab_sections( $active_tab ); |
|
| 383 | - $section = isset( $_GET['section'] ) && ! empty( $registered_sections ) && array_key_exists( $_GET['section'], $registered_sections ) ? $_GET['section'] : $key; |
|
| 382 | + $registered_sections = wpinv_get_settings_tab_sections($active_tab); |
|
| 383 | + $section = isset($_GET['section']) && !empty($registered_sections) && array_key_exists($_GET['section'], $registered_sections) ? $_GET['section'] : $key; |
|
| 384 | 384 | ob_start(); |
| 385 | 385 | ?> |
| 386 | 386 | <div class="wrap"> |
| 387 | 387 | <h1 class="nav-tab-wrapper"> |
| 388 | 388 | <?php |
| 389 | - foreach( wpinv_get_settings_tabs() as $tab_id => $tab_name ) { |
|
| 390 | - $tab_url = add_query_arg( array( |
|
| 389 | + foreach (wpinv_get_settings_tabs() as $tab_id => $tab_name) { |
|
| 390 | + $tab_url = add_query_arg(array( |
|
| 391 | 391 | 'settings-updated' => false, |
| 392 | 392 | 'tab' => $tab_id, |
| 393 | - ) ); |
|
| 393 | + )); |
|
| 394 | 394 | |
| 395 | 395 | // Remove the section from the tabs so we always end up at the main section |
| 396 | - $tab_url = remove_query_arg( 'section', $tab_url ); |
|
| 397 | - $tab_url = remove_query_arg( 'wpi_sub', $tab_url ); |
|
| 396 | + $tab_url = remove_query_arg('section', $tab_url); |
|
| 397 | + $tab_url = remove_query_arg('wpi_sub', $tab_url); |
|
| 398 | 398 | |
| 399 | 399 | $active = $active_tab == $tab_id ? ' nav-tab-active' : ''; |
| 400 | 400 | |
| 401 | - echo '<a href="' . esc_url( $tab_url ) . '" title="' . esc_attr( $tab_name ) . '" class="nav-tab' . $active . '">'; |
|
| 402 | - echo esc_html( $tab_name ); |
|
| 401 | + echo '<a href="' . esc_url($tab_url) . '" title="' . esc_attr($tab_name) . '" class="nav-tab' . $active . '">'; |
|
| 402 | + echo esc_html($tab_name); |
|
| 403 | 403 | echo '</a>'; |
| 404 | 404 | } |
| 405 | 405 | ?> |
| 406 | 406 | </h1> |
| 407 | 407 | <?php |
| 408 | - $number_of_sections = count( $sections ); |
|
| 408 | + $number_of_sections = count($sections); |
|
| 409 | 409 | $number = 0; |
| 410 | - if ( $number_of_sections > 1 ) { |
|
| 410 | + if ($number_of_sections > 1) { |
|
| 411 | 411 | echo '<div><ul class="subsubsub">'; |
| 412 | - foreach( $sections as $section_id => $section_name ) { |
|
| 412 | + foreach ($sections as $section_id => $section_name) { |
|
| 413 | 413 | echo '<li>'; |
| 414 | 414 | $number++; |
| 415 | - $tab_url = add_query_arg( array( |
|
| 415 | + $tab_url = add_query_arg(array( |
|
| 416 | 416 | 'settings-updated' => false, |
| 417 | 417 | 'tab' => $active_tab, |
| 418 | 418 | 'section' => $section_id |
| 419 | - ) ); |
|
| 420 | - $tab_url = remove_query_arg( 'wpi_sub', $tab_url ); |
|
| 419 | + )); |
|
| 420 | + $tab_url = remove_query_arg('wpi_sub', $tab_url); |
|
| 421 | 421 | $class = ''; |
| 422 | - if ( $section == $section_id ) { |
|
| 422 | + if ($section == $section_id) { |
|
| 423 | 423 | $class = 'current'; |
| 424 | 424 | } |
| 425 | - echo '<a class="' . $class . '" href="' . esc_url( $tab_url ) . '">' . $section_name . '</a>'; |
|
| 425 | + echo '<a class="' . $class . '" href="' . esc_url($tab_url) . '">' . $section_name . '</a>'; |
|
| 426 | 426 | |
| 427 | - if ( $number != $number_of_sections ) { |
|
| 427 | + if ($number != $number_of_sections) { |
|
| 428 | 428 | echo ' | '; |
| 429 | 429 | } |
| 430 | 430 | echo '</li>'; |
@@ -436,19 +436,19 @@ discard block |
||
| 436 | 436 | <form method="post" action="options.php"> |
| 437 | 437 | <table class="form-table"> |
| 438 | 438 | <?php |
| 439 | - settings_fields( 'wpinv_settings' ); |
|
| 439 | + settings_fields('wpinv_settings'); |
|
| 440 | 440 | |
| 441 | - if ( 'main' === $section ) { |
|
| 442 | - do_action( 'wpinv_settings_tab_top', $active_tab ); |
|
| 441 | + if ('main' === $section) { |
|
| 442 | + do_action('wpinv_settings_tab_top', $active_tab); |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | - do_action( 'wpinv_settings_tab_top_' . $active_tab . '_' . $section ); |
|
| 446 | - do_settings_sections( 'wpinv_settings_' . $active_tab . '_' . $section ); |
|
| 447 | - do_action( 'wpinv_settings_tab_bottom_' . $active_tab . '_' . $section ); |
|
| 445 | + do_action('wpinv_settings_tab_top_' . $active_tab . '_' . $section); |
|
| 446 | + do_settings_sections('wpinv_settings_' . $active_tab . '_' . $section); |
|
| 447 | + do_action('wpinv_settings_tab_bottom_' . $active_tab . '_' . $section); |
|
| 448 | 448 | |
| 449 | 449 | // For backwards compatibility |
| 450 | - if ( 'main' === $section ) { |
|
| 451 | - do_action( 'wpinv_settings_tab_bottom', $active_tab ); |
|
| 450 | + if ('main' === $section) { |
|
| 451 | + do_action('wpinv_settings_tab_bottom', $active_tab); |
|
| 452 | 452 | } |
| 453 | 453 | ?> |
| 454 | 454 | </table> |
@@ -461,53 +461,53 @@ discard block |
||
| 461 | 461 | echo $content; |
| 462 | 462 | } |
| 463 | 463 | |
| 464 | -function wpinv_item_type_class( $classes, $class, $post_id ) { |
|
| 464 | +function wpinv_item_type_class($classes, $class, $post_id) { |
|
| 465 | 465 | global $pagenow, $typenow; |
| 466 | 466 | |
| 467 | - if ( $pagenow == 'edit.php' && $typenow == 'wpi_item' && get_post_type( $post_id ) == $typenow ) { |
|
| 468 | - if ( $type = get_post_meta( $post_id, '_wpinv_type', true ) ) { |
|
| 469 | - $classes[] = 'wpi-type-' . sanitize_html_class( $type ); |
|
| 467 | + if ($pagenow == 'edit.php' && $typenow == 'wpi_item' && get_post_type($post_id) == $typenow) { |
|
| 468 | + if ($type = get_post_meta($post_id, '_wpinv_type', true)) { |
|
| 469 | + $classes[] = 'wpi-type-' . sanitize_html_class($type); |
|
| 470 | 470 | } |
| 471 | 471 | |
| 472 | - if ( !wpinv_item_is_editable( $post_id ) ) { |
|
| 472 | + if (!wpinv_item_is_editable($post_id)) { |
|
| 473 | 473 | $classes[] = 'wpi-editable-n'; |
| 474 | 474 | } |
| 475 | 475 | } |
| 476 | 476 | return $classes; |
| 477 | 477 | } |
| 478 | -add_filter( 'post_class', 'wpinv_item_type_class', 10, 3 ); |
|
| 478 | +add_filter('post_class', 'wpinv_item_type_class', 10, 3); |
|
| 479 | 479 | |
| 480 | 480 | function wpinv_check_quick_edit() { |
| 481 | 481 | global $pagenow, $current_screen, $wpinv_item_screen; |
| 482 | 482 | |
| 483 | - if ( $pagenow == 'edit.php' && !empty( $current_screen->post_type ) ) { |
|
| 484 | - if ( empty( $wpinv_item_screen ) ) { |
|
| 485 | - if ( $current_screen->post_type == 'wpi_item' ) { |
|
| 483 | + if ($pagenow == 'edit.php' && !empty($current_screen->post_type)) { |
|
| 484 | + if (empty($wpinv_item_screen)) { |
|
| 485 | + if ($current_screen->post_type == 'wpi_item') { |
|
| 486 | 486 | $wpinv_item_screen = 'y'; |
| 487 | 487 | } else { |
| 488 | 488 | $wpinv_item_screen = 'n'; |
| 489 | 489 | } |
| 490 | 490 | } |
| 491 | 491 | |
| 492 | - if ( $wpinv_item_screen == 'y' && $pagenow == 'edit.php' ) { |
|
| 493 | - add_filter( 'post_row_actions', 'wpinv_item_disable_quick_edit', 10, 2 ); |
|
| 494 | - add_filter( 'page_row_actions', 'wpinv_item_disable_quick_edit', 10, 2 ); |
|
| 492 | + if ($wpinv_item_screen == 'y' && $pagenow == 'edit.php') { |
|
| 493 | + add_filter('post_row_actions', 'wpinv_item_disable_quick_edit', 10, 2); |
|
| 494 | + add_filter('page_row_actions', 'wpinv_item_disable_quick_edit', 10, 2); |
|
| 495 | 495 | } |
| 496 | 496 | } |
| 497 | 497 | } |
| 498 | -add_action( 'admin_head', 'wpinv_check_quick_edit', 10 ); |
|
| 498 | +add_action('admin_head', 'wpinv_check_quick_edit', 10); |
|
| 499 | 499 | |
| 500 | -function wpinv_item_disable_quick_edit( $actions = array(), $row = null ) { |
|
| 501 | - if ( isset( $actions['inline hide-if-no-js'] ) ) { |
|
| 502 | - unset( $actions['inline hide-if-no-js'] ); |
|
| 500 | +function wpinv_item_disable_quick_edit($actions = array(), $row = null) { |
|
| 501 | + if (isset($actions['inline hide-if-no-js'])) { |
|
| 502 | + unset($actions['inline hide-if-no-js']); |
|
| 503 | 503 | } |
| 504 | 504 | |
| 505 | - if ( !empty( $row->post_type ) && $row->post_type == 'wpi_item' && !wpinv_item_is_editable( $row ) ) { |
|
| 506 | - if ( isset( $actions['trash'] ) ) { |
|
| 507 | - unset( $actions['trash'] ); |
|
| 505 | + if (!empty($row->post_type) && $row->post_type == 'wpi_item' && !wpinv_item_is_editable($row)) { |
|
| 506 | + if (isset($actions['trash'])) { |
|
| 507 | + unset($actions['trash']); |
|
| 508 | 508 | } |
| 509 | - if ( isset( $actions['delete'] ) ) { |
|
| 510 | - unset( $actions['delete'] ); |
|
| 509 | + if (isset($actions['delete'])) { |
|
| 510 | + unset($actions['delete']); |
|
| 511 | 511 | } |
| 512 | 512 | } |
| 513 | 513 | |
@@ -524,19 +524,19 @@ discard block |
||
| 524 | 524 | * @param int $post_parent (default: 0) Parent for the new page |
| 525 | 525 | * @return int page ID |
| 526 | 526 | */ |
| 527 | -function wpinv_create_page( $slug, $option = '', $page_title = '', $page_content = '', $post_parent = 0 ) { |
|
| 527 | +function wpinv_create_page($slug, $option = '', $page_title = '', $page_content = '', $post_parent = 0) { |
|
| 528 | 528 | global $wpdb; |
| 529 | 529 | |
| 530 | - $option_value = wpinv_get_option( $option ); |
|
| 530 | + $option_value = wpinv_get_option($option); |
|
| 531 | 531 | |
| 532 | - if ( $option_value > 0 && ( $page_object = get_post( $option_value ) ) ) { |
|
| 533 | - if ( 'page' === $page_object->post_type && ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ) ) ) { |
|
| 532 | + if ($option_value > 0 && ($page_object = get_post($option_value))) { |
|
| 533 | + if ('page' === $page_object->post_type && !in_array($page_object->post_status, array('pending', 'trash', 'future', 'auto-draft'))) { |
|
| 534 | 534 | // Valid page is already in place |
| 535 | 535 | return $page_object->ID; |
| 536 | 536 | } |
| 537 | 537 | } |
| 538 | 538 | |
| 539 | - if(!empty($post_parent)){ |
|
| 539 | + if (!empty($post_parent)) { |
|
| 540 | 540 | $page = get_page_by_path($post_parent); |
| 541 | 541 | if ($page) { |
| 542 | 542 | $post_parent = $page->ID; |
@@ -545,40 +545,40 @@ discard block |
||
| 545 | 545 | } |
| 546 | 546 | } |
| 547 | 547 | |
| 548 | - if ( strlen( $page_content ) > 0 ) { |
|
| 548 | + if (strlen($page_content) > 0) { |
|
| 549 | 549 | // Search for an existing page with the specified page content (typically a shortcode) |
| 550 | - $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}%" ) ); |
|
| 550 | + $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}%")); |
|
| 551 | 551 | } else { |
| 552 | 552 | // Search for an existing page with the specified page slug |
| 553 | - $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 ) ); |
|
| 553 | + $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)); |
|
| 554 | 554 | } |
| 555 | 555 | |
| 556 | - $valid_page_found = apply_filters( 'wpinv_create_page_id', $valid_page_found, $slug, $page_content ); |
|
| 556 | + $valid_page_found = apply_filters('wpinv_create_page_id', $valid_page_found, $slug, $page_content); |
|
| 557 | 557 | |
| 558 | - if ( $valid_page_found ) { |
|
| 559 | - if ( $option ) { |
|
| 560 | - wpinv_update_option( $option, $valid_page_found ); |
|
| 558 | + if ($valid_page_found) { |
|
| 559 | + if ($option) { |
|
| 560 | + wpinv_update_option($option, $valid_page_found); |
|
| 561 | 561 | } |
| 562 | 562 | return $valid_page_found; |
| 563 | 563 | } |
| 564 | 564 | |
| 565 | 565 | // Search for a matching valid trashed page |
| 566 | - if ( strlen( $page_content ) > 0 ) { |
|
| 566 | + if (strlen($page_content) > 0) { |
|
| 567 | 567 | // Search for an existing page with the specified page content (typically a shortcode) |
| 568 | - $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}%" ) ); |
|
| 568 | + $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}%")); |
|
| 569 | 569 | } else { |
| 570 | 570 | // Search for an existing page with the specified page slug |
| 571 | - $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 ) ); |
|
| 571 | + $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)); |
|
| 572 | 572 | } |
| 573 | 573 | |
| 574 | - if ( $trashed_page_found ) { |
|
| 574 | + if ($trashed_page_found) { |
|
| 575 | 575 | $page_id = $trashed_page_found; |
| 576 | 576 | $page_data = array( |
| 577 | 577 | 'ID' => $page_id, |
| 578 | 578 | 'post_status' => 'publish', |
| 579 | 579 | 'post_parent' => $post_parent, |
| 580 | 580 | ); |
| 581 | - wp_update_post( $page_data ); |
|
| 581 | + wp_update_post($page_data); |
|
| 582 | 582 | } else { |
| 583 | 583 | $page_data = array( |
| 584 | 584 | 'post_status' => 'publish', |
@@ -590,11 +590,11 @@ discard block |
||
| 590 | 590 | 'post_parent' => $post_parent, |
| 591 | 591 | 'comment_status' => 'closed', |
| 592 | 592 | ); |
| 593 | - $page_id = wp_insert_post( $page_data ); |
|
| 593 | + $page_id = wp_insert_post($page_data); |
|
| 594 | 594 | } |
| 595 | 595 | |
| 596 | - if ( $option ) { |
|
| 597 | - wpinv_update_option( $option, (int)$page_id ); |
|
| 596 | + if ($option) { |
|
| 597 | + wpinv_update_option($option, (int)$page_id); |
|
| 598 | 598 | } |
| 599 | 599 | |
| 600 | 600 | return $page_id; |
@@ -1,80 +1,80 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
| 6 | -if ( !( $user_id = get_current_user_id() ) ) { |
|
| 6 | +if (!($user_id = get_current_user_id())) { |
|
| 7 | 7 | ?> |
| 8 | - <div class="wpinv-empty alert alert-error"><?php _e( 'You are not allowed to access this section', 'invoicing' ) ;?></div> |
|
| 8 | + <div class="wpinv-empty alert alert-error"><?php _e('You are not allowed to access this section', 'invoicing'); ?></div> |
|
| 9 | 9 | <?php |
| 10 | 10 | return; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | global $current_page; |
| 14 | -$current_page = empty( $current_page ) ? 1 : absint( $current_page ); |
|
| 15 | -$query = apply_filters( 'wpinv_user_invoices_query', array( 'user' => $user_id, 'page' => $current_page, 'paginate' => true ) ); |
|
| 16 | -$user_invoices = wpinv_get_invoices( $query ); |
|
| 14 | +$current_page = empty($current_page) ? 1 : absint($current_page); |
|
| 15 | +$query = apply_filters('wpinv_user_invoices_query', array('user' => $user_id, 'page' => $current_page, 'paginate' => true)); |
|
| 16 | +$user_invoices = wpinv_get_invoices($query); |
|
| 17 | 17 | $has_invoices = 0 < $user_invoices->total; |
| 18 | 18 | |
| 19 | -do_action( 'wpinv_before_user_invoices', $has_invoices ); ?> |
|
| 19 | +do_action('wpinv_before_user_invoices', $has_invoices); ?> |
|
| 20 | 20 | |
| 21 | -<?php if ( $has_invoices ) { ?> |
|
| 21 | +<?php if ($has_invoices) { ?> |
|
| 22 | 22 | <table class="table table-bordered table-hover wpi-user-invoices"> |
| 23 | 23 | <thead> |
| 24 | 24 | <tr> |
| 25 | - <?php foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : ?> |
|
| 26 | - <th class="<?php echo esc_attr( $column_id ); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : '');?>"><span class="nobr"><?php echo esc_html( $column_name['title'] ); ?></span></th> |
|
| 25 | + <?php foreach (wpinv_get_user_invoices_columns() as $column_id => $column_name) : ?> |
|
| 26 | + <th class="<?php echo esc_attr($column_id); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : ''); ?>"><span class="nobr"><?php echo esc_html($column_name['title']); ?></span></th> |
|
| 27 | 27 | <?php endforeach; ?> |
| 28 | 28 | </tr> |
| 29 | 29 | </thead> |
| 30 | 30 | |
| 31 | 31 | <tbody> |
| 32 | - <?php foreach ( $user_invoices->invoices as $invoice ) { |
|
| 32 | + <?php foreach ($user_invoices->invoices as $invoice) { |
|
| 33 | 33 | ?> |
| 34 | 34 | <tr class="wpinv-item wpinv-item-<?php echo $invoice_status = $invoice->get_status(); ?>"> |
| 35 | - <?php foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : ?> |
|
| 36 | - <td class="<?php echo esc_attr( $column_id ); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : '');?>" data-title="<?php echo esc_attr( $column_name['title'] ); ?>"> |
|
| 37 | - <?php if ( has_action( 'wpinv_user_invoices_column_' . $column_id ) ) : ?> |
|
| 38 | - <?php do_action( 'wpinv_user_invoices_column_' . $column_id, $invoice ); ?> |
|
| 39 | - |
|
| 40 | - <?php elseif ( 'invoice-number' === $column_id ) : ?> |
|
| 41 | - <a href="<?php echo esc_url( $invoice->get_view_url() ); ?>"> |
|
| 42 | - <?php echo _x( '#', 'hash before invoice number', 'invoicing' ) . $invoice->get_number(); ?> |
|
| 35 | + <?php foreach (wpinv_get_user_invoices_columns() as $column_id => $column_name) : ?> |
|
| 36 | + <td class="<?php echo esc_attr($column_id); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : ''); ?>" data-title="<?php echo esc_attr($column_name['title']); ?>"> |
|
| 37 | + <?php if (has_action('wpinv_user_invoices_column_' . $column_id)) : ?> |
|
| 38 | + <?php do_action('wpinv_user_invoices_column_' . $column_id, $invoice); ?> |
|
| 39 | + |
|
| 40 | + <?php elseif ('invoice-number' === $column_id) : ?> |
|
| 41 | + <a href="<?php echo esc_url($invoice->get_view_url()); ?>"> |
|
| 42 | + <?php echo _x('#', 'hash before invoice number', 'invoicing') . $invoice->get_number(); ?> |
|
| 43 | 43 | </a> |
| 44 | 44 | |
| 45 | - <?php elseif ( 'invoice-date' === $column_id ) : $date = wpinv_get_invoice_date( $invoice->ID ); $dateYMD = wpinv_get_invoice_date( $invoice->ID, 'Y-m-d H:i:s' ); ?> |
|
| 46 | - <time datetime="<?php echo strtotime( $dateYMD ); ?>" title="<?php echo $dateYMD; ?>"><?php echo $date; ?></time> |
|
| 45 | + <?php elseif ('invoice-date' === $column_id) : $date = wpinv_get_invoice_date($invoice->ID); $dateYMD = wpinv_get_invoice_date($invoice->ID, 'Y-m-d H:i:s'); ?> |
|
| 46 | + <time datetime="<?php echo strtotime($dateYMD); ?>" title="<?php echo $dateYMD; ?>"><?php echo $date; ?></time> |
|
| 47 | 47 | |
| 48 | - <?php elseif ( 'invoice-status' === $column_id ) : ?> |
|
| 49 | - <?php echo wpinv_invoice_status_label( $invoice_status, $invoice->get_status( true ) ) ; ?> |
|
| 48 | + <?php elseif ('invoice-status' === $column_id) : ?> |
|
| 49 | + <?php echo wpinv_invoice_status_label($invoice_status, $invoice->get_status(true)); ?> |
|
| 50 | 50 | |
| 51 | - <?php elseif ( 'invoice-total' === $column_id ) : ?> |
|
| 52 | - <?php echo $invoice->get_total( true ); ?> |
|
| 51 | + <?php elseif ('invoice-total' === $column_id) : ?> |
|
| 52 | + <?php echo $invoice->get_total(true); ?> |
|
| 53 | 53 | |
| 54 | - <?php elseif ( 'invoice-actions' === $column_id ) : ?> |
|
| 54 | + <?php elseif ('invoice-actions' === $column_id) : ?> |
|
| 55 | 55 | <?php |
| 56 | 56 | $actions = array( |
| 57 | 57 | 'pay' => array( |
| 58 | 58 | 'url' => $invoice->get_checkout_payment_url(), |
| 59 | - 'name' => __( 'Pay Now', 'invoicing' ), |
|
| 59 | + 'name' => __('Pay Now', 'invoicing'), |
|
| 60 | 60 | 'class' => 'btn-success' |
| 61 | 61 | ), |
| 62 | 62 | 'print' => array( |
| 63 | 63 | 'url' => $invoice->get_view_url(), |
| 64 | - 'name' => __( 'Print', 'invoicing' ), |
|
| 64 | + 'name' => __('Print', 'invoicing'), |
|
| 65 | 65 | 'class' => 'btn-primary', |
| 66 | 66 | 'attrs' => 'target="_blank"' |
| 67 | 67 | ) |
| 68 | 68 | ); |
| 69 | 69 | |
| 70 | - if ( ! $invoice->needs_payment() ) { |
|
| 71 | - unset( $actions['pay'] ); |
|
| 70 | + if (!$invoice->needs_payment()) { |
|
| 71 | + unset($actions['pay']); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if ( $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice ) ) { |
|
| 75 | - foreach ( $actions as $key => $action ) { |
|
| 74 | + if ($actions = apply_filters('wpinv_user_invoices_actions', $actions, $invoice)) { |
|
| 75 | + foreach ($actions as $key => $action) { |
|
| 76 | 76 | $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
| 77 | - echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
| 77 | + echo '<a href="' . esc_url($action['url']) . '" class="btn btn-sm ' . $class . ' ' . sanitize_html_class($key) . '" ' . (!empty($action['attrs']) ? $action['attrs'] : '') . '>' . $action['name'] . '</a>'; |
|
| 78 | 78 | } |
| 79 | 79 | } |
| 80 | 80 | ?> |
@@ -86,9 +86,9 @@ discard block |
||
| 86 | 86 | </tbody> |
| 87 | 87 | </table> |
| 88 | 88 | |
| 89 | - <?php do_action( 'wpinv_before_user_invoices_pagination' ); ?> |
|
| 89 | + <?php do_action('wpinv_before_user_invoices_pagination'); ?> |
|
| 90 | 90 | |
| 91 | - <?php if ( 1 < $user_invoices->max_num_pages ) : ?> |
|
| 91 | + <?php if (1 < $user_invoices->max_num_pages) : ?> |
|
| 92 | 92 | <div class="invoicing-Pagination"> |
| 93 | 93 | <?php |
| 94 | 94 | $big = 999999; |
@@ -100,20 +100,20 @@ discard block |
||
| 100 | 100 | else |
| 101 | 101 | $current_page = 1; |
| 102 | 102 | |
| 103 | - echo paginate_links( array( |
|
| 104 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 103 | + echo paginate_links(array( |
|
| 104 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
| 105 | 105 | 'format' => '?paged=%#%', |
| 106 | - 'current' => max( 1, $current_page ), |
|
| 106 | + 'current' => max(1, $current_page), |
|
| 107 | 107 | 'total' => $user_invoices->max_num_pages, |
| 108 | - ) ); |
|
| 108 | + )); |
|
| 109 | 109 | ?> |
| 110 | 110 | </div> |
| 111 | 111 | <?php endif; ?> |
| 112 | 112 | |
| 113 | 113 | <?php } else { ?> |
| 114 | 114 | <div class="wpinv-empty alert-info"> |
| 115 | - <?php _e( 'No invoice has been made yet.', 'invoicing' ); ?> |
|
| 115 | + <?php _e('No invoice has been made yet.', 'invoicing'); ?> |
|
| 116 | 116 | </div> |
| 117 | 117 | <?php } ?> |
| 118 | 118 | |
| 119 | -<?php do_action( 'wpinv_after_user_invoices', $has_invoices ); ?> |
|
| 119 | +<?php do_action('wpinv_after_user_invoices', $has_invoices); ?> |
|
@@ -11,45 +11,45 @@ |
||
| 11 | 11 | * @since 1.0.0 |
| 12 | 12 | */ |
| 13 | 13 | function wpinv_automatic_upgrade() { |
| 14 | - $wpi_version = get_option( 'wpinv_version' ); |
|
| 14 | + $wpi_version = get_option('wpinv_version'); |
|
| 15 | 15 | |
| 16 | - if ( $wpi_version == WPINV_VERSION ) { |
|
| 16 | + if ($wpi_version == WPINV_VERSION) { |
|
| 17 | 17 | return; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - if ( version_compare( $wpi_version, '0.0.5', '<' ) ) { |
|
| 20 | + if (version_compare($wpi_version, '0.0.5', '<')) { |
|
| 21 | 21 | wpinv_v005_upgrades(); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - update_option( 'wpinv_version', WPINV_VERSION ); |
|
| 24 | + update_option('wpinv_version', WPINV_VERSION); |
|
| 25 | 25 | } |
| 26 | -add_action( 'admin_init', 'wpinv_automatic_upgrade' ); |
|
| 26 | +add_action('admin_init', 'wpinv_automatic_upgrade'); |
|
| 27 | 27 | |
| 28 | 28 | function wpinv_v005_upgrades() { |
| 29 | 29 | global $wpdb; |
| 30 | 30 | |
| 31 | 31 | // Invoices status |
| 32 | - $results = $wpdb->get_results( "SELECT ID FROM " . $wpdb->posts . " WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
| 33 | - if ( !empty( $results ) ) { |
|
| 34 | - $wpdb->query( "UPDATE " . $wpdb->posts . " SET post_status = CONCAT( 'wpi-', post_status ) WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
| 32 | + $results = $wpdb->get_results("SELECT ID FROM " . $wpdb->posts . " WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )"); |
|
| 33 | + if (!empty($results)) { |
|
| 34 | + $wpdb->query("UPDATE " . $wpdb->posts . " SET post_status = CONCAT( 'wpi-', post_status ) WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )"); |
|
| 35 | 35 | |
| 36 | 36 | // Clean post cache |
| 37 | - foreach ( $results as $row ) { |
|
| 38 | - clean_post_cache( $row->ID ); |
|
| 37 | + foreach ($results as $row) { |
|
| 38 | + clean_post_cache($row->ID); |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | // Item meta key changes |
| 43 | 43 | $query = "SELECT DISTINCT post_id FROM " . $wpdb->postmeta . " WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id', '_wpinv_cpt_name', '_wpinv_cpt_singular_name' )"; |
| 44 | - $results = $wpdb->get_results( $query ); |
|
| 44 | + $results = $wpdb->get_results($query); |
|
| 45 | 45 | |
| 46 | - if ( !empty( $results ) ) { |
|
| 47 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_id' WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id' )" ); |
|
| 48 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_name' WHERE meta_key = '_wpinv_cpt_name'" ); |
|
| 49 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_singular_name' WHERE meta_key = '_wpinv_cpt_singular_name'" ); |
|
| 46 | + if (!empty($results)) { |
|
| 47 | + $wpdb->query("UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_id' WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id' )"); |
|
| 48 | + $wpdb->query("UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_name' WHERE meta_key = '_wpinv_cpt_name'"); |
|
| 49 | + $wpdb->query("UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_singular_name' WHERE meta_key = '_wpinv_cpt_singular_name'"); |
|
| 50 | 50 | |
| 51 | - foreach ( $results as $row ) { |
|
| 52 | - clean_post_cache( $row->post_id ); |
|
| 51 | + foreach ($results as $row) { |
|
| 52 | + clean_post_cache($row->post_id); |
|
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | |
@@ -7,44 +7,44 @@ 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 | -add_action( 'init', 'wpinv_register_post_types', 1 ); |
|
| 14 | +add_action('init', 'wpinv_register_post_types', 1); |
|
| 15 | 15 | function wpinv_register_post_types() { |
| 16 | 16 | $labels = array( |
| 17 | - 'name' => _x( 'Invoices', 'post type general name', 'invoicing' ), |
|
| 18 | - 'singular_name' => _x( 'Invoice', 'post type singular name', 'invoicing' ), |
|
| 19 | - 'menu_name' => _x( 'Invoices', 'admin menu', 'invoicing' ), |
|
| 20 | - 'name_admin_bar' => _x( 'Invoice', 'add new on admin bar', 'invoicing' ), |
|
| 21 | - 'add_new' => _x( 'Add New', 'book', 'invoicing' ), |
|
| 22 | - 'add_new_item' => __( 'Add New Invoice', 'invoicing' ), |
|
| 23 | - 'new_item' => __( 'New Invoice', 'invoicing' ), |
|
| 24 | - 'edit_item' => __( 'Edit Invoice', 'invoicing' ), |
|
| 25 | - 'view_item' => __( 'View Invoice', 'invoicing' ), |
|
| 26 | - 'all_items' => __( 'Invoices', 'invoicing' ), |
|
| 27 | - 'search_items' => __( 'Search Invoices', 'invoicing' ), |
|
| 28 | - 'parent_item_colon' => __( 'Parent Invoices:', 'invoicing' ), |
|
| 29 | - 'not_found' => __( 'No invoices found.', 'invoicing' ), |
|
| 30 | - 'not_found_in_trash' => __( 'No invoices found in trash.', 'invoicing' ) |
|
| 17 | + 'name' => _x('Invoices', 'post type general name', 'invoicing'), |
|
| 18 | + 'singular_name' => _x('Invoice', 'post type singular name', 'invoicing'), |
|
| 19 | + 'menu_name' => _x('Invoices', 'admin menu', 'invoicing'), |
|
| 20 | + 'name_admin_bar' => _x('Invoice', 'add new on admin bar', 'invoicing'), |
|
| 21 | + 'add_new' => _x('Add New', 'book', 'invoicing'), |
|
| 22 | + 'add_new_item' => __('Add New Invoice', 'invoicing'), |
|
| 23 | + 'new_item' => __('New Invoice', 'invoicing'), |
|
| 24 | + 'edit_item' => __('Edit Invoice', 'invoicing'), |
|
| 25 | + 'view_item' => __('View Invoice', 'invoicing'), |
|
| 26 | + 'all_items' => __('Invoices', 'invoicing'), |
|
| 27 | + 'search_items' => __('Search Invoices', 'invoicing'), |
|
| 28 | + 'parent_item_colon' => __('Parent Invoices:', 'invoicing'), |
|
| 29 | + 'not_found' => __('No invoices found.', 'invoicing'), |
|
| 30 | + 'not_found_in_trash' => __('No invoices found in trash.', 'invoicing') |
|
| 31 | 31 | ); |
| 32 | - $labels = apply_filters( 'wpinv_labels', $labels ); |
|
| 32 | + $labels = apply_filters('wpinv_labels', $labels); |
|
| 33 | 33 | |
| 34 | 34 | $menu_icon = WPINV_PLUGIN_URL . '/assets/images/favicon.ico'; |
| 35 | - $menu_icon = apply_filters( 'wpinv_menu_icon_invoice', $menu_icon ); |
|
| 35 | + $menu_icon = apply_filters('wpinv_menu_icon_invoice', $menu_icon); |
|
| 36 | 36 | |
| 37 | 37 | $cap_type = 'wpi_invoice'; |
| 38 | 38 | $args = array( |
| 39 | 39 | 'labels' => $labels, |
| 40 | - 'description' => __( 'This is where invoices are stored.', 'invoicing' ), |
|
| 40 | + 'description' => __('This is where invoices are stored.', 'invoicing'), |
|
| 41 | 41 | 'public' => true, |
| 42 | 42 | 'can_export' => true, |
| 43 | 43 | '_builtin' => false, |
| 44 | 44 | 'publicly_queryable' => true, |
| 45 | 45 | 'exclude_from_search'=> true, |
| 46 | 46 | 'show_ui' => true, |
| 47 | - 'show_in_menu' => current_user_can( 'manage_invoicing' ) ? 'wpinv' : true, |
|
| 47 | + 'show_in_menu' => current_user_can('manage_invoicing') ? 'wpinv' : true, |
|
| 48 | 48 | 'query_var' => false, |
| 49 | 49 | 'rewrite' => true, |
| 50 | 50 | 'capability_type' => 'wpi_invoice', |
@@ -68,38 +68,38 @@ discard block |
||
| 68 | 68 | 'has_archive' => false, |
| 69 | 69 | 'hierarchical' => false, |
| 70 | 70 | 'menu_position' => null, |
| 71 | - 'supports' => array( 'title', 'author' ), |
|
| 71 | + 'supports' => array('title', 'author'), |
|
| 72 | 72 | 'menu_icon' => $menu_icon, |
| 73 | 73 | ); |
| 74 | 74 | |
| 75 | - $args = apply_filters( 'wpinv_register_post_type_invoice', $args ); |
|
| 75 | + $args = apply_filters('wpinv_register_post_type_invoice', $args); |
|
| 76 | 76 | |
| 77 | - register_post_type( 'wpi_invoice', $args ); |
|
| 77 | + register_post_type('wpi_invoice', $args); |
|
| 78 | 78 | |
| 79 | 79 | $items_labels = array( |
| 80 | - 'name' => _x( 'Items', 'post type general name', 'invoicing' ), |
|
| 81 | - 'singular_name' => _x( 'Item', 'post type singular name', 'invoicing' ), |
|
| 82 | - 'menu_name' => _x( 'Items', 'admin menu', 'invoicing' ), |
|
| 83 | - 'add_new' => _x( 'Add New', 'wpi_item', 'invoicing' ), |
|
| 84 | - 'add_new_item' => __( 'Add New Item', 'invoicing' ), |
|
| 85 | - 'new_item' => __( 'New Item', 'invoicing' ), |
|
| 86 | - 'edit_item' => __( 'Edit Item', 'invoicing' ), |
|
| 87 | - 'view_item' => __( 'View Item', 'invoicing' ), |
|
| 88 | - 'all_items' => __( 'Items', 'invoicing' ), |
|
| 89 | - 'search_items' => __( 'Search Items', 'invoicing' ), |
|
| 80 | + 'name' => _x('Items', 'post type general name', 'invoicing'), |
|
| 81 | + 'singular_name' => _x('Item', 'post type singular name', 'invoicing'), |
|
| 82 | + 'menu_name' => _x('Items', 'admin menu', 'invoicing'), |
|
| 83 | + 'add_new' => _x('Add New', 'wpi_item', 'invoicing'), |
|
| 84 | + 'add_new_item' => __('Add New Item', 'invoicing'), |
|
| 85 | + 'new_item' => __('New Item', 'invoicing'), |
|
| 86 | + 'edit_item' => __('Edit Item', 'invoicing'), |
|
| 87 | + 'view_item' => __('View Item', 'invoicing'), |
|
| 88 | + 'all_items' => __('Items', 'invoicing'), |
|
| 89 | + 'search_items' => __('Search Items', 'invoicing'), |
|
| 90 | 90 | 'parent_item_colon' => '', |
| 91 | - 'not_found' => __( 'No items found.', 'invoicing' ), |
|
| 92 | - 'not_found_in_trash' => __( 'No items found in trash.', 'invoicing' ) |
|
| 91 | + 'not_found' => __('No items found.', 'invoicing'), |
|
| 92 | + 'not_found_in_trash' => __('No items found in trash.', 'invoicing') |
|
| 93 | 93 | ); |
| 94 | - $items_labels = apply_filters( 'wpinv_items_labels', $items_labels ); |
|
| 94 | + $items_labels = apply_filters('wpinv_items_labels', $items_labels); |
|
| 95 | 95 | |
| 96 | 96 | $cap_type = 'wpi_item'; |
| 97 | 97 | $invoice_item_args = array( |
| 98 | 98 | 'labels' => $items_labels, |
| 99 | 99 | 'public' => false, |
| 100 | 100 | 'show_ui' => true, |
| 101 | - 'show_in_menu' => current_user_can( 'manage_invoicing' ) ? 'wpinv' : false, |
|
| 102 | - 'supports' => array( 'title', 'excerpt' ), |
|
| 101 | + 'show_in_menu' => current_user_can('manage_invoicing') ? 'wpinv' : false, |
|
| 102 | + 'supports' => array('title', 'excerpt'), |
|
| 103 | 103 | 'register_meta_box_cb' => 'wpinv_register_item_meta_boxes', |
| 104 | 104 | 'rewrite' => false, |
| 105 | 105 | 'query_var' => false, |
@@ -123,40 +123,40 @@ discard block |
||
| 123 | 123 | ), |
| 124 | 124 | 'can_export' => true, |
| 125 | 125 | ); |
| 126 | - $invoice_item_args = apply_filters( 'wpinv_register_post_type_invoice_item', $invoice_item_args ); |
|
| 126 | + $invoice_item_args = apply_filters('wpinv_register_post_type_invoice_item', $invoice_item_args); |
|
| 127 | 127 | |
| 128 | - register_post_type( 'wpi_item', $invoice_item_args ); |
|
| 128 | + register_post_type('wpi_item', $invoice_item_args); |
|
| 129 | 129 | |
| 130 | 130 | $labels = array( |
| 131 | - 'name' => _x( 'Discounts', 'post type general name', 'invoicing' ), |
|
| 132 | - 'singular_name' => _x( 'Discount', 'post type singular name', 'invoicing' ), |
|
| 133 | - 'menu_name' => _x( 'Discounts', 'admin menu', 'invoicing' ), |
|
| 134 | - 'name_admin_bar' => _x( 'Discount', 'add new on admin bar', 'invoicing' ), |
|
| 135 | - 'add_new' => _x( 'Add New', 'book', 'invoicing' ), |
|
| 136 | - 'add_new_item' => __( 'Add New Discount', 'invoicing' ), |
|
| 137 | - 'new_item' => __( 'New Discount', 'invoicing' ), |
|
| 138 | - 'edit_item' => __( 'Edit Discount', 'invoicing' ), |
|
| 139 | - 'view_item' => __( 'View Discount', 'invoicing' ), |
|
| 140 | - 'all_items' => __( 'Discounts', 'invoicing' ), |
|
| 141 | - 'search_items' => __( 'Search Discounts', 'invoicing' ), |
|
| 142 | - 'parent_item_colon' => __( 'Parent Discounts:', 'invoicing' ), |
|
| 143 | - 'not_found' => __( 'No discounts found.', 'invoicing' ), |
|
| 144 | - 'not_found_in_trash' => __( 'No discounts found in trash.', 'invoicing' ) |
|
| 131 | + 'name' => _x('Discounts', 'post type general name', 'invoicing'), |
|
| 132 | + 'singular_name' => _x('Discount', 'post type singular name', 'invoicing'), |
|
| 133 | + 'menu_name' => _x('Discounts', 'admin menu', 'invoicing'), |
|
| 134 | + 'name_admin_bar' => _x('Discount', 'add new on admin bar', 'invoicing'), |
|
| 135 | + 'add_new' => _x('Add New', 'book', 'invoicing'), |
|
| 136 | + 'add_new_item' => __('Add New Discount', 'invoicing'), |
|
| 137 | + 'new_item' => __('New Discount', 'invoicing'), |
|
| 138 | + 'edit_item' => __('Edit Discount', 'invoicing'), |
|
| 139 | + 'view_item' => __('View Discount', 'invoicing'), |
|
| 140 | + 'all_items' => __('Discounts', 'invoicing'), |
|
| 141 | + 'search_items' => __('Search Discounts', 'invoicing'), |
|
| 142 | + 'parent_item_colon' => __('Parent Discounts:', 'invoicing'), |
|
| 143 | + 'not_found' => __('No discounts found.', 'invoicing'), |
|
| 144 | + 'not_found_in_trash' => __('No discounts found in trash.', 'invoicing') |
|
| 145 | 145 | ); |
| 146 | - $labels = apply_filters( 'wpinv_discounts_labels', $labels ); |
|
| 146 | + $labels = apply_filters('wpinv_discounts_labels', $labels); |
|
| 147 | 147 | |
| 148 | 148 | $cap_type = 'wpi_discount'; |
| 149 | 149 | |
| 150 | 150 | $args = array( |
| 151 | 151 | 'labels' => $labels, |
| 152 | - 'description' => __( 'This is where you can add new discounts that users can use in invoices.', 'invoicing' ), |
|
| 152 | + 'description' => __('This is where you can add new discounts that users can use in invoices.', 'invoicing'), |
|
| 153 | 153 | 'public' => false, |
| 154 | 154 | 'can_export' => true, |
| 155 | 155 | '_builtin' => false, |
| 156 | 156 | 'publicly_queryable' => false, |
| 157 | 157 | 'exclude_from_search'=> true, |
| 158 | 158 | 'show_ui' => true, |
| 159 | - 'show_in_menu' => current_user_can( 'manage_invoicing' ) ? 'wpinv' : false, |
|
| 159 | + 'show_in_menu' => current_user_can('manage_invoicing') ? 'wpinv' : false, |
|
| 160 | 160 | 'query_var' => false, |
| 161 | 161 | 'rewrite' => false, |
| 162 | 162 | 'capability_type' => $cap_type, |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | ), |
| 180 | 180 | 'has_archive' => false, |
| 181 | 181 | 'hierarchical' => false, |
| 182 | - 'supports' => array( 'title', 'excerpt' ), |
|
| 182 | + 'supports' => array('title', 'excerpt'), |
|
| 183 | 183 | 'register_meta_box_cb' => 'wpinv_register_discount_meta_boxes', |
| 184 | 184 | 'show_in_nav_menus' => false, |
| 185 | 185 | 'show_in_admin_bar' => true, |
@@ -187,107 +187,107 @@ discard block |
||
| 187 | 187 | 'menu_position' => null, |
| 188 | 188 | ); |
| 189 | 189 | |
| 190 | - $args = apply_filters( 'wpinv_register_post_type_discount', $args ); |
|
| 190 | + $args = apply_filters('wpinv_register_post_type_discount', $args); |
|
| 191 | 191 | |
| 192 | - register_post_type( 'wpi_discount', $args ); |
|
| 192 | + register_post_type('wpi_discount', $args); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | function wpinv_get_default_labels() { |
| 196 | 196 | $defaults = array( |
| 197 | - 'singular' => __( 'Invoice', 'invoicing' ), |
|
| 198 | - 'plural' => __( 'Invoices', 'invoicing' ) |
|
| 197 | + 'singular' => __('Invoice', 'invoicing'), |
|
| 198 | + 'plural' => __('Invoices', 'invoicing') |
|
| 199 | 199 | ); |
| 200 | 200 | |
| 201 | - return apply_filters( 'wpinv_default_invoices_name', $defaults ); |
|
| 201 | + return apply_filters('wpinv_default_invoices_name', $defaults); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | -function wpinv_get_label_singular( $lowercase = false ) { |
|
| 204 | +function wpinv_get_label_singular($lowercase = false) { |
|
| 205 | 205 | $defaults = wpinv_get_default_labels(); |
| 206 | 206 | |
| 207 | - return ($lowercase) ? strtolower( $defaults['singular'] ) : $defaults['singular']; |
|
| 207 | + return ($lowercase) ? strtolower($defaults['singular']) : $defaults['singular']; |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | -function wpinv_get_label_plural( $lowercase = false ) { |
|
| 210 | +function wpinv_get_label_plural($lowercase = false) { |
|
| 211 | 211 | $defaults = wpinv_get_default_labels(); |
| 212 | 212 | |
| 213 | - return ( $lowercase ) ? strtolower( $defaults['plural'] ) : $defaults['plural']; |
|
| 213 | + return ($lowercase) ? strtolower($defaults['plural']) : $defaults['plural']; |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | -function wpinv_change_default_title( $title ) { |
|
| 217 | - if ( !is_admin() ) { |
|
| 216 | +function wpinv_change_default_title($title) { |
|
| 217 | + if (!is_admin()) { |
|
| 218 | 218 | $label = wpinv_get_label_singular(); |
| 219 | - $title = sprintf( __( 'Enter %s name here', 'invoicing' ), $label ); |
|
| 219 | + $title = sprintf(__('Enter %s name here', 'invoicing'), $label); |
|
| 220 | 220 | return $title; |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | $screen = get_current_screen(); |
| 224 | 224 | |
| 225 | - if ( 'wpi_invoice' == $screen->post_type ) { |
|
| 225 | + if ('wpi_invoice' == $screen->post_type) { |
|
| 226 | 226 | $label = wpinv_get_label_singular(); |
| 227 | - $title = sprintf( __( 'Enter %s name here', 'invoicing' ), $label ); |
|
| 227 | + $title = sprintf(__('Enter %s name here', 'invoicing'), $label); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | return $title; |
| 231 | 231 | } |
| 232 | -add_filter( 'enter_title_here', 'wpinv_change_default_title' ); |
|
| 232 | +add_filter('enter_title_here', 'wpinv_change_default_title'); |
|
| 233 | 233 | |
| 234 | 234 | function wpinv_register_post_status() { |
| 235 | - register_post_status( 'wpi-pending', array( |
|
| 236 | - 'label' => _x( 'Pending', 'Invoice status', 'invoicing' ), |
|
| 235 | + register_post_status('wpi-pending', array( |
|
| 236 | + 'label' => _x('Pending', 'Invoice status', 'invoicing'), |
|
| 237 | 237 | 'public' => true, |
| 238 | 238 | 'exclude_from_search' => true, |
| 239 | 239 | 'show_in_admin_all_list' => true, |
| 240 | 240 | 'show_in_admin_status_list' => true, |
| 241 | - 'label_count' => _n_noop( 'Pending <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>', 'invoicing' ) |
|
| 242 | - ) ); |
|
| 243 | - register_post_status( 'wpi-processing', array( |
|
| 244 | - 'label' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
|
| 241 | + 'label_count' => _n_noop('Pending <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>', 'invoicing') |
|
| 242 | + )); |
|
| 243 | + register_post_status('wpi-processing', array( |
|
| 244 | + 'label' => _x('Processing', 'Invoice status', 'invoicing'), |
|
| 245 | 245 | 'public' => true, |
| 246 | 246 | 'exclude_from_search' => true, |
| 247 | 247 | 'show_in_admin_all_list' => true, |
| 248 | 248 | 'show_in_admin_status_list' => true, |
| 249 | - 'label_count' => _n_noop( 'Processing <span class="count">(%s)</span>', 'Processing <span class="count">(%s)</span>', 'invoicing' ) |
|
| 250 | - ) ); |
|
| 251 | - register_post_status( 'wpi-onhold', array( |
|
| 252 | - 'label' => _x( 'On Hold', 'Invoice status', 'invoicing' ), |
|
| 249 | + 'label_count' => _n_noop('Processing <span class="count">(%s)</span>', 'Processing <span class="count">(%s)</span>', 'invoicing') |
|
| 250 | + )); |
|
| 251 | + register_post_status('wpi-onhold', array( |
|
| 252 | + 'label' => _x('On Hold', 'Invoice status', 'invoicing'), |
|
| 253 | 253 | 'public' => true, |
| 254 | 254 | 'exclude_from_search' => true, |
| 255 | 255 | 'show_in_admin_all_list' => true, |
| 256 | 256 | 'show_in_admin_status_list' => true, |
| 257 | - 'label_count' => _n_noop( 'On Hold <span class="count">(%s)</span>', 'On Hold <span class="count">(%s)</span>', 'invoicing' ) |
|
| 258 | - ) ); |
|
| 259 | - register_post_status( 'wpi-cancelled', array( |
|
| 260 | - 'label' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
| 257 | + 'label_count' => _n_noop('On Hold <span class="count">(%s)</span>', 'On Hold <span class="count">(%s)</span>', 'invoicing') |
|
| 258 | + )); |
|
| 259 | + register_post_status('wpi-cancelled', array( |
|
| 260 | + 'label' => _x('Cancelled', 'Invoice status', 'invoicing'), |
|
| 261 | 261 | 'public' => true, |
| 262 | 262 | 'exclude_from_search' => true, |
| 263 | 263 | 'show_in_admin_all_list' => true, |
| 264 | 264 | 'show_in_admin_status_list' => true, |
| 265 | - 'label_count' => _n_noop( 'Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'invoicing' ) |
|
| 266 | - ) ); |
|
| 267 | - register_post_status( 'wpi-refunded', array( |
|
| 268 | - 'label' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
| 265 | + 'label_count' => _n_noop('Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'invoicing') |
|
| 266 | + )); |
|
| 267 | + register_post_status('wpi-refunded', array( |
|
| 268 | + 'label' => _x('Refunded', 'Invoice status', 'invoicing'), |
|
| 269 | 269 | 'public' => true, |
| 270 | 270 | 'exclude_from_search' => true, |
| 271 | 271 | 'show_in_admin_all_list' => true, |
| 272 | 272 | 'show_in_admin_status_list' => true, |
| 273 | - 'label_count' => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'invoicing' ) |
|
| 274 | - ) ); |
|
| 275 | - register_post_status( 'wpi-failed', array( |
|
| 276 | - 'label' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
|
| 273 | + 'label_count' => _n_noop('Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'invoicing') |
|
| 274 | + )); |
|
| 275 | + register_post_status('wpi-failed', array( |
|
| 276 | + 'label' => _x('Failed', 'Invoice status', 'invoicing'), |
|
| 277 | 277 | 'public' => true, |
| 278 | 278 | 'exclude_from_search' => true, |
| 279 | 279 | 'show_in_admin_all_list' => true, |
| 280 | 280 | 'show_in_admin_status_list' => true, |
| 281 | - 'label_count' => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'invoicing' ) |
|
| 282 | - ) ); |
|
| 283 | - register_post_status( 'wpi-renewal', array( |
|
| 284 | - 'label' => _x( 'Renewal', 'Invoice status', 'invoicing' ), |
|
| 281 | + 'label_count' => _n_noop('Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'invoicing') |
|
| 282 | + )); |
|
| 283 | + register_post_status('wpi-renewal', array( |
|
| 284 | + 'label' => _x('Renewal', 'Invoice status', 'invoicing'), |
|
| 285 | 285 | 'public' => true, |
| 286 | 286 | 'exclude_from_search' => true, |
| 287 | 287 | 'show_in_admin_all_list' => true, |
| 288 | 288 | 'show_in_admin_status_list' => true, |
| 289 | - 'label_count' => _n_noop( 'Renewal <span class="count">(%s)</span>', 'Renewal <span class="count">(%s)</span>', 'invoicing' ) |
|
| 290 | - ) ); |
|
| 289 | + 'label_count' => _n_noop('Renewal <span class="count">(%s)</span>', 'Renewal <span class="count">(%s)</span>', 'invoicing') |
|
| 290 | + )); |
|
| 291 | 291 | } |
| 292 | -add_action( 'init', 'wpinv_register_post_status', 10 ); |
|
| 292 | +add_action('init', 'wpinv_register_post_status', 10); |
|
| 293 | 293 | |
@@ -1,21 +1,21 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // Exit if accessed directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 3 | +if (!defined('ABSPATH')) exit; |
|
| 4 | 4 | |
| 5 | -function wpinv_get_users_invoices( $user = 0, $number = 20, $pagination = false, $status = 'publish' ) { |
|
| 6 | - if ( empty( $user ) ) { |
|
| 5 | +function wpinv_get_users_invoices($user = 0, $number = 20, $pagination = false, $status = 'publish') { |
|
| 6 | + if (empty($user)) { |
|
| 7 | 7 | $user = get_current_user_id(); |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | - if ( 0 === $user ) { |
|
| 10 | + if (0 === $user) { |
|
| 11 | 11 | return false; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - if ( $pagination ) { |
|
| 15 | - if ( get_query_var( 'paged' ) ) |
|
| 14 | + if ($pagination) { |
|
| 15 | + if (get_query_var('paged')) |
|
| 16 | 16 | $paged = get_query_var('paged'); |
| 17 | - else if ( get_query_var( 'page' ) ) |
|
| 18 | - $paged = get_query_var( 'page' ); |
|
| 17 | + else if (get_query_var('page')) |
|
| 18 | + $paged = get_query_var('page'); |
|
| 19 | 19 | else |
| 20 | 20 | $paged = 1; |
| 21 | 21 | } |
@@ -24,21 +24,21 @@ discard block |
||
| 24 | 24 | 'post_type' => 'wpi_invoice', |
| 25 | 25 | 'posts_per_page' => 20, |
| 26 | 26 | 'paged' => null, |
| 27 | - 'post_status' => array( 'publish', 'wpi-pending' ), |
|
| 27 | + 'post_status' => array('publish', 'wpi-pending'), |
|
| 28 | 28 | 'user' => $user, |
| 29 | 29 | 'order' => 'date', |
| 30 | 30 | ); |
| 31 | 31 | |
| 32 | - $invoices = get_posts( $args ); |
|
| 32 | + $invoices = get_posts($args); |
|
| 33 | 33 | |
| 34 | 34 | // No invoices |
| 35 | - if ( ! $invoices ) |
|
| 35 | + if (!$invoices) |
|
| 36 | 36 | return false; |
| 37 | 37 | |
| 38 | 38 | return $invoices; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | -function wpinv_dropdown_users( $args = '' ) { |
|
| 41 | +function wpinv_dropdown_users($args = '') { |
|
| 42 | 42 | $defaults = array( |
| 43 | 43 | 'show_option_all' => '', 'show_option_none' => '', 'hide_if_only_one_author' => '', |
| 44 | 44 | 'orderby' => 'display_name', 'order' => 'ASC', |
@@ -49,18 +49,18 @@ discard block |
||
| 49 | 49 | 'option_none_value' => -1 |
| 50 | 50 | ); |
| 51 | 51 | |
| 52 | - $defaults['selected'] = is_author() ? get_query_var( 'author' ) : 0; |
|
| 52 | + $defaults['selected'] = is_author() ? get_query_var('author') : 0; |
|
| 53 | 53 | |
| 54 | - $r = wp_parse_args( $args, $defaults ); |
|
| 54 | + $r = wp_parse_args($args, $defaults); |
|
| 55 | 55 | |
| 56 | - $query_args = wp_array_slice_assoc( $r, array( 'blog_id', 'include', 'exclude', 'orderby', 'order', 'who' ) ); |
|
| 56 | + $query_args = wp_array_slice_assoc($r, array('blog_id', 'include', 'exclude', 'orderby', 'order', 'who')); |
|
| 57 | 57 | |
| 58 | - $fields = array( 'ID', 'user_login', 'user_email' ); |
|
| 58 | + $fields = array('ID', 'user_login', 'user_email'); |
|
| 59 | 59 | |
| 60 | - $show = ! empty( $r['show'] ) ? $r['show'] : 'display_name'; |
|
| 61 | - if ( 'display_name_with_login' === $show ) { |
|
| 60 | + $show = !empty($r['show']) ? $r['show'] : 'display_name'; |
|
| 61 | + if ('display_name_with_login' === $show) { |
|
| 62 | 62 | $fields[] = 'display_name'; |
| 63 | - } else if ( 'display_name_with_email' === $show ) { |
|
| 63 | + } else if ('display_name_with_email' === $show) { |
|
| 64 | 64 | $fields[] = 'display_name'; |
| 65 | 65 | } else { |
| 66 | 66 | $fields[] = $show; |
@@ -72,99 +72,99 @@ discard block |
||
| 72 | 72 | $show_option_none = $r['show_option_none']; |
| 73 | 73 | $option_none_value = $r['option_none_value']; |
| 74 | 74 | |
| 75 | - $query_args = apply_filters( 'wpinv_dropdown_users_args', $query_args, $r ); |
|
| 75 | + $query_args = apply_filters('wpinv_dropdown_users_args', $query_args, $r); |
|
| 76 | 76 | |
| 77 | - $users = get_users( $query_args ); |
|
| 77 | + $users = get_users($query_args); |
|
| 78 | 78 | |
| 79 | 79 | $output = ''; |
| 80 | - if ( ! empty( $users ) && ( empty( $r['hide_if_only_one_author'] ) || count( $users ) > 1 ) ) { |
|
| 81 | - $name = esc_attr( $r['name'] ); |
|
| 82 | - if ( $r['multi'] && ! $r['id'] ) { |
|
| 80 | + if (!empty($users) && (empty($r['hide_if_only_one_author']) || count($users) > 1)) { |
|
| 81 | + $name = esc_attr($r['name']); |
|
| 82 | + if ($r['multi'] && !$r['id']) { |
|
| 83 | 83 | $id = ''; |
| 84 | 84 | } else { |
| 85 | - $id = $r['id'] ? " id='" . esc_attr( $r['id'] ) . "'" : " id='$name'"; |
|
| 85 | + $id = $r['id'] ? " id='" . esc_attr($r['id']) . "'" : " id='$name'"; |
|
| 86 | 86 | } |
| 87 | 87 | $output = "<select name='{$name}'{$id} class='" . $r['class'] . "'>\n"; |
| 88 | 88 | |
| 89 | - if ( $show_option_all ) { |
|
| 89 | + if ($show_option_all) { |
|
| 90 | 90 | $output .= "\t<option value='0'>$show_option_all</option>\n"; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - if ( $show_option_none ) { |
|
| 94 | - $_selected = selected( $option_none_value, $r['selected'], false ); |
|
| 95 | - $output .= "\t<option value='" . esc_attr( $option_none_value ) . "'$_selected>$show_option_none</option>\n"; |
|
| 93 | + if ($show_option_none) { |
|
| 94 | + $_selected = selected($option_none_value, $r['selected'], false); |
|
| 95 | + $output .= "\t<option value='" . esc_attr($option_none_value) . "'$_selected>$show_option_none</option>\n"; |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - if ( $r['include_selected'] && ( $r['selected'] > 0 ) ) { |
|
| 98 | + if ($r['include_selected'] && ($r['selected'] > 0)) { |
|
| 99 | 99 | $found_selected = false; |
| 100 | - $r['selected'] = (int) $r['selected']; |
|
| 101 | - foreach ( (array) $users as $user ) { |
|
| 102 | - $user->ID = (int) $user->ID; |
|
| 103 | - if ( $user->ID === $r['selected'] ) { |
|
| 100 | + $r['selected'] = (int)$r['selected']; |
|
| 101 | + foreach ((array)$users as $user) { |
|
| 102 | + $user->ID = (int)$user->ID; |
|
| 103 | + if ($user->ID === $r['selected']) { |
|
| 104 | 104 | $found_selected = true; |
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - if ( ! $found_selected ) { |
|
| 109 | - $users[] = get_userdata( $r['selected'] ); |
|
| 108 | + if (!$found_selected) { |
|
| 109 | + $users[] = get_userdata($r['selected']); |
|
| 110 | 110 | } |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - foreach ( (array) $users as $user ) { |
|
| 114 | - if ( 'display_name_with_login' === $show ) { |
|
| 113 | + foreach ((array)$users as $user) { |
|
| 114 | + if ('display_name_with_login' === $show) { |
|
| 115 | 115 | /* translators: 1: display name, 2: user_login */ |
| 116 | - $display = sprintf( _x( '%1$s (%2$s)', 'user dropdown' ), $user->display_name, $user->user_login ); |
|
| 117 | - } elseif ( 'display_name_with_email' === $show ) { |
|
| 116 | + $display = sprintf(_x('%1$s (%2$s)', 'user dropdown'), $user->display_name, $user->user_login); |
|
| 117 | + } elseif ('display_name_with_email' === $show) { |
|
| 118 | 118 | /* translators: 1: display name, 2: user_email */ |
| 119 | - if ( $user->display_name == $user->user_email ) { |
|
| 119 | + if ($user->display_name == $user->user_email) { |
|
| 120 | 120 | $display = $user->display_name; |
| 121 | 121 | } else { |
| 122 | - $display = sprintf( _x( '%1$s (%2$s)', 'user dropdown' ), $user->display_name, $user->user_email ); |
|
| 122 | + $display = sprintf(_x('%1$s (%2$s)', 'user dropdown'), $user->display_name, $user->user_email); |
|
| 123 | 123 | } |
| 124 | - } elseif ( ! empty( $user->$show ) ) { |
|
| 124 | + } elseif (!empty($user->$show)) { |
|
| 125 | 125 | $display = $user->$show; |
| 126 | 126 | } else { |
| 127 | 127 | $display = '(' . $user->user_login . ')'; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - $_selected = selected( $user->ID, $r['selected'], false ); |
|
| 131 | - $output .= "\t<option value='$user->ID'$_selected>" . esc_html( $display ) . "</option>\n"; |
|
| 130 | + $_selected = selected($user->ID, $r['selected'], false); |
|
| 131 | + $output .= "\t<option value='$user->ID'$_selected>" . esc_html($display) . "</option>\n"; |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | $output .= "</select>"; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - $html = apply_filters( 'wpinv_dropdown_users', $output ); |
|
| 137 | + $html = apply_filters('wpinv_dropdown_users', $output); |
|
| 138 | 138 | |
| 139 | - if ( $r['echo'] ) { |
|
| 139 | + if ($r['echo']) { |
|
| 140 | 140 | echo $html; |
| 141 | 141 | } |
| 142 | 142 | return $html; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | -function wpinv_guest_redirect( $redirect_to, $user_id = 0 ) { |
|
| 146 | - if ( (int)wpinv_get_option( 'guest_checkout' ) && $user_id > 0 ) { |
|
| 147 | - wpinv_login_user( $user_id ); |
|
| 145 | +function wpinv_guest_redirect($redirect_to, $user_id = 0) { |
|
| 146 | + if ((int)wpinv_get_option('guest_checkout') && $user_id > 0) { |
|
| 147 | + wpinv_login_user($user_id); |
|
| 148 | 148 | } else { |
| 149 | - $redirect_to = wp_login_url( $redirect_to ); |
|
| 149 | + $redirect_to = wp_login_url($redirect_to); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - $redirect_to = apply_filters( 'wpinv_invoice_link_guest_redirect', $redirect_to, $user_id ); |
|
| 152 | + $redirect_to = apply_filters('wpinv_invoice_link_guest_redirect', $redirect_to, $user_id); |
|
| 153 | 153 | |
| 154 | - wp_redirect( $redirect_to ); |
|
| 154 | + wp_redirect($redirect_to); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | -function wpinv_login_user( $user_id ) { |
|
| 158 | - if ( is_user_logged_in() ) { |
|
| 157 | +function wpinv_login_user($user_id) { |
|
| 158 | + if (is_user_logged_in()) { |
|
| 159 | 159 | return true; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - $user = get_user_by( 'id', $user_id ); |
|
| 162 | + $user = get_user_by('id', $user_id); |
|
| 163 | 163 | |
| 164 | - if ( !empty( $user ) && !is_wp_error( $user ) && !empty( $user->user_login ) ) { |
|
| 165 | - wp_set_current_user( $user_id, $user->user_login ); |
|
| 166 | - wp_set_auth_cookie( $user_id ); |
|
| 167 | - do_action( 'wp_login', $user->user_login ); |
|
| 164 | + if (!empty($user) && !is_wp_error($user) && !empty($user->user_login)) { |
|
| 165 | + wp_set_current_user($user_id, $user->user_login); |
|
| 166 | + wp_set_auth_cookie($user_id); |
|
| 167 | + do_action('wp_login', $user->user_login); |
|
| 168 | 168 | |
| 169 | 169 | return true; |
| 170 | 170 | } |
@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // Exit if accessed directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 3 | +if (!defined('ABSPATH')) exit; |
|
| 4 | 4 | |
| 5 | -add_action( 'wpinv_bank_transfer_cc_form', '__return_false' ); |
|
| 5 | +add_action('wpinv_bank_transfer_cc_form', '__return_false'); |
|
| 6 | 6 | |
| 7 | -function wpinv_process_bank_transfer_payment( $purchase_data ) { |
|
| 8 | - if( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'wpi-gateway' ) ) { |
|
| 9 | - wp_die( __( 'Nonce verification has failed', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 7 | +function wpinv_process_bank_transfer_payment($purchase_data) { |
|
| 8 | + if (!wp_verify_nonce($purchase_data['gateway_nonce'], 'wpi-gateway')) { |
|
| 9 | + wp_die(__('Nonce verification has failed', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | // Collect payment data |
@@ -24,37 +24,37 @@ discard block |
||
| 24 | 24 | ); |
| 25 | 25 | |
| 26 | 26 | // Record the pending payment |
| 27 | - $invoice = wpinv_get_invoice( $purchase_data['invoice_id'] ); |
|
| 27 | + $invoice = wpinv_get_invoice($purchase_data['invoice_id']); |
|
| 28 | 28 | |
| 29 | - if ( !empty( $invoice ) ) { |
|
| 30 | - wpinv_set_payment_transaction_id( $invoice->ID, $invoice->generate_key() ); |
|
| 31 | - wpinv_update_payment_status( $invoice, 'wpi-pending' ); |
|
| 29 | + if (!empty($invoice)) { |
|
| 30 | + wpinv_set_payment_transaction_id($invoice->ID, $invoice->generate_key()); |
|
| 31 | + wpinv_update_payment_status($invoice, 'wpi-pending'); |
|
| 32 | 32 | |
| 33 | 33 | // Empty the shopping cart |
| 34 | 34 | wpinv_empty_cart(); |
| 35 | 35 | |
| 36 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
| 36 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
| 37 | 37 | } else { |
| 38 | - wpinv_record_gateway_error( __( 'Payment Error', 'invoicing' ), sprintf( __( 'Payment creation failed while processing a bank transfer payment. Payment data: %s', 'invoicing' ), json_encode( $payment_data ) ), $invoice ); |
|
| 38 | + wpinv_record_gateway_error(__('Payment Error', 'invoicing'), sprintf(__('Payment creation failed while processing a bank transfer payment. Payment data: %s', 'invoicing'), json_encode($payment_data)), $invoice); |
|
| 39 | 39 | // If errors are present, send the user back to the purchase page so they can be corrected |
| 40 | - wpinv_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['wpi-gateway'] ); |
|
| 40 | + wpinv_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['wpi-gateway']); |
|
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | -add_action( 'wpinv_gateway_bank_transfer', 'wpinv_process_bank_transfer_payment' ); |
|
| 43 | +add_action('wpinv_gateway_bank_transfer', 'wpinv_process_bank_transfer_payment'); |
|
| 44 | 44 | |
| 45 | -function wpinv_show_bank_info( $invoice ) { |
|
| 46 | - if ( !empty( $invoice ) && $invoice->gateway == 'bank_transfer' && $invoice->status == 'wpi-pending' ) { |
|
| 47 | - $bank_info = wpinv_get_bank_info( true ); |
|
| 45 | +function wpinv_show_bank_info($invoice) { |
|
| 46 | + if (!empty($invoice) && $invoice->gateway == 'bank_transfer' && $invoice->status == 'wpi-pending') { |
|
| 47 | + $bank_info = wpinv_get_bank_info(true); |
|
| 48 | 48 | ?> |
| 49 | 49 | <div class="wpinv-bank-details"> |
| 50 | - <?php if ( $instructions = wpinv_get_bank_instructions() ) { ?> |
|
| 51 | - <div class="alert bg-info"><?php echo wpautop( wp_kses_post( $instructions ) ); ?></div> |
|
| 50 | + <?php if ($instructions = wpinv_get_bank_instructions()) { ?> |
|
| 51 | + <div class="alert bg-info"><?php echo wpautop(wp_kses_post($instructions)); ?></div> |
|
| 52 | 52 | <?php } ?> |
| 53 | - <?php if ( !empty( $bank_info ) ) { ?> |
|
| 54 | - <h3 class="wpinv-bank-t"><?php echo apply_filters( 'wpinv_receipt_bank_details_title', __( 'Our Bank Details', 'invoicing' ) ); ?></h3> |
|
| 53 | + <?php if (!empty($bank_info)) { ?> |
|
| 54 | + <h3 class="wpinv-bank-t"><?php echo apply_filters('wpinv_receipt_bank_details_title', __('Our Bank Details', 'invoicing')); ?></h3> |
|
| 55 | 55 | <table class="table table-bordered table-sm wpi-bank-details"> |
| 56 | - <?php foreach ( $bank_info as $key => $info ) { ?> |
|
| 57 | - <tr class="wpi-<?php echo sanitize_html_class( $key );?>"><th class="text-left"><?php echo $info['label'] ;?></th><td><?php echo $info['value'] ;?></td></tr> |
|
| 56 | + <?php foreach ($bank_info as $key => $info) { ?> |
|
| 57 | + <tr class="wpi-<?php echo sanitize_html_class($key); ?>"><th class="text-left"><?php echo $info['label']; ?></th><td><?php echo $info['value']; ?></td></tr> |
|
| 58 | 58 | <?php } ?> |
| 59 | 59 | </table> |
| 60 | 60 | <?php } ?> |
@@ -62,15 +62,15 @@ discard block |
||
| 62 | 62 | <?php |
| 63 | 63 | } |
| 64 | 64 | } |
| 65 | -add_action( 'wpinv_before_receipt_details', 'wpinv_show_bank_info', 10, 1 ); |
|
| 65 | +add_action('wpinv_before_receipt_details', 'wpinv_show_bank_info', 10, 1); |
|
| 66 | 66 | |
| 67 | -function wpinv_invoice_print_bank_info( $invoice ) { |
|
| 68 | - if ( !empty( $invoice ) && $invoice->gateway == 'bank_transfer' && $invoice->status == 'wpi-pending' ) { |
|
| 67 | +function wpinv_invoice_print_bank_info($invoice) { |
|
| 68 | + if (!empty($invoice) && $invoice->gateway == 'bank_transfer' && $invoice->status == 'wpi-pending') { |
|
| 69 | 69 | ?> |
| 70 | 70 | <div class="row wpinv-bank-info"> |
| 71 | - <?php echo wpinv_show_bank_info( $invoice ); ?> |
|
| 71 | + <?php echo wpinv_show_bank_info($invoice); ?> |
|
| 72 | 72 | </div> |
| 73 | 73 | <?php |
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | -add_action( 'wpinv_invoice_print_after_top_content', 'wpinv_invoice_print_bank_info', 10, 1 ); |
|
| 77 | 76 | \ No newline at end of file |
| 77 | +add_action('wpinv_invoice_print_after_top_content', 'wpinv_invoice_print_bank_info', 10, 1); |
|
| 78 | 78 | \ No newline at end of file |
@@ -7,90 +7,90 @@ 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 | 14 | function wpinv_get_discount_types() { |
| 15 | 15 | $discount_types = array( |
| 16 | - 'percent' => __( 'Percentage', 'invoicing' ), |
|
| 17 | - 'flat' => __( 'Flat Amount', 'invoicing' ), |
|
| 16 | + 'percent' => __('Percentage', 'invoicing'), |
|
| 17 | + 'flat' => __('Flat Amount', 'invoicing'), |
|
| 18 | 18 | ); |
| 19 | - return (array)apply_filters( 'wpinv_discount_types', $discount_types ); |
|
| 19 | + return (array)apply_filters('wpinv_discount_types', $discount_types); |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | -function wpinv_get_discount_type_name( $type = '' ) { |
|
| 22 | +function wpinv_get_discount_type_name($type = '') { |
|
| 23 | 23 | $types = wpinv_get_discount_types(); |
| 24 | - return isset( $types[ $type ] ) ? $types[ $type ] : ''; |
|
| 24 | + return isset($types[$type]) ? $types[$type] : ''; |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | -function wpinv_delete_discount( $data ) { |
|
| 28 | - if ( ! isset( $data['_wpnonce'] ) || ! wp_verify_nonce( $data['_wpnonce'], 'wpinv_discount_nonce' ) ) { |
|
| 29 | - wp_die( __( 'Trying to cheat or something?', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 27 | +function wpinv_delete_discount($data) { |
|
| 28 | + if (!isset($data['_wpnonce']) || !wp_verify_nonce($data['_wpnonce'], 'wpinv_discount_nonce')) { |
|
| 29 | + wp_die(__('Trying to cheat or something?', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - if( ! current_user_can( 'manage_options' ) ) { |
|
| 33 | - wp_die( __( 'You do not have permission to delete discount codes', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 32 | + if (!current_user_can('manage_options')) { |
|
| 33 | + wp_die(__('You do not have permission to delete discount codes', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | $discount_id = $data['discount']; |
| 37 | - wpinv_remove_discount( $discount_id ); |
|
| 37 | + wpinv_remove_discount($discount_id); |
|
| 38 | 38 | } |
| 39 | -add_action( 'wpinv_delete_discount', 'wpinv_delete_discount' ); |
|
| 39 | +add_action('wpinv_delete_discount', 'wpinv_delete_discount'); |
|
| 40 | 40 | |
| 41 | -function wpinv_activate_discount( $data ) { |
|
| 42 | - if ( ! isset( $data['_wpnonce'] ) || ! wp_verify_nonce( $data['_wpnonce'], 'wpinv_discount_nonce' ) ) { |
|
| 43 | - wp_die( __( 'Trying to cheat or something?', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 41 | +function wpinv_activate_discount($data) { |
|
| 42 | + if (!isset($data['_wpnonce']) || !wp_verify_nonce($data['_wpnonce'], 'wpinv_discount_nonce')) { |
|
| 43 | + wp_die(__('Trying to cheat or something?', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - if( ! current_user_can( 'manage_options' ) ) { |
|
| 47 | - wp_die( __( 'You do not have permission to edit discount codes', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 46 | + if (!current_user_can('manage_options')) { |
|
| 47 | + wp_die(__('You do not have permission to edit discount codes', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - $id = absint( $data['discount'] ); |
|
| 51 | - wpinv_update_discount_status( $id, 'publish' ); |
|
| 50 | + $id = absint($data['discount']); |
|
| 51 | + wpinv_update_discount_status($id, 'publish'); |
|
| 52 | 52 | } |
| 53 | -add_action( 'wpinv_activate_discount', 'wpinv_activate_discount' ); |
|
| 53 | +add_action('wpinv_activate_discount', 'wpinv_activate_discount'); |
|
| 54 | 54 | |
| 55 | -function wpinv_deactivate_discount( $data ) { |
|
| 56 | - if ( ! isset( $data['_wpnonce'] ) || ! wp_verify_nonce( $data['_wpnonce'], 'wpinv_discount_nonce' ) ) { |
|
| 57 | - wp_die( __( 'Trying to cheat or something?', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 55 | +function wpinv_deactivate_discount($data) { |
|
| 56 | + if (!isset($data['_wpnonce']) || !wp_verify_nonce($data['_wpnonce'], 'wpinv_discount_nonce')) { |
|
| 57 | + wp_die(__('Trying to cheat or something?', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - if( ! current_user_can( 'manage_options' ) ) { |
|
| 61 | - wp_die( __( 'You do not have permission to create discount codes', 'invoicing' ), array( 'response' => 403 ) ); |
|
| 60 | + if (!current_user_can('manage_options')) { |
|
| 61 | + wp_die(__('You do not have permission to create discount codes', 'invoicing'), array('response' => 403)); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - $id = absint( $data['discount'] ); |
|
| 65 | - wpinv_update_discount_status( $id, 'pending' ); |
|
| 64 | + $id = absint($data['discount']); |
|
| 65 | + wpinv_update_discount_status($id, 'pending'); |
|
| 66 | 66 | } |
| 67 | -add_action( 'wpinv_deactivate_discount', 'wpinv_deactivate_discount' ); |
|
| 67 | +add_action('wpinv_deactivate_discount', 'wpinv_deactivate_discount'); |
|
| 68 | 68 | |
| 69 | -function wpinv_get_discounts( $args = array() ) { |
|
| 69 | +function wpinv_get_discounts($args = array()) { |
|
| 70 | 70 | $defaults = array( |
| 71 | 71 | 'post_type' => 'wpi_discount', |
| 72 | 72 | 'posts_per_page' => 20, |
| 73 | 73 | 'paged' => null, |
| 74 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ) |
|
| 74 | + 'post_status' => array('publish', 'pending', 'draft', 'expired') |
|
| 75 | 75 | ); |
| 76 | 76 | |
| 77 | - $args = wp_parse_args( $args, $defaults ); |
|
| 77 | + $args = wp_parse_args($args, $defaults); |
|
| 78 | 78 | |
| 79 | - $discounts = get_posts( $args ); |
|
| 79 | + $discounts = get_posts($args); |
|
| 80 | 80 | |
| 81 | - if ( $discounts ) { |
|
| 81 | + if ($discounts) { |
|
| 82 | 82 | return $discounts; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - if( ! $discounts && ! empty( $args['s'] ) ) { |
|
| 85 | + if (!$discounts && !empty($args['s'])) { |
|
| 86 | 86 | $args['meta_key'] = 'gd_discount_code'; |
| 87 | 87 | $args['meta_value'] = $args['s']; |
| 88 | 88 | $args['meta_compare'] = 'LIKE'; |
| 89 | - unset( $args['s'] ); |
|
| 90 | - $discounts = get_posts( $args ); |
|
| 89 | + unset($args['s']); |
|
| 90 | + $discounts = get_posts($args); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - if( $discounts ) { |
|
| 93 | + if ($discounts) { |
|
| 94 | 94 | return $discounts; |
| 95 | 95 | } |
| 96 | 96 | |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | |
| 103 | 103 | $discounts = wpinv_get_discounts(); |
| 104 | 104 | |
| 105 | - if ( $discounts) { |
|
| 106 | - foreach ( $discounts as $discount ) { |
|
| 107 | - if ( wpinv_is_discount_active( $discount->ID ) ) { |
|
| 105 | + if ($discounts) { |
|
| 106 | + foreach ($discounts as $discount) { |
|
| 107 | + if (wpinv_is_discount_active($discount->ID)) { |
|
| 108 | 108 | $has_active = true; |
| 109 | 109 | break; |
| 110 | 110 | } |
@@ -113,38 +113,38 @@ discard block |
||
| 113 | 113 | return $has_active; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | -function wpinv_get_discount( $discount_id = 0 ) { |
|
| 117 | - if( empty( $discount_id ) ) { |
|
| 116 | +function wpinv_get_discount($discount_id = 0) { |
|
| 117 | + if (empty($discount_id)) { |
|
| 118 | 118 | return false; |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - if ( get_post_type( $discount_id ) != 'wpi_discount' ) { |
|
| 121 | + if (get_post_type($discount_id) != 'wpi_discount') { |
|
| 122 | 122 | return false; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - $discount = get_post( $discount_id ); |
|
| 125 | + $discount = get_post($discount_id); |
|
| 126 | 126 | |
| 127 | 127 | return $discount; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | -function wpinv_get_discount_by_code( $code = '' ) { |
|
| 131 | - if( empty( $code ) || ! is_string( $code ) ) { |
|
| 130 | +function wpinv_get_discount_by_code($code = '') { |
|
| 131 | + if (empty($code) || !is_string($code)) { |
|
| 132 | 132 | return false; |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - return wpinv_get_discount_by( 'code', $code ); |
|
| 135 | + return wpinv_get_discount_by('code', $code); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | -function wpinv_get_discount_by( $field = '', $value = '' ) { |
|
| 139 | - if( empty( $field ) || empty( $value ) ) { |
|
| 138 | +function wpinv_get_discount_by($field = '', $value = '') { |
|
| 139 | + if (empty($field) || empty($value)) { |
|
| 140 | 140 | return false; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - if( ! is_string( $field ) ) { |
|
| 143 | + if (!is_string($field)) { |
|
| 144 | 144 | return false; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - switch( strtolower( $field ) ) { |
|
| 147 | + switch (strtolower($field)) { |
|
| 148 | 148 | |
| 149 | 149 | case 'code': |
| 150 | 150 | $meta_query = array(); |
@@ -154,32 +154,32 @@ discard block |
||
| 154 | 154 | 'compare' => '=' |
| 155 | 155 | ); |
| 156 | 156 | |
| 157 | - $discount = wpinv_get_discounts( array( |
|
| 157 | + $discount = wpinv_get_discounts(array( |
|
| 158 | 158 | 'posts_per_page' => 1, |
| 159 | 159 | 'post_status' => 'any', |
| 160 | 160 | 'meta_query' => $meta_query, |
| 161 | - ) ); |
|
| 161 | + )); |
|
| 162 | 162 | |
| 163 | - if( $discount ) { |
|
| 163 | + if ($discount) { |
|
| 164 | 164 | $discount = $discount[0]; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | break; |
| 168 | 168 | |
| 169 | 169 | case 'id': |
| 170 | - $discount = wpinv_get_discount( $value ); |
|
| 170 | + $discount = wpinv_get_discount($value); |
|
| 171 | 171 | |
| 172 | 172 | break; |
| 173 | 173 | |
| 174 | 174 | case 'name': |
| 175 | - $discount = get_posts( array( |
|
| 175 | + $discount = get_posts(array( |
|
| 176 | 176 | 'post_type' => 'wpi_discount', |
| 177 | 177 | 'name' => $value, |
| 178 | 178 | 'posts_per_page' => 1, |
| 179 | 179 | 'post_status' => 'any' |
| 180 | - ) ); |
|
| 180 | + )); |
|
| 181 | 181 | |
| 182 | - if( $discount ) { |
|
| 182 | + if ($discount) { |
|
| 183 | 183 | $discount = $discount[0]; |
| 184 | 184 | } |
| 185 | 185 | |
@@ -189,99 +189,99 @@ discard block |
||
| 189 | 189 | return false; |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - if( ! empty( $discount ) ) { |
|
| 192 | + if (!empty($discount)) { |
|
| 193 | 193 | return $discount; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | return false; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | -function wpinv_store_discount( $post_id, $data, $post, $update = false ) { |
|
| 199 | +function wpinv_store_discount($post_id, $data, $post, $update = false) { |
|
| 200 | 200 | $meta = array( |
| 201 | - 'code' => isset( $data['code'] ) ? sanitize_text_field( $data['code'] ) : '', |
|
| 202 | - 'type' => isset( $data['type'] ) ? sanitize_text_field( $data['type'] ) : 'percent', |
|
| 203 | - 'amount' => isset( $data['amount'] ) ? wpinv_sanitize_amount( $data['amount'] ) : '', |
|
| 204 | - 'start' => isset( $data['start'] ) ? sanitize_text_field( $data['start'] ) : '', |
|
| 205 | - 'expiration' => isset( $data['expiration'] ) ? sanitize_text_field( $data['expiration'] ) : '', |
|
| 206 | - 'min_total' => isset( $data['min_total'] ) ? wpinv_sanitize_amount( $data['min_total'] ) : '', |
|
| 207 | - 'max_total' => isset( $data['max_total'] ) ? wpinv_sanitize_amount( $data['max_total'] ) : '', |
|
| 208 | - 'max_uses' => isset( $data['max_uses'] ) ? absint( $data['max_uses'] ) : '', |
|
| 209 | - 'items' => isset( $data['items'] ) ? $data['items'] : array(), |
|
| 210 | - 'excluded_items' => isset( $data['excluded_items'] ) ? $data['excluded_items'] : array(), |
|
| 211 | - 'is_recurring' => isset( $data['recurring'] ) ? (bool)$data['recurring'] : false, |
|
| 212 | - 'is_single_use' => isset( $data['single_use'] ) ? (bool)$data['single_use'] : false, |
|
| 213 | - 'uses' => isset( $data['uses'] ) ? (int)$data['uses'] : false, |
|
| 201 | + 'code' => isset($data['code']) ? sanitize_text_field($data['code']) : '', |
|
| 202 | + 'type' => isset($data['type']) ? sanitize_text_field($data['type']) : 'percent', |
|
| 203 | + 'amount' => isset($data['amount']) ? wpinv_sanitize_amount($data['amount']) : '', |
|
| 204 | + 'start' => isset($data['start']) ? sanitize_text_field($data['start']) : '', |
|
| 205 | + 'expiration' => isset($data['expiration']) ? sanitize_text_field($data['expiration']) : '', |
|
| 206 | + 'min_total' => isset($data['min_total']) ? wpinv_sanitize_amount($data['min_total']) : '', |
|
| 207 | + 'max_total' => isset($data['max_total']) ? wpinv_sanitize_amount($data['max_total']) : '', |
|
| 208 | + 'max_uses' => isset($data['max_uses']) ? absint($data['max_uses']) : '', |
|
| 209 | + 'items' => isset($data['items']) ? $data['items'] : array(), |
|
| 210 | + 'excluded_items' => isset($data['excluded_items']) ? $data['excluded_items'] : array(), |
|
| 211 | + 'is_recurring' => isset($data['recurring']) ? (bool)$data['recurring'] : false, |
|
| 212 | + 'is_single_use' => isset($data['single_use']) ? (bool)$data['single_use'] : false, |
|
| 213 | + 'uses' => isset($data['uses']) ? (int)$data['uses'] : false, |
|
| 214 | 214 | ); |
| 215 | 215 | |
| 216 | - $start_timestamp = strtotime( $meta['start'] ); |
|
| 216 | + $start_timestamp = strtotime($meta['start']); |
|
| 217 | 217 | |
| 218 | - if ( !empty( $meta['start'] ) ) { |
|
| 219 | - $meta['start'] = date( 'Y-m-d H:i:s', $start_timestamp ); |
|
| 218 | + if (!empty($meta['start'])) { |
|
| 219 | + $meta['start'] = date('Y-m-d H:i:s', $start_timestamp); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - if ( $meta['type'] == 'percent' && (float)$meta['amount'] > 100 ) { |
|
| 222 | + if ($meta['type'] == 'percent' && (float)$meta['amount'] > 100) { |
|
| 223 | 223 | $meta['amount'] = 100; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | - if ( !empty( $meta['expiration'] ) ) { |
|
| 227 | - $meta['expiration'] = date( 'Y-m-d H:i:s', strtotime( date( 'Y-m-d', strtotime( $meta['expiration'] ) ) . ' 23:59:59' ) ); |
|
| 228 | - $end_timestamp = strtotime( $meta['expiration'] ); |
|
| 226 | + if (!empty($meta['expiration'])) { |
|
| 227 | + $meta['expiration'] = date('Y-m-d H:i:s', strtotime(date('Y-m-d', strtotime($meta['expiration'])) . ' 23:59:59')); |
|
| 228 | + $end_timestamp = strtotime($meta['expiration']); |
|
| 229 | 229 | |
| 230 | - if ( !empty( $meta['start'] ) && $start_timestamp > $end_timestamp ) { |
|
| 230 | + if (!empty($meta['start']) && $start_timestamp > $end_timestamp) { |
|
| 231 | 231 | $meta['expiration'] = $meta['start']; // Set the expiration date to the start date if start is later than expiration date. |
| 232 | 232 | } |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - if ( $meta['uses'] === false ) { |
|
| 236 | - unset( $meta['uses'] ); |
|
| 235 | + if ($meta['uses'] === false) { |
|
| 236 | + unset($meta['uses']); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | - if ( ! empty( $meta['items'] ) ) { |
|
| 240 | - foreach ( $meta['items'] as $key => $item ) { |
|
| 241 | - if ( 0 === intval( $item ) ) { |
|
| 242 | - unset( $meta['items'][ $key ] ); |
|
| 239 | + if (!empty($meta['items'])) { |
|
| 240 | + foreach ($meta['items'] as $key => $item) { |
|
| 241 | + if (0 === intval($item)) { |
|
| 242 | + unset($meta['items'][$key]); |
|
| 243 | 243 | } |
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - if ( ! empty( $meta['excluded_items'] ) ) { |
|
| 248 | - foreach ( $meta['excluded_items'] as $key => $item ) { |
|
| 249 | - if ( 0 === intval( $item ) ) { |
|
| 250 | - unset( $meta['excluded_items'][ $key ] ); |
|
| 247 | + if (!empty($meta['excluded_items'])) { |
|
| 248 | + foreach ($meta['excluded_items'] as $key => $item) { |
|
| 249 | + if (0 === intval($item)) { |
|
| 250 | + unset($meta['excluded_items'][$key]); |
|
| 251 | 251 | } |
| 252 | 252 | } |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - $meta = apply_filters( 'wpinv_update_discount', $meta, $post_id, $post ); |
|
| 255 | + $meta = apply_filters('wpinv_update_discount', $meta, $post_id, $post); |
|
| 256 | 256 | |
| 257 | - do_action( 'wpinv_pre_update_discount', $meta, $post_id, $post ); |
|
| 257 | + do_action('wpinv_pre_update_discount', $meta, $post_id, $post); |
|
| 258 | 258 | |
| 259 | - foreach( $meta as $key => $value ) { |
|
| 260 | - update_post_meta( $post_id, '_wpi_discount_' . $key, $value ); |
|
| 259 | + foreach ($meta as $key => $value) { |
|
| 260 | + update_post_meta($post_id, '_wpi_discount_' . $key, $value); |
|
| 261 | 261 | } |
| 262 | 262 | |
| 263 | - do_action( 'wpinv_post_update_discount', $meta, $post_id, $post ); |
|
| 263 | + do_action('wpinv_post_update_discount', $meta, $post_id, $post); |
|
| 264 | 264 | |
| 265 | 265 | return $post_id; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | -function wpinv_remove_discount( $discount_id = 0 ) { |
|
| 269 | - do_action( 'wpinv_pre_delete_discount', $discount_id ); |
|
| 268 | +function wpinv_remove_discount($discount_id = 0) { |
|
| 269 | + do_action('wpinv_pre_delete_discount', $discount_id); |
|
| 270 | 270 | |
| 271 | - wp_delete_post( $discount_id, true ); |
|
| 271 | + wp_delete_post($discount_id, true); |
|
| 272 | 272 | |
| 273 | - do_action( 'wpinv_post_delete_discount', $discount_id ); |
|
| 273 | + do_action('wpinv_post_delete_discount', $discount_id); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | -function wpinv_update_discount_status( $code_id = 0, $new_status = 'publish' ) { |
|
| 277 | - $discount = wpinv_get_discount( $code_id ); |
|
| 276 | +function wpinv_update_discount_status($code_id = 0, $new_status = 'publish') { |
|
| 277 | + $discount = wpinv_get_discount($code_id); |
|
| 278 | 278 | |
| 279 | - if ( $discount ) { |
|
| 280 | - do_action( 'wpinv_pre_update_discount_status', $code_id, $new_status, $discount->post_status ); |
|
| 279 | + if ($discount) { |
|
| 280 | + do_action('wpinv_pre_update_discount_status', $code_id, $new_status, $discount->post_status); |
|
| 281 | 281 | |
| 282 | - wp_update_post( array( 'ID' => $code_id, 'post_status' => $new_status ) ); |
|
| 282 | + wp_update_post(array('ID' => $code_id, 'post_status' => $new_status)); |
|
| 283 | 283 | |
| 284 | - do_action( 'wpinv_post_update_discount_status', $code_id, $new_status, $discount->post_status ); |
|
| 284 | + do_action('wpinv_post_update_discount_status', $code_id, $new_status, $discount->post_status); |
|
| 285 | 285 | |
| 286 | 286 | return true; |
| 287 | 287 | } |
@@ -289,173 +289,173 @@ discard block |
||
| 289 | 289 | return false; |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | -function wpinv_discount_exists( $code_id ) { |
|
| 293 | - if ( wpinv_get_discount( $code_id ) ) { |
|
| 292 | +function wpinv_discount_exists($code_id) { |
|
| 293 | + if (wpinv_get_discount($code_id)) { |
|
| 294 | 294 | return true; |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | return false; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | -function wpinv_is_discount_active( $code_id = null ) { |
|
| 301 | - $discount = wpinv_get_discount( $code_id ); |
|
| 300 | +function wpinv_is_discount_active($code_id = null) { |
|
| 301 | + $discount = wpinv_get_discount($code_id); |
|
| 302 | 302 | $return = false; |
| 303 | 303 | |
| 304 | - if ( $discount ) { |
|
| 305 | - if ( wpinv_is_discount_expired( $code_id ) ) { |
|
| 306 | - if( defined( 'DOING_AJAX' ) ) { |
|
| 307 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount is expired.', 'invoicing' ) ); |
|
| 304 | + if ($discount) { |
|
| 305 | + if (wpinv_is_discount_expired($code_id)) { |
|
| 306 | + if (defined('DOING_AJAX')) { |
|
| 307 | + wpinv_set_error('wpinv-discount-error', __('This discount is expired.', 'invoicing')); |
|
| 308 | 308 | } |
| 309 | - } elseif ( $discount->post_status == 'publish' ) { |
|
| 309 | + } elseif ($discount->post_status == 'publish') { |
|
| 310 | 310 | $return = true; |
| 311 | 311 | } else { |
| 312 | - if( defined( 'DOING_AJAX' ) ) { |
|
| 313 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount is not active.', 'invoicing' ) ); |
|
| 312 | + if (defined('DOING_AJAX')) { |
|
| 313 | + wpinv_set_error('wpinv-discount-error', __('This discount is not active.', 'invoicing')); |
|
| 314 | 314 | } |
| 315 | 315 | } |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | - return apply_filters( 'wpinv_is_discount_active', $return, $code_id ); |
|
| 318 | + return apply_filters('wpinv_is_discount_active', $return, $code_id); |
|
| 319 | 319 | } |
| 320 | 320 | |
| 321 | -function wpinv_get_discount_code( $code_id = null ) { |
|
| 322 | - $code = get_post_meta( $code_id, '_wpi_discount_code', true ); |
|
| 321 | +function wpinv_get_discount_code($code_id = null) { |
|
| 322 | + $code = get_post_meta($code_id, '_wpi_discount_code', true); |
|
| 323 | 323 | |
| 324 | - return apply_filters( 'wpinv_get_discount_code', $code, $code_id ); |
|
| 324 | + return apply_filters('wpinv_get_discount_code', $code, $code_id); |
|
| 325 | 325 | } |
| 326 | 326 | |
| 327 | -function wpinv_get_discount_start_date( $code_id = null ) { |
|
| 328 | - $start_date = get_post_meta( $code_id, '_wpi_discount_start', true ); |
|
| 327 | +function wpinv_get_discount_start_date($code_id = null) { |
|
| 328 | + $start_date = get_post_meta($code_id, '_wpi_discount_start', true); |
|
| 329 | 329 | |
| 330 | - return apply_filters( 'wpinv_get_discount_start_date', $start_date, $code_id ); |
|
| 330 | + return apply_filters('wpinv_get_discount_start_date', $start_date, $code_id); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | -function wpinv_get_discount_expiration( $code_id = null ) { |
|
| 334 | - $expiration = get_post_meta( $code_id, '_wpi_discount_expiration', true ); |
|
| 333 | +function wpinv_get_discount_expiration($code_id = null) { |
|
| 334 | + $expiration = get_post_meta($code_id, '_wpi_discount_expiration', true); |
|
| 335 | 335 | |
| 336 | - return apply_filters( 'wpinv_get_discount_expiration', $expiration, $code_id ); |
|
| 336 | + return apply_filters('wpinv_get_discount_expiration', $expiration, $code_id); |
|
| 337 | 337 | } |
| 338 | 338 | |
| 339 | -function wpinv_get_discount_max_uses( $code_id = null ) { |
|
| 340 | - $max_uses = get_post_meta( $code_id, '_wpi_discount_max_uses', true ); |
|
| 339 | +function wpinv_get_discount_max_uses($code_id = null) { |
|
| 340 | + $max_uses = get_post_meta($code_id, '_wpi_discount_max_uses', true); |
|
| 341 | 341 | |
| 342 | - return (int) apply_filters( 'wpinv_get_discount_max_uses', $max_uses, $code_id ); |
|
| 342 | + return (int)apply_filters('wpinv_get_discount_max_uses', $max_uses, $code_id); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | -function wpinv_get_discount_uses( $code_id = null ) { |
|
| 346 | - $uses = get_post_meta( $code_id, '_wpi_discount_uses', true ); |
|
| 345 | +function wpinv_get_discount_uses($code_id = null) { |
|
| 346 | + $uses = get_post_meta($code_id, '_wpi_discount_uses', true); |
|
| 347 | 347 | |
| 348 | - return (int) apply_filters( 'wpinv_get_discount_uses', $uses, $code_id ); |
|
| 348 | + return (int)apply_filters('wpinv_get_discount_uses', $uses, $code_id); |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | -function wpinv_get_discount_min_total( $code_id = null ) { |
|
| 352 | - $min_total = get_post_meta( $code_id, '_wpi_discount_min_total', true ); |
|
| 351 | +function wpinv_get_discount_min_total($code_id = null) { |
|
| 352 | + $min_total = get_post_meta($code_id, '_wpi_discount_min_total', true); |
|
| 353 | 353 | |
| 354 | - return (float) apply_filters( 'wpinv_get_discount_min_total', $min_total, $code_id ); |
|
| 354 | + return (float)apply_filters('wpinv_get_discount_min_total', $min_total, $code_id); |
|
| 355 | 355 | } |
| 356 | 356 | |
| 357 | -function wpinv_get_discount_max_total( $code_id = null ) { |
|
| 358 | - $max_total = get_post_meta( $code_id, '_wpi_discount_max_total', true ); |
|
| 357 | +function wpinv_get_discount_max_total($code_id = null) { |
|
| 358 | + $max_total = get_post_meta($code_id, '_wpi_discount_max_total', true); |
|
| 359 | 359 | |
| 360 | - return (float) apply_filters( 'wpinv_get_discount_max_total', $max_total, $code_id ); |
|
| 360 | + return (float)apply_filters('wpinv_get_discount_max_total', $max_total, $code_id); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | -function wpinv_get_discount_amount( $code_id = null ) { |
|
| 364 | - $amount = get_post_meta( $code_id, '_wpi_discount_amount', true ); |
|
| 363 | +function wpinv_get_discount_amount($code_id = null) { |
|
| 364 | + $amount = get_post_meta($code_id, '_wpi_discount_amount', true); |
|
| 365 | 365 | |
| 366 | - return (float) apply_filters( 'wpinv_get_discount_amount', $amount, $code_id ); |
|
| 366 | + return (float)apply_filters('wpinv_get_discount_amount', $amount, $code_id); |
|
| 367 | 367 | } |
| 368 | 368 | |
| 369 | -function wpinv_get_discount_type( $code_id = null, $name = false ) { |
|
| 370 | - $type = strtolower( get_post_meta( $code_id, '_wpi_discount_type', true ) ); |
|
| 369 | +function wpinv_get_discount_type($code_id = null, $name = false) { |
|
| 370 | + $type = strtolower(get_post_meta($code_id, '_wpi_discount_type', true)); |
|
| 371 | 371 | |
| 372 | - if ( $name ) { |
|
| 373 | - $name = wpinv_get_discount_type_name( $type ); |
|
| 372 | + if ($name) { |
|
| 373 | + $name = wpinv_get_discount_type_name($type); |
|
| 374 | 374 | |
| 375 | - return apply_filters( 'wpinv_get_discount_type_name', $name, $code_id ); |
|
| 375 | + return apply_filters('wpinv_get_discount_type_name', $name, $code_id); |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - return apply_filters( 'wpinv_get_discount_type', $type, $code_id ); |
|
| 378 | + return apply_filters('wpinv_get_discount_type', $type, $code_id); |
|
| 379 | 379 | } |
| 380 | 380 | |
| 381 | -function wpinv_discount_status( $status ) { |
|
| 382 | - switch( $status ){ |
|
| 381 | +function wpinv_discount_status($status) { |
|
| 382 | + switch ($status) { |
|
| 383 | 383 | case 'expired' : |
| 384 | - $name = __( 'Expired', 'invoicing' ); |
|
| 384 | + $name = __('Expired', 'invoicing'); |
|
| 385 | 385 | break; |
| 386 | 386 | case 'publish' : |
| 387 | 387 | case 'active' : |
| 388 | - $name = __( 'Active', 'invoicing' ); |
|
| 388 | + $name = __('Active', 'invoicing'); |
|
| 389 | 389 | break; |
| 390 | 390 | default : |
| 391 | - $name = __( 'Inactive', 'invoicing' ); |
|
| 391 | + $name = __('Inactive', 'invoicing'); |
|
| 392 | 392 | break; |
| 393 | 393 | } |
| 394 | 394 | return $name; |
| 395 | 395 | } |
| 396 | 396 | |
| 397 | -function wpinv_get_discount_excluded_items( $code_id = null ) { |
|
| 398 | - $excluded_items = get_post_meta( $code_id, '_wpi_discount_excluded_items', true ); |
|
| 397 | +function wpinv_get_discount_excluded_items($code_id = null) { |
|
| 398 | + $excluded_items = get_post_meta($code_id, '_wpi_discount_excluded_items', true); |
|
| 399 | 399 | |
| 400 | - if ( empty( $excluded_items ) || ! is_array( $excluded_items ) ) { |
|
| 400 | + if (empty($excluded_items) || !is_array($excluded_items)) { |
|
| 401 | 401 | $excluded_items = array(); |
| 402 | 402 | } |
| 403 | 403 | |
| 404 | - return (array) apply_filters( 'wpinv_get_discount_excluded_items', $excluded_items, $code_id ); |
|
| 404 | + return (array)apply_filters('wpinv_get_discount_excluded_items', $excluded_items, $code_id); |
|
| 405 | 405 | } |
| 406 | 406 | |
| 407 | -function wpinv_get_discount_item_reqs( $code_id = null ) { |
|
| 408 | - $item_reqs = get_post_meta( $code_id, '_wpi_discount_items', true ); |
|
| 407 | +function wpinv_get_discount_item_reqs($code_id = null) { |
|
| 408 | + $item_reqs = get_post_meta($code_id, '_wpi_discount_items', true); |
|
| 409 | 409 | |
| 410 | - if ( empty( $item_reqs ) || ! is_array( $item_reqs ) ) { |
|
| 410 | + if (empty($item_reqs) || !is_array($item_reqs)) { |
|
| 411 | 411 | $item_reqs = array(); |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | - return (array) apply_filters( 'wpinv_get_discount_item_reqs', $item_reqs, $code_id ); |
|
| 414 | + return (array)apply_filters('wpinv_get_discount_item_reqs', $item_reqs, $code_id); |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | -function wpinv_get_discount_item_condition( $code_id = 0 ) { |
|
| 418 | - return get_post_meta( $code_id, '_wpi_discount_item_condition', true ); |
|
| 417 | +function wpinv_get_discount_item_condition($code_id = 0) { |
|
| 418 | + return get_post_meta($code_id, '_wpi_discount_item_condition', true); |
|
| 419 | 419 | } |
| 420 | 420 | |
| 421 | -function wpinv_is_discount_not_global( $code_id = 0 ) { |
|
| 422 | - return (bool) get_post_meta( $code_id, '_wpi_discount_is_not_global', true ); |
|
| 421 | +function wpinv_is_discount_not_global($code_id = 0) { |
|
| 422 | + return (bool)get_post_meta($code_id, '_wpi_discount_is_not_global', true); |
|
| 423 | 423 | } |
| 424 | 424 | |
| 425 | -function wpinv_is_discount_expired( $code_id = null ) { |
|
| 426 | - $discount = wpinv_get_discount( $code_id ); |
|
| 425 | +function wpinv_is_discount_expired($code_id = null) { |
|
| 426 | + $discount = wpinv_get_discount($code_id); |
|
| 427 | 427 | $return = false; |
| 428 | 428 | |
| 429 | - if ( $discount ) { |
|
| 430 | - $expiration = wpinv_get_discount_expiration( $code_id ); |
|
| 431 | - if ( $expiration ) { |
|
| 432 | - $expiration = strtotime( $expiration ); |
|
| 433 | - if ( $expiration < current_time( 'timestamp' ) ) { |
|
| 429 | + if ($discount) { |
|
| 430 | + $expiration = wpinv_get_discount_expiration($code_id); |
|
| 431 | + if ($expiration) { |
|
| 432 | + $expiration = strtotime($expiration); |
|
| 433 | + if ($expiration < current_time('timestamp')) { |
|
| 434 | 434 | // Discount is expired |
| 435 | - wpinv_update_discount_status( $code_id, 'pending' ); |
|
| 435 | + wpinv_update_discount_status($code_id, 'pending'); |
|
| 436 | 436 | $return = true; |
| 437 | 437 | } |
| 438 | 438 | } |
| 439 | 439 | } |
| 440 | 440 | |
| 441 | - return apply_filters( 'wpinv_is_discount_expired', $return, $code_id ); |
|
| 441 | + return apply_filters('wpinv_is_discount_expired', $return, $code_id); |
|
| 442 | 442 | } |
| 443 | 443 | |
| 444 | -function wpinv_is_discount_started( $code_id = null ) { |
|
| 445 | - $discount = wpinv_get_discount( $code_id ); |
|
| 444 | +function wpinv_is_discount_started($code_id = null) { |
|
| 445 | + $discount = wpinv_get_discount($code_id); |
|
| 446 | 446 | $return = false; |
| 447 | 447 | |
| 448 | - if ( $discount ) { |
|
| 449 | - $start_date = wpinv_get_discount_start_date( $code_id ); |
|
| 448 | + if ($discount) { |
|
| 449 | + $start_date = wpinv_get_discount_start_date($code_id); |
|
| 450 | 450 | |
| 451 | - if ( $start_date ) { |
|
| 452 | - $start_date = strtotime( $start_date ); |
|
| 451 | + if ($start_date) { |
|
| 452 | + $start_date = strtotime($start_date); |
|
| 453 | 453 | |
| 454 | - if ( $start_date < current_time( 'timestamp' ) ) { |
|
| 454 | + if ($start_date < current_time('timestamp')) { |
|
| 455 | 455 | // Discount has past the start date |
| 456 | 456 | $return = true; |
| 457 | 457 | } else { |
| 458 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount is not active yet.', 'invoicing' ) ); |
|
| 458 | + wpinv_set_error('wpinv-discount-error', __('This discount is not active yet.', 'invoicing')); |
|
| 459 | 459 | } |
| 460 | 460 | } else { |
| 461 | 461 | // No start date for this discount, so has to be true |
@@ -463,159 +463,159 @@ discard block |
||
| 463 | 463 | } |
| 464 | 464 | } |
| 465 | 465 | |
| 466 | - return apply_filters( 'wpinv_is_discount_started', $return, $code_id ); |
|
| 466 | + return apply_filters('wpinv_is_discount_started', $return, $code_id); |
|
| 467 | 467 | } |
| 468 | 468 | |
| 469 | -function wpinv_check_discount_dates( $code_id = null ) { |
|
| 470 | - $discount = wpinv_get_discount( $code_id ); |
|
| 469 | +function wpinv_check_discount_dates($code_id = null) { |
|
| 470 | + $discount = wpinv_get_discount($code_id); |
|
| 471 | 471 | $return = false; |
| 472 | 472 | |
| 473 | - if ( $discount ) { |
|
| 474 | - $start_date = wpinv_get_discount_start_date( $code_id ); |
|
| 473 | + if ($discount) { |
|
| 474 | + $start_date = wpinv_get_discount_start_date($code_id); |
|
| 475 | 475 | |
| 476 | - if ( $start_date ) { |
|
| 477 | - $start_date = strtotime( $start_date ); |
|
| 476 | + if ($start_date) { |
|
| 477 | + $start_date = strtotime($start_date); |
|
| 478 | 478 | |
| 479 | - if ( $start_date < current_time( 'timestamp' ) ) { |
|
| 479 | + if ($start_date < current_time('timestamp')) { |
|
| 480 | 480 | // Discount has past the start date |
| 481 | 481 | $return = true; |
| 482 | 482 | } else { |
| 483 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount is not active yet.', 'invoicing' ) ); |
|
| 483 | + wpinv_set_error('wpinv-discount-error', __('This discount is not active yet.', 'invoicing')); |
|
| 484 | 484 | } |
| 485 | 485 | } else { |
| 486 | 486 | // No start date for this discount, so has to be true |
| 487 | 487 | $return = true; |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | - if ( $return ) { |
|
| 491 | - $expiration = wpinv_get_discount_expiration( $code_id ); |
|
| 490 | + if ($return) { |
|
| 491 | + $expiration = wpinv_get_discount_expiration($code_id); |
|
| 492 | 492 | |
| 493 | - if ( $expiration ) { |
|
| 494 | - $expiration = strtotime( $expiration ); |
|
| 495 | - if ( $expiration < current_time( 'timestamp' ) ) { |
|
| 493 | + if ($expiration) { |
|
| 494 | + $expiration = strtotime($expiration); |
|
| 495 | + if ($expiration < current_time('timestamp')) { |
|
| 496 | 496 | // Discount is expired |
| 497 | - wpinv_update_discount_status( $code_id, 'pending' ); |
|
| 497 | + wpinv_update_discount_status($code_id, 'pending'); |
|
| 498 | 498 | $return = true; |
| 499 | 499 | } |
| 500 | 500 | } |
| 501 | 501 | } |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | - return apply_filters( 'wpinv_check_discount_dates', $return, $code_id ); |
|
| 504 | + return apply_filters('wpinv_check_discount_dates', $return, $code_id); |
|
| 505 | 505 | } |
| 506 | 506 | |
| 507 | -function wpinv_is_discount_maxed_out( $code_id = null ) { |
|
| 508 | - $discount = wpinv_get_discount( $code_id ); |
|
| 507 | +function wpinv_is_discount_maxed_out($code_id = null) { |
|
| 508 | + $discount = wpinv_get_discount($code_id); |
|
| 509 | 509 | $return = false; |
| 510 | 510 | |
| 511 | - if ( $discount ) { |
|
| 512 | - $uses = wpinv_get_discount_uses( $code_id ); |
|
| 511 | + if ($discount) { |
|
| 512 | + $uses = wpinv_get_discount_uses($code_id); |
|
| 513 | 513 | // Large number that will never be reached |
| 514 | - $max_uses = wpinv_get_discount_max_uses( $code_id ); |
|
| 514 | + $max_uses = wpinv_get_discount_max_uses($code_id); |
|
| 515 | 515 | // Should never be greater than, but just in case |
| 516 | - if ( $uses >= $max_uses && ! empty( $max_uses ) ) { |
|
| 516 | + if ($uses >= $max_uses && !empty($max_uses)) { |
|
| 517 | 517 | // Discount is maxed out |
| 518 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount has reached its maximum usage.', 'invoicing' ) ); |
|
| 518 | + wpinv_set_error('wpinv-discount-error', __('This discount has reached its maximum usage.', 'invoicing')); |
|
| 519 | 519 | $return = true; |
| 520 | 520 | } |
| 521 | 521 | } |
| 522 | 522 | |
| 523 | - return apply_filters( 'wpinv_is_discount_maxed_out', $return, $code_id ); |
|
| 523 | + return apply_filters('wpinv_is_discount_maxed_out', $return, $code_id); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | -function wpinv_discount_is_min_met( $code_id = null ) { |
|
| 527 | - $discount = wpinv_get_discount( $code_id ); |
|
| 526 | +function wpinv_discount_is_min_met($code_id = null) { |
|
| 527 | + $discount = wpinv_get_discount($code_id); |
|
| 528 | 528 | $return = false; |
| 529 | 529 | |
| 530 | - if ( $discount ) { |
|
| 531 | - $min = (float)wpinv_get_discount_min_total( $code_id ); |
|
| 532 | - $cart_amount = (float)wpinv_get_cart_discountable_subtotal( $code_id ); |
|
| 530 | + if ($discount) { |
|
| 531 | + $min = (float)wpinv_get_discount_min_total($code_id); |
|
| 532 | + $cart_amount = (float)wpinv_get_cart_discountable_subtotal($code_id); |
|
| 533 | 533 | |
| 534 | - if ( !$min > 0 || $cart_amount >= $min ) { |
|
| 534 | + if (!$min > 0 || $cart_amount >= $min) { |
|
| 535 | 535 | // Minimum has been met |
| 536 | 536 | $return = true; |
| 537 | 537 | } else { |
| 538 | - wpinv_set_error( 'wpinv-discount-error', sprintf( __( 'Minimum invoice of %s not met.', 'invoicing' ), wpinv_price( wpinv_format_amount( $min ) ) ) ); |
|
| 538 | + wpinv_set_error('wpinv-discount-error', sprintf(__('Minimum invoice of %s not met.', 'invoicing'), wpinv_price(wpinv_format_amount($min)))); |
|
| 539 | 539 | } |
| 540 | 540 | } |
| 541 | 541 | |
| 542 | - return apply_filters( 'wpinv_is_discount_min_met', $return, $code_id ); |
|
| 542 | + return apply_filters('wpinv_is_discount_min_met', $return, $code_id); |
|
| 543 | 543 | } |
| 544 | 544 | |
| 545 | -function wpinv_discount_is_max_met( $code_id = null ) { |
|
| 546 | - $discount = wpinv_get_discount( $code_id ); |
|
| 545 | +function wpinv_discount_is_max_met($code_id = null) { |
|
| 546 | + $discount = wpinv_get_discount($code_id); |
|
| 547 | 547 | $return = false; |
| 548 | 548 | |
| 549 | - if ( $discount ) { |
|
| 550 | - $max = (float)wpinv_get_discount_max_total( $code_id ); |
|
| 551 | - $cart_amount = (float)wpinv_get_cart_discountable_subtotal( $code_id ); |
|
| 549 | + if ($discount) { |
|
| 550 | + $max = (float)wpinv_get_discount_max_total($code_id); |
|
| 551 | + $cart_amount = (float)wpinv_get_cart_discountable_subtotal($code_id); |
|
| 552 | 552 | |
| 553 | - if ( !$max > 0 || $cart_amount <= $max ) { |
|
| 553 | + if (!$max > 0 || $cart_amount <= $max) { |
|
| 554 | 554 | // Minimum has been met |
| 555 | 555 | $return = true; |
| 556 | 556 | } else { |
| 557 | - wpinv_set_error( 'wpinv-discount-error', sprintf( __( 'Maximum invoice of %s not met.', 'invoicing' ), wpinv_price( wpinv_format_amount( $max ) ) ) ); |
|
| 557 | + wpinv_set_error('wpinv-discount-error', sprintf(__('Maximum invoice of %s not met.', 'invoicing'), wpinv_price(wpinv_format_amount($max)))); |
|
| 558 | 558 | } |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | - return apply_filters( 'wpinv_is_discount_max_met', $return, $code_id ); |
|
| 561 | + return apply_filters('wpinv_is_discount_max_met', $return, $code_id); |
|
| 562 | 562 | } |
| 563 | 563 | |
| 564 | -function wpinv_discount_is_single_use( $code_id = 0 ) { |
|
| 565 | - $single_use = get_post_meta( $code_id, '_wpi_discount_is_single_use', true ); |
|
| 566 | - return (bool) apply_filters( 'wpinv_is_discount_single_use', $single_use, $code_id ); |
|
| 564 | +function wpinv_discount_is_single_use($code_id = 0) { |
|
| 565 | + $single_use = get_post_meta($code_id, '_wpi_discount_is_single_use', true); |
|
| 566 | + return (bool)apply_filters('wpinv_is_discount_single_use', $single_use, $code_id); |
|
| 567 | 567 | } |
| 568 | 568 | |
| 569 | -function wpinv_discount_is_recurring( $code_id = 0, $code = false ) { |
|
| 570 | - if ( $code ) { |
|
| 571 | - $discount = wpinv_get_discount_by_code( $code_id ); |
|
| 569 | +function wpinv_discount_is_recurring($code_id = 0, $code = false) { |
|
| 570 | + if ($code) { |
|
| 571 | + $discount = wpinv_get_discount_by_code($code_id); |
|
| 572 | 572 | |
| 573 | - if ( !empty( $discount ) ) { |
|
| 573 | + if (!empty($discount)) { |
|
| 574 | 574 | $code_id = $discount->ID; |
| 575 | 575 | } |
| 576 | 576 | } |
| 577 | 577 | |
| 578 | - $recurring = get_post_meta( $code_id, '_wpi_discount_is_recurring', true ); |
|
| 578 | + $recurring = get_post_meta($code_id, '_wpi_discount_is_recurring', true); |
|
| 579 | 579 | |
| 580 | - return (bool) apply_filters( 'wpinv_is_discount_recurring', $recurring, $code_id, $code ); |
|
| 580 | + return (bool)apply_filters('wpinv_is_discount_recurring', $recurring, $code_id, $code); |
|
| 581 | 581 | } |
| 582 | 582 | |
| 583 | -function wpinv_discount_item_reqs_met( $code_id = null ) { |
|
| 584 | - $item_reqs = wpinv_get_discount_item_reqs( $code_id ); |
|
| 585 | - $condition = wpinv_get_discount_item_condition( $code_id ); |
|
| 586 | - $excluded_ps = wpinv_get_discount_excluded_items( $code_id ); |
|
| 583 | +function wpinv_discount_item_reqs_met($code_id = null) { |
|
| 584 | + $item_reqs = wpinv_get_discount_item_reqs($code_id); |
|
| 585 | + $condition = wpinv_get_discount_item_condition($code_id); |
|
| 586 | + $excluded_ps = wpinv_get_discount_excluded_items($code_id); |
|
| 587 | 587 | $cart_items = wpinv_get_cart_contents(); |
| 588 | - $cart_ids = $cart_items ? wp_list_pluck( $cart_items, 'id' ) : null; |
|
| 588 | + $cart_ids = $cart_items ? wp_list_pluck($cart_items, 'id') : null; |
|
| 589 | 589 | $ret = false; |
| 590 | 590 | |
| 591 | - if ( empty( $item_reqs ) && empty( $excluded_ps ) ) { |
|
| 591 | + if (empty($item_reqs) && empty($excluded_ps)) { |
|
| 592 | 592 | $ret = true; |
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | // Normalize our data for item requirements, exclusions and cart data |
| 596 | 596 | // First absint the items, then sort, and reset the array keys |
| 597 | - $item_reqs = array_map( 'absint', $item_reqs ); |
|
| 598 | - asort( $item_reqs ); |
|
| 599 | - $item_reqs = array_values( $item_reqs ); |
|
| 597 | + $item_reqs = array_map('absint', $item_reqs); |
|
| 598 | + asort($item_reqs); |
|
| 599 | + $item_reqs = array_values($item_reqs); |
|
| 600 | 600 | |
| 601 | - $excluded_ps = array_map( 'absint', $excluded_ps ); |
|
| 602 | - asort( $excluded_ps ); |
|
| 603 | - $excluded_ps = array_values( $excluded_ps ); |
|
| 601 | + $excluded_ps = array_map('absint', $excluded_ps); |
|
| 602 | + asort($excluded_ps); |
|
| 603 | + $excluded_ps = array_values($excluded_ps); |
|
| 604 | 604 | |
| 605 | - $cart_ids = array_map( 'absint', $cart_ids ); |
|
| 606 | - asort( $cart_ids ); |
|
| 607 | - $cart_ids = array_values( $cart_ids ); |
|
| 605 | + $cart_ids = array_map('absint', $cart_ids); |
|
| 606 | + asort($cart_ids); |
|
| 607 | + $cart_ids = array_values($cart_ids); |
|
| 608 | 608 | |
| 609 | 609 | // Ensure we have requirements before proceeding |
| 610 | - if ( !$ret && ! empty( $item_reqs ) ) { |
|
| 611 | - switch( $condition ) { |
|
| 610 | + if (!$ret && !empty($item_reqs)) { |
|
| 611 | + switch ($condition) { |
|
| 612 | 612 | case 'all' : |
| 613 | 613 | // Default back to true |
| 614 | 614 | $ret = true; |
| 615 | 615 | |
| 616 | - foreach ( $item_reqs as $item_id ) { |
|
| 617 | - if ( !wpinv_item_in_cart( $item_id ) ) { |
|
| 618 | - wpinv_set_error( 'wpinv-discount-error', __( 'The item requirements for this discount are not met.', 'invoicing' ) ); |
|
| 616 | + foreach ($item_reqs as $item_id) { |
|
| 617 | + if (!wpinv_item_in_cart($item_id)) { |
|
| 618 | + wpinv_set_error('wpinv-discount-error', __('The item requirements for this discount are not met.', 'invoicing')); |
|
| 619 | 619 | $ret = false; |
| 620 | 620 | break; |
| 621 | 621 | } |
@@ -624,15 +624,15 @@ discard block |
||
| 624 | 624 | break; |
| 625 | 625 | |
| 626 | 626 | default : // Any |
| 627 | - foreach ( $item_reqs as $item_id ) { |
|
| 628 | - if ( wpinv_item_in_cart( $item_id ) ) { |
|
| 627 | + foreach ($item_reqs as $item_id) { |
|
| 628 | + if (wpinv_item_in_cart($item_id)) { |
|
| 629 | 629 | $ret = true; |
| 630 | 630 | break; |
| 631 | 631 | } |
| 632 | 632 | } |
| 633 | 633 | |
| 634 | - if( ! $ret ) { |
|
| 635 | - wpinv_set_error( 'wpinv-discount-error', __( 'The item requirements for this discount are not met.', 'invoicing' ) ); |
|
| 634 | + if (!$ret) { |
|
| 635 | + wpinv_set_error('wpinv-discount-error', __('The item requirements for this discount are not met.', 'invoicing')); |
|
| 636 | 636 | } |
| 637 | 637 | |
| 638 | 638 | break; |
@@ -641,70 +641,70 @@ discard block |
||
| 641 | 641 | $ret = true; |
| 642 | 642 | } |
| 643 | 643 | |
| 644 | - if( ! empty( $excluded_ps ) ) { |
|
| 644 | + if (!empty($excluded_ps)) { |
|
| 645 | 645 | // Check that there are items other than excluded ones in the cart |
| 646 | - if( $cart_ids == $excluded_ps ) { |
|
| 647 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount is not valid for the cart contents.', 'invoicing' ) ); |
|
| 646 | + if ($cart_ids == $excluded_ps) { |
|
| 647 | + wpinv_set_error('wpinv-discount-error', __('This discount is not valid for the cart contents.', 'invoicing')); |
|
| 648 | 648 | $ret = false; |
| 649 | 649 | } |
| 650 | 650 | } |
| 651 | 651 | |
| 652 | - return (bool) apply_filters( 'wpinv_is_discount_item_req_met', $ret, $code_id, $condition ); |
|
| 652 | + return (bool)apply_filters('wpinv_is_discount_item_req_met', $ret, $code_id, $condition); |
|
| 653 | 653 | } |
| 654 | 654 | |
| 655 | -function wpinv_is_discount_used( $code = null, $user = '', $code_id = 0 ) { |
|
| 655 | +function wpinv_is_discount_used($code = null, $user = '', $code_id = 0) { |
|
| 656 | 656 | global $wpi_checkout_id; |
| 657 | 657 | |
| 658 | 658 | $return = false; |
| 659 | 659 | |
| 660 | - if ( empty( $code_id ) ) { |
|
| 661 | - $code_id = wpinv_get_discount_id_by_code( $code ); |
|
| 660 | + if (empty($code_id)) { |
|
| 661 | + $code_id = wpinv_get_discount_id_by_code($code); |
|
| 662 | 662 | |
| 663 | - if( empty( $code_id ) ) { |
|
| 663 | + if (empty($code_id)) { |
|
| 664 | 664 | return false; // No discount was found |
| 665 | 665 | } |
| 666 | 666 | } |
| 667 | 667 | |
| 668 | - if ( wpinv_discount_is_single_use( $code_id ) ) { |
|
| 668 | + if (wpinv_discount_is_single_use($code_id)) { |
|
| 669 | 669 | $payments = array(); |
| 670 | 670 | |
| 671 | 671 | $user_id = 0; |
| 672 | - if ( is_int( $user ) ) { |
|
| 673 | - $user_id = absint( $user ); |
|
| 674 | - } else if ( is_email( $user ) && $user_data = get_user_by( 'email', $user ) ) { |
|
| 672 | + if (is_int($user)) { |
|
| 673 | + $user_id = absint($user); |
|
| 674 | + } else if (is_email($user) && $user_data = get_user_by('email', $user)) { |
|
| 675 | 675 | $user_id = $user_data->ID; |
| 676 | - } else if ( $user_data = get_user_by( 'login', $user ) ) { |
|
| 676 | + } else if ($user_data = get_user_by('login', $user)) { |
|
| 677 | 677 | $user_id = $user_data->ID; |
| 678 | - } else if ( absint( $user ) > 0 ) { |
|
| 679 | - $user_id = absint( $user ); |
|
| 678 | + } else if (absint($user) > 0) { |
|
| 679 | + $user_id = absint($user); |
|
| 680 | 680 | } |
| 681 | 681 | |
| 682 | - if ( !empty( $user_id ) ) { |
|
| 683 | - $query = array( 'user' => $user_id, 'limit' => false ); |
|
| 684 | - $payments = wpinv_get_invoices( $query ); // Get all payments with matching user id |
|
| 682 | + if (!empty($user_id)) { |
|
| 683 | + $query = array('user' => $user_id, 'limit' => false); |
|
| 684 | + $payments = wpinv_get_invoices($query); // Get all payments with matching user id |
|
| 685 | 685 | } |
| 686 | 686 | |
| 687 | - if ( $payments ) { |
|
| 688 | - foreach ( $payments as $payment ) { |
|
| 687 | + if ($payments) { |
|
| 688 | + foreach ($payments as $payment) { |
|
| 689 | 689 | // Don't count discount used for current invoice chekcout. |
| 690 | - if ( !empty( $wpi_checkout_id ) && $wpi_checkout_id == $payment->ID ) { |
|
| 690 | + if (!empty($wpi_checkout_id) && $wpi_checkout_id == $payment->ID) { |
|
| 691 | 691 | continue; |
| 692 | 692 | } |
| 693 | 693 | |
| 694 | - if ( $payment->has_status( array( 'wpi-cancelled', 'wpi-failed' ) ) ) { |
|
| 694 | + if ($payment->has_status(array('wpi-cancelled', 'wpi-failed'))) { |
|
| 695 | 695 | continue; |
| 696 | 696 | } |
| 697 | 697 | |
| 698 | - $discounts = $payment->get_discounts( true ); |
|
| 699 | - if ( empty( $discounts ) ) { |
|
| 698 | + $discounts = $payment->get_discounts(true); |
|
| 699 | + if (empty($discounts)) { |
|
| 700 | 700 | continue; |
| 701 | 701 | } |
| 702 | 702 | |
| 703 | - $discounts = $discounts && !is_array( $discounts ) ? explode( ',', $discounts ) : $discounts; |
|
| 703 | + $discounts = $discounts && !is_array($discounts) ? explode(',', $discounts) : $discounts; |
|
| 704 | 704 | |
| 705 | - if ( !empty( $discounts ) && is_array( $discounts ) ) { |
|
| 706 | - if ( in_array( strtolower( $code ), array_map( 'strtolower', $discounts ) ) ) { |
|
| 707 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount has already been redeemed.', 'invoicing' ) ); |
|
| 705 | + if (!empty($discounts) && is_array($discounts)) { |
|
| 706 | + if (in_array(strtolower($code), array_map('strtolower', $discounts))) { |
|
| 707 | + wpinv_set_error('wpinv-discount-error', __('This discount has already been redeemed.', 'invoicing')); |
|
| 708 | 708 | $return = true; |
| 709 | 709 | break; |
| 710 | 710 | } |
@@ -713,61 +713,61 @@ discard block |
||
| 713 | 713 | } |
| 714 | 714 | } |
| 715 | 715 | |
| 716 | - return apply_filters( 'wpinv_is_discount_used', $return, $code, $user ); |
|
| 716 | + return apply_filters('wpinv_is_discount_used', $return, $code, $user); |
|
| 717 | 717 | } |
| 718 | 718 | |
| 719 | -function wpinv_is_discount_valid( $code = '', $user = '', $set_error = true ) { |
|
| 719 | +function wpinv_is_discount_valid($code = '', $user = '', $set_error = true) { |
|
| 720 | 720 | $return = false; |
| 721 | - $discount_id = wpinv_get_discount_id_by_code( $code ); |
|
| 722 | - $user = trim( $user ); |
|
| 721 | + $discount_id = wpinv_get_discount_id_by_code($code); |
|
| 722 | + $user = trim($user); |
|
| 723 | 723 | |
| 724 | - if ( wpinv_get_cart_contents() ) { |
|
| 725 | - if ( $discount_id ) { |
|
| 724 | + if (wpinv_get_cart_contents()) { |
|
| 725 | + if ($discount_id) { |
|
| 726 | 726 | if ( |
| 727 | - wpinv_is_discount_active( $discount_id ) && |
|
| 728 | - wpinv_check_discount_dates( $discount_id ) && |
|
| 729 | - !wpinv_is_discount_maxed_out( $discount_id ) && |
|
| 730 | - !wpinv_is_discount_used( $code, $user, $discount_id ) && |
|
| 731 | - wpinv_discount_is_min_met( $discount_id ) && |
|
| 732 | - wpinv_discount_is_max_met( $discount_id ) && |
|
| 733 | - wpinv_discount_item_reqs_met( $discount_id ) |
|
| 727 | + wpinv_is_discount_active($discount_id) && |
|
| 728 | + wpinv_check_discount_dates($discount_id) && |
|
| 729 | + !wpinv_is_discount_maxed_out($discount_id) && |
|
| 730 | + !wpinv_is_discount_used($code, $user, $discount_id) && |
|
| 731 | + wpinv_discount_is_min_met($discount_id) && |
|
| 732 | + wpinv_discount_is_max_met($discount_id) && |
|
| 733 | + wpinv_discount_item_reqs_met($discount_id) |
|
| 734 | 734 | ) { |
| 735 | 735 | $return = true; |
| 736 | 736 | } |
| 737 | - } elseif( $set_error ) { |
|
| 738 | - wpinv_set_error( 'wpinv-discount-error', __( 'This discount is invalid.', 'invoicing' ) ); |
|
| 737 | + } elseif ($set_error) { |
|
| 738 | + wpinv_set_error('wpinv-discount-error', __('This discount is invalid.', 'invoicing')); |
|
| 739 | 739 | } |
| 740 | 740 | } |
| 741 | 741 | |
| 742 | - return apply_filters( 'wpinv_is_discount_valid', $return, $discount_id, $code, $user ); |
|
| 742 | + return apply_filters('wpinv_is_discount_valid', $return, $discount_id, $code, $user); |
|
| 743 | 743 | } |
| 744 | 744 | |
| 745 | -function wpinv_get_discount_id_by_code( $code ) { |
|
| 746 | - $discount = wpinv_get_discount_by_code( $code ); |
|
| 747 | - if( $discount ) { |
|
| 745 | +function wpinv_get_discount_id_by_code($code) { |
|
| 746 | + $discount = wpinv_get_discount_by_code($code); |
|
| 747 | + if ($discount) { |
|
| 748 | 748 | return $discount->ID; |
| 749 | 749 | } |
| 750 | 750 | return false; |
| 751 | 751 | } |
| 752 | 752 | |
| 753 | -function wpinv_get_discounted_amount( $code, $base_price ) { |
|
| 753 | +function wpinv_get_discounted_amount($code, $base_price) { |
|
| 754 | 754 | $amount = $base_price; |
| 755 | - $discount_id = wpinv_get_discount_id_by_code( $code ); |
|
| 755 | + $discount_id = wpinv_get_discount_id_by_code($code); |
|
| 756 | 756 | |
| 757 | - if( $discount_id ) { |
|
| 758 | - $type = wpinv_get_discount_type( $discount_id ); |
|
| 759 | - $rate = wpinv_get_discount_amount( $discount_id ); |
|
| 757 | + if ($discount_id) { |
|
| 758 | + $type = wpinv_get_discount_type($discount_id); |
|
| 759 | + $rate = wpinv_get_discount_amount($discount_id); |
|
| 760 | 760 | |
| 761 | - if ( $type == 'flat' ) { |
|
| 761 | + if ($type == 'flat') { |
|
| 762 | 762 | // Set amount |
| 763 | 763 | $amount = $base_price - $rate; |
| 764 | - if ( $amount < 0 ) { |
|
| 764 | + if ($amount < 0) { |
|
| 765 | 765 | $amount = 0; |
| 766 | 766 | } |
| 767 | 767 | |
| 768 | 768 | } else { |
| 769 | 769 | // Percentage discount |
| 770 | - $amount = $base_price - ( $base_price * ( $rate / 100 ) ); |
|
| 770 | + $amount = $base_price - ($base_price * ($rate / 100)); |
|
| 771 | 771 | } |
| 772 | 772 | |
| 773 | 773 | } else { |
@@ -776,108 +776,108 @@ discard block |
||
| 776 | 776 | |
| 777 | 777 | } |
| 778 | 778 | |
| 779 | - return apply_filters( 'wpinv_discounted_amount', $amount ); |
|
| 779 | + return apply_filters('wpinv_discounted_amount', $amount); |
|
| 780 | 780 | } |
| 781 | 781 | |
| 782 | -function wpinv_increase_discount_usage( $code ) { |
|
| 782 | +function wpinv_increase_discount_usage($code) { |
|
| 783 | 783 | |
| 784 | - $id = wpinv_get_discount_id_by_code( $code ); |
|
| 785 | - $uses = wpinv_get_discount_uses( $id ); |
|
| 784 | + $id = wpinv_get_discount_id_by_code($code); |
|
| 785 | + $uses = wpinv_get_discount_uses($id); |
|
| 786 | 786 | |
| 787 | - if ( $uses ) { |
|
| 787 | + if ($uses) { |
|
| 788 | 788 | $uses++; |
| 789 | 789 | } else { |
| 790 | 790 | $uses = 1; |
| 791 | 791 | } |
| 792 | 792 | |
| 793 | - update_post_meta( $id, '_wpi_discount_uses', $uses ); |
|
| 793 | + update_post_meta($id, '_wpi_discount_uses', $uses); |
|
| 794 | 794 | |
| 795 | - do_action( 'wpinv_discount_increase_use_count', $uses, $id, $code ); |
|
| 795 | + do_action('wpinv_discount_increase_use_count', $uses, $id, $code); |
|
| 796 | 796 | |
| 797 | 797 | return $uses; |
| 798 | 798 | |
| 799 | 799 | } |
| 800 | 800 | |
| 801 | -function wpinv_decrease_discount_usage( $code ) { |
|
| 801 | +function wpinv_decrease_discount_usage($code) { |
|
| 802 | 802 | |
| 803 | - $id = wpinv_get_discount_id_by_code( $code ); |
|
| 804 | - $uses = wpinv_get_discount_uses( $id ); |
|
| 803 | + $id = wpinv_get_discount_id_by_code($code); |
|
| 804 | + $uses = wpinv_get_discount_uses($id); |
|
| 805 | 805 | |
| 806 | - if ( $uses ) { |
|
| 806 | + if ($uses) { |
|
| 807 | 807 | $uses--; |
| 808 | 808 | } |
| 809 | 809 | |
| 810 | - if ( $uses < 0 ) { |
|
| 810 | + if ($uses < 0) { |
|
| 811 | 811 | $uses = 0; |
| 812 | 812 | } |
| 813 | 813 | |
| 814 | - update_post_meta( $id, '_wpi_discount_uses', $uses ); |
|
| 814 | + update_post_meta($id, '_wpi_discount_uses', $uses); |
|
| 815 | 815 | |
| 816 | - do_action( 'wpinv_discount_decrease_use_count', $uses, $id, $code ); |
|
| 816 | + do_action('wpinv_discount_decrease_use_count', $uses, $id, $code); |
|
| 817 | 817 | |
| 818 | 818 | return $uses; |
| 819 | 819 | |
| 820 | 820 | } |
| 821 | 821 | |
| 822 | -function wpinv_format_discount_rate( $type, $amount ) { |
|
| 823 | - if ( $type == 'flat' ) { |
|
| 824 | - return wpinv_price( wpinv_format_amount( $amount ) ); |
|
| 822 | +function wpinv_format_discount_rate($type, $amount) { |
|
| 823 | + if ($type == 'flat') { |
|
| 824 | + return wpinv_price(wpinv_format_amount($amount)); |
|
| 825 | 825 | } else { |
| 826 | 826 | return $amount . '%'; |
| 827 | 827 | } |
| 828 | 828 | } |
| 829 | 829 | |
| 830 | -function wpinv_set_cart_discount( $code = '' ) { |
|
| 831 | - if ( wpinv_multiple_discounts_allowed() ) { |
|
| 830 | +function wpinv_set_cart_discount($code = '') { |
|
| 831 | + if (wpinv_multiple_discounts_allowed()) { |
|
| 832 | 832 | // Get all active cart discounts |
| 833 | 833 | $discounts = wpinv_get_cart_discounts(); |
| 834 | 834 | } else { |
| 835 | 835 | $discounts = false; // Only one discount allowed per purchase, so override any existing |
| 836 | 836 | } |
| 837 | 837 | |
| 838 | - if ( $discounts ) { |
|
| 839 | - $key = array_search( strtolower( $code ), array_map( 'strtolower', $discounts ) ); |
|
| 840 | - if( false !== $key ) { |
|
| 841 | - unset( $discounts[ $key ] ); // Can't set the same discount more than once |
|
| 838 | + if ($discounts) { |
|
| 839 | + $key = array_search(strtolower($code), array_map('strtolower', $discounts)); |
|
| 840 | + if (false !== $key) { |
|
| 841 | + unset($discounts[$key]); // Can't set the same discount more than once |
|
| 842 | 842 | } |
| 843 | 843 | $discounts[] = $code; |
| 844 | 844 | } else { |
| 845 | 845 | $discounts = array(); |
| 846 | 846 | $discounts[] = $code; |
| 847 | 847 | } |
| 848 | - $discounts = array_values( $discounts ); |
|
| 848 | + $discounts = array_values($discounts); |
|
| 849 | 849 | |
| 850 | 850 | $data = wpinv_get_checkout_session(); |
| 851 | - if ( empty( $data ) ) { |
|
| 851 | + if (empty($data)) { |
|
| 852 | 852 | $data = array(); |
| 853 | 853 | } else { |
| 854 | - if ( !empty( $data['invoice_id'] ) && $payment_meta = wpinv_get_invoice_meta( $data['invoice_id'] ) ) { |
|
| 855 | - $payment_meta['user_info']['discount'] = implode( ',', $discounts ); |
|
| 856 | - update_post_meta( $data['invoice_id'], '_wpinv_payment_meta', $payment_meta ); |
|
| 854 | + if (!empty($data['invoice_id']) && $payment_meta = wpinv_get_invoice_meta($data['invoice_id'])) { |
|
| 855 | + $payment_meta['user_info']['discount'] = implode(',', $discounts); |
|
| 856 | + update_post_meta($data['invoice_id'], '_wpinv_payment_meta', $payment_meta); |
|
| 857 | 857 | } |
| 858 | 858 | } |
| 859 | 859 | $data['cart_discounts'] = $discounts; |
| 860 | 860 | |
| 861 | - wpinv_set_checkout_session( $data ); |
|
| 861 | + wpinv_set_checkout_session($data); |
|
| 862 | 862 | |
| 863 | 863 | return $discounts; |
| 864 | 864 | } |
| 865 | 865 | |
| 866 | -function wpinv_unset_cart_discount( $code = '' ) { |
|
| 866 | +function wpinv_unset_cart_discount($code = '') { |
|
| 867 | 867 | $discounts = wpinv_get_cart_discounts(); |
| 868 | 868 | |
| 869 | - if ( $code && !empty( $discounts ) && in_array( $code, $discounts ) ) { |
|
| 870 | - $key = array_search( $code, $discounts ); |
|
| 871 | - unset( $discounts[ $key ] ); |
|
| 869 | + if ($code && !empty($discounts) && in_array($code, $discounts)) { |
|
| 870 | + $key = array_search($code, $discounts); |
|
| 871 | + unset($discounts[$key]); |
|
| 872 | 872 | |
| 873 | 873 | $data = wpinv_get_checkout_session(); |
| 874 | 874 | $data['cart_discounts'] = $discounts; |
| 875 | - if ( !empty( $data['invoice_id'] ) && $payment_meta = wpinv_get_invoice_meta( $data['invoice_id'] ) ) { |
|
| 876 | - $payment_meta['user_info']['discount'] = !empty( $discounts ) ? implode( ',', $discounts ) : ''; |
|
| 877 | - update_post_meta( $data['invoice_id'], '_wpinv_payment_meta', $payment_meta ); |
|
| 875 | + if (!empty($data['invoice_id']) && $payment_meta = wpinv_get_invoice_meta($data['invoice_id'])) { |
|
| 876 | + $payment_meta['user_info']['discount'] = !empty($discounts) ? implode(',', $discounts) : ''; |
|
| 877 | + update_post_meta($data['invoice_id'], '_wpinv_payment_meta', $payment_meta); |
|
| 878 | 878 | } |
| 879 | 879 | |
| 880 | - wpinv_set_checkout_session( $data ); |
|
| 880 | + wpinv_set_checkout_session($data); |
|
| 881 | 881 | } |
| 882 | 882 | |
| 883 | 883 | return $discounts; |
@@ -886,27 +886,27 @@ discard block |
||
| 886 | 886 | function wpinv_unset_all_cart_discounts() { |
| 887 | 887 | $data = wpinv_get_checkout_session(); |
| 888 | 888 | |
| 889 | - if ( !empty( $data ) && isset( $data['cart_discounts'] ) ) { |
|
| 890 | - unset( $data['cart_discounts'] ); |
|
| 889 | + if (!empty($data) && isset($data['cart_discounts'])) { |
|
| 890 | + unset($data['cart_discounts']); |
|
| 891 | 891 | |
| 892 | - wpinv_set_checkout_session( $data ); |
|
| 892 | + wpinv_set_checkout_session($data); |
|
| 893 | 893 | return true; |
| 894 | 894 | } |
| 895 | 895 | |
| 896 | 896 | return false; |
| 897 | 897 | } |
| 898 | 898 | |
| 899 | -function wpinv_get_cart_discounts( $items = array() ) { |
|
| 899 | +function wpinv_get_cart_discounts($items = array()) { |
|
| 900 | 900 | $session = wpinv_get_checkout_session(); |
| 901 | 901 | |
| 902 | - $discounts = !empty( $session['cart_discounts'] ) ? $session['cart_discounts'] : false; |
|
| 902 | + $discounts = !empty($session['cart_discounts']) ? $session['cart_discounts'] : false; |
|
| 903 | 903 | return $discounts; |
| 904 | 904 | } |
| 905 | 905 | |
| 906 | -function wpinv_cart_has_discounts( $items = array() ) { |
|
| 906 | +function wpinv_cart_has_discounts($items = array()) { |
|
| 907 | 907 | $ret = false; |
| 908 | 908 | |
| 909 | - if ( wpinv_get_cart_discounts( $items ) ) { |
|
| 909 | + if (wpinv_get_cart_discounts($items)) { |
|
| 910 | 910 | $ret = true; |
| 911 | 911 | } |
| 912 | 912 | |
@@ -917,131 +917,131 @@ discard block |
||
| 917 | 917 | } |
| 918 | 918 | */ |
| 919 | 919 | |
| 920 | - return apply_filters( 'wpinv_cart_has_discounts', $ret ); |
|
| 920 | + return apply_filters('wpinv_cart_has_discounts', $ret); |
|
| 921 | 921 | } |
| 922 | 922 | |
| 923 | -function wpinv_get_cart_discounted_amount( $items = array(), $discounts = false ) { |
|
| 923 | +function wpinv_get_cart_discounted_amount($items = array(), $discounts = false) { |
|
| 924 | 924 | $amount = 0.00; |
| 925 | - $items = !empty( $items ) ? $items : wpinv_get_cart_content_details(); |
|
| 925 | + $items = !empty($items) ? $items : wpinv_get_cart_content_details(); |
|
| 926 | 926 | |
| 927 | - if ( $items ) { |
|
| 928 | - $discounts = wp_list_pluck( $items, 'discount' ); |
|
| 927 | + if ($items) { |
|
| 928 | + $discounts = wp_list_pluck($items, 'discount'); |
|
| 929 | 929 | |
| 930 | - if ( is_array( $discounts ) ) { |
|
| 931 | - $discounts = array_map( 'floatval', $discounts ); |
|
| 932 | - $amount = array_sum( $discounts ); |
|
| 930 | + if (is_array($discounts)) { |
|
| 931 | + $discounts = array_map('floatval', $discounts); |
|
| 932 | + $amount = array_sum($discounts); |
|
| 933 | 933 | } |
| 934 | 934 | } |
| 935 | 935 | |
| 936 | - return apply_filters( 'wpinv_get_cart_discounted_amount', $amount ); |
|
| 936 | + return apply_filters('wpinv_get_cart_discounted_amount', $amount); |
|
| 937 | 937 | } |
| 938 | 938 | |
| 939 | -function wpinv_get_cart_items_discount_amount( $items = array(), $discount = false ) { |
|
| 940 | - $items = !empty( $items ) ? $items : wpinv_get_cart_content_details(); |
|
| 939 | +function wpinv_get_cart_items_discount_amount($items = array(), $discount = false) { |
|
| 940 | + $items = !empty($items) ? $items : wpinv_get_cart_content_details(); |
|
| 941 | 941 | |
| 942 | - if ( empty( $discount ) || empty( $items ) ) { |
|
| 942 | + if (empty($discount) || empty($items)) { |
|
| 943 | 943 | return 0; |
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | $amount = 0; |
| 947 | 947 | |
| 948 | - foreach ( $items as $item ) { |
|
| 949 | - $amount += wpinv_get_cart_item_discount_amount( $item, $discount ); |
|
| 948 | + foreach ($items as $item) { |
|
| 949 | + $amount += wpinv_get_cart_item_discount_amount($item, $discount); |
|
| 950 | 950 | } |
| 951 | 951 | |
| 952 | - $amount = wpinv_round_amount( $amount ); |
|
| 952 | + $amount = wpinv_round_amount($amount); |
|
| 953 | 953 | |
| 954 | 954 | return $amount; |
| 955 | 955 | } |
| 956 | 956 | |
| 957 | -function wpinv_get_cart_item_discount_amount( $item = array(), $discount = false ) { |
|
| 957 | +function wpinv_get_cart_item_discount_amount($item = array(), $discount = false) { |
|
| 958 | 958 | global $wpinv_is_last_cart_item, $wpinv_flat_discount_total; |
| 959 | 959 | |
| 960 | 960 | $amount = 0; |
| 961 | 961 | |
| 962 | - if ( empty( $item ) || empty( $item['id'] ) ) { |
|
| 962 | + if (empty($item) || empty($item['id'])) { |
|
| 963 | 963 | return $amount; |
| 964 | 964 | } |
| 965 | 965 | |
| 966 | - if ( empty( $item['quantity'] ) ) { |
|
| 966 | + if (empty($item['quantity'])) { |
|
| 967 | 967 | return $amount; |
| 968 | 968 | } |
| 969 | 969 | |
| 970 | - if ( empty( $item['options'] ) ) { |
|
| 970 | + if (empty($item['options'])) { |
|
| 971 | 971 | $item['options'] = array(); |
| 972 | 972 | } |
| 973 | 973 | |
| 974 | - $price = wpinv_get_cart_item_price( $item['id'], $item, $item['options'] ); |
|
| 974 | + $price = wpinv_get_cart_item_price($item['id'], $item, $item['options']); |
|
| 975 | 975 | $discounted_price = $price; |
| 976 | 976 | |
| 977 | 977 | $discounts = false === $discount ? wpinv_get_cart_discounts() : $discount; |
| 978 | - if ( empty( $discounts ) ) { |
|
| 978 | + if (empty($discounts)) { |
|
| 979 | 979 | return $amount; |
| 980 | 980 | } |
| 981 | 981 | |
| 982 | - if ( $discounts ) { |
|
| 983 | - if ( is_array( $discounts ) ) { |
|
| 984 | - $discounts = array_values( $discounts ); |
|
| 982 | + if ($discounts) { |
|
| 983 | + if (is_array($discounts)) { |
|
| 984 | + $discounts = array_values($discounts); |
|
| 985 | 985 | } else { |
| 986 | - $discounts = explode( ',', $discounts ); |
|
| 986 | + $discounts = explode(',', $discounts); |
|
| 987 | 987 | } |
| 988 | 988 | } |
| 989 | 989 | |
| 990 | - if( $discounts ) { |
|
| 991 | - foreach ( $discounts as $discount ) { |
|
| 992 | - $code_id = wpinv_get_discount_id_by_code( $discount ); |
|
| 990 | + if ($discounts) { |
|
| 991 | + foreach ($discounts as $discount) { |
|
| 992 | + $code_id = wpinv_get_discount_id_by_code($discount); |
|
| 993 | 993 | |
| 994 | 994 | // Check discount exists |
| 995 | - if( ! $code_id ) { |
|
| 995 | + if (!$code_id) { |
|
| 996 | 996 | continue; |
| 997 | 997 | } |
| 998 | 998 | |
| 999 | - $reqs = wpinv_get_discount_item_reqs( $code_id ); |
|
| 1000 | - $excluded_items = wpinv_get_discount_excluded_items( $code_id ); |
|
| 999 | + $reqs = wpinv_get_discount_item_reqs($code_id); |
|
| 1000 | + $excluded_items = wpinv_get_discount_excluded_items($code_id); |
|
| 1001 | 1001 | |
| 1002 | 1002 | // Make sure requirements are set and that this discount shouldn't apply to the whole cart |
| 1003 | - if ( !empty( $reqs ) && wpinv_is_discount_not_global( $code_id ) ) { |
|
| 1004 | - foreach ( $reqs as $item_id ) { |
|
| 1005 | - if ( $item_id == $item['id'] && ! in_array( $item['id'], $excluded_items ) ) { |
|
| 1006 | - $discounted_price -= $price - wpinv_get_discounted_amount( $discount, $price ); |
|
| 1003 | + if (!empty($reqs) && wpinv_is_discount_not_global($code_id)) { |
|
| 1004 | + foreach ($reqs as $item_id) { |
|
| 1005 | + if ($item_id == $item['id'] && !in_array($item['id'], $excluded_items)) { |
|
| 1006 | + $discounted_price -= $price - wpinv_get_discounted_amount($discount, $price); |
|
| 1007 | 1007 | } |
| 1008 | 1008 | } |
| 1009 | 1009 | } else { |
| 1010 | 1010 | // This is a global cart discount |
| 1011 | - if ( !in_array( $item['id'], $excluded_items ) ) { |
|
| 1012 | - if ( 'flat' === wpinv_get_discount_type( $code_id ) ) { |
|
| 1011 | + if (!in_array($item['id'], $excluded_items)) { |
|
| 1012 | + if ('flat' === wpinv_get_discount_type($code_id)) { |
|
| 1013 | 1013 | $items_subtotal = 0.00; |
| 1014 | 1014 | $cart_items = wpinv_get_cart_contents(); |
| 1015 | 1015 | |
| 1016 | - foreach ( $cart_items as $cart_item ) { |
|
| 1017 | - if ( ! in_array( $cart_item['id'], $excluded_items ) ) { |
|
| 1018 | - $options = !empty( $cart_item['options'] ) ? $cart_item['options'] : array(); |
|
| 1019 | - $item_price = wpinv_get_cart_item_price( $cart_item['id'], $cart_item, $options ); |
|
| 1016 | + foreach ($cart_items as $cart_item) { |
|
| 1017 | + if (!in_array($cart_item['id'], $excluded_items)) { |
|
| 1018 | + $options = !empty($cart_item['options']) ? $cart_item['options'] : array(); |
|
| 1019 | + $item_price = wpinv_get_cart_item_price($cart_item['id'], $cart_item, $options); |
|
| 1020 | 1020 | $items_subtotal += $item_price * $cart_item['quantity']; |
| 1021 | 1021 | } |
| 1022 | 1022 | } |
| 1023 | 1023 | |
| 1024 | - $subtotal_percent = ( ( $price * $item['quantity'] ) / $items_subtotal ); |
|
| 1025 | - $code_amount = wpinv_get_discount_amount( $code_id ); |
|
| 1024 | + $subtotal_percent = (($price * $item['quantity']) / $items_subtotal); |
|
| 1025 | + $code_amount = wpinv_get_discount_amount($code_id); |
|
| 1026 | 1026 | $discounted_amount = $code_amount * $subtotal_percent; |
| 1027 | 1027 | $discounted_price -= $discounted_amount; |
| 1028 | 1028 | |
| 1029 | - $wpinv_flat_discount_total += round( $discounted_amount, wpinv_currency_decimal_filter() ); |
|
| 1029 | + $wpinv_flat_discount_total += round($discounted_amount, wpinv_currency_decimal_filter()); |
|
| 1030 | 1030 | |
| 1031 | - if ( $wpinv_is_last_cart_item && $wpinv_flat_discount_total < $code_amount ) { |
|
| 1031 | + if ($wpinv_is_last_cart_item && $wpinv_flat_discount_total < $code_amount) { |
|
| 1032 | 1032 | $adjustment = $code_amount - $wpinv_flat_discount_total; |
| 1033 | 1033 | $discounted_price -= $adjustment; |
| 1034 | 1034 | } |
| 1035 | 1035 | } else { |
| 1036 | - $discounted_price -= $price - wpinv_get_discounted_amount( $discount, $price ); |
|
| 1036 | + $discounted_price -= $price - wpinv_get_discounted_amount($discount, $price); |
|
| 1037 | 1037 | } |
| 1038 | 1038 | } |
| 1039 | 1039 | } |
| 1040 | 1040 | } |
| 1041 | 1041 | |
| 1042 | - $amount = ( $price - apply_filters( 'wpinv_get_cart_item_discounted_amount', $discounted_price, $discounts, $item, $price ) ); |
|
| 1042 | + $amount = ($price - apply_filters('wpinv_get_cart_item_discounted_amount', $discounted_price, $discounts, $item, $price)); |
|
| 1043 | 1043 | |
| 1044 | - if ( 'flat' !== wpinv_get_discount_type( $code_id ) ) { |
|
| 1044 | + if ('flat' !== wpinv_get_discount_type($code_id)) { |
|
| 1045 | 1045 | $amount = $amount * $item['quantity']; |
| 1046 | 1046 | } |
| 1047 | 1047 | } |
@@ -1049,59 +1049,59 @@ discard block |
||
| 1049 | 1049 | return $amount; |
| 1050 | 1050 | } |
| 1051 | 1051 | |
| 1052 | -function wpinv_cart_discounts_html( $items = array() ) { |
|
| 1053 | - echo wpinv_get_cart_discounts_html( $items ); |
|
| 1052 | +function wpinv_cart_discounts_html($items = array()) { |
|
| 1053 | + echo wpinv_get_cart_discounts_html($items); |
|
| 1054 | 1054 | } |
| 1055 | 1055 | |
| 1056 | -function wpinv_get_cart_discounts_html( $items = array(), $discounts = false ) { |
|
| 1056 | +function wpinv_get_cart_discounts_html($items = array(), $discounts = false) { |
|
| 1057 | 1057 | global $wpi_cart_columns; |
| 1058 | 1058 | |
| 1059 | - $items = !empty( $items ) ? $items : wpinv_get_cart_content_details(); |
|
| 1059 | + $items = !empty($items) ? $items : wpinv_get_cart_content_details(); |
|
| 1060 | 1060 | |
| 1061 | - if ( !$discounts ) { |
|
| 1062 | - $discounts = wpinv_get_cart_discounts( $items ); |
|
| 1061 | + if (!$discounts) { |
|
| 1062 | + $discounts = wpinv_get_cart_discounts($items); |
|
| 1063 | 1063 | } |
| 1064 | 1064 | |
| 1065 | - if ( !$discounts ) { |
|
| 1065 | + if (!$discounts) { |
|
| 1066 | 1066 | return; |
| 1067 | 1067 | } |
| 1068 | 1068 | |
| 1069 | - $discounts = is_array( $discounts ) ? $discounts : array( $discounts ); |
|
| 1069 | + $discounts = is_array($discounts) ? $discounts : array($discounts); |
|
| 1070 | 1070 | |
| 1071 | 1071 | $html = ''; |
| 1072 | 1072 | |
| 1073 | - foreach ( $discounts as $discount ) { |
|
| 1074 | - $discount_id = wpinv_get_discount_id_by_code( $discount ); |
|
| 1075 | - $discount_value = wpinv_get_discount_amount( $discount_id ); |
|
| 1076 | - $rate = wpinv_format_discount_rate( wpinv_get_discount_type( $discount_id ), $discount_value ); |
|
| 1077 | - $amount = wpinv_get_cart_items_discount_amount( $items, $discount ); |
|
| 1078 | - $remove_btn = '<a title="' . esc_attr__( 'Remove discount', 'invoicing' ) . '" data-code="' . $discount . '" data-value="' . $discount_value . '" class="wpi-discount-remove" href="javascript:void(0);">[<i class="fa fa-times" aria-hidden="true"></i>]</a> '; |
|
| 1073 | + foreach ($discounts as $discount) { |
|
| 1074 | + $discount_id = wpinv_get_discount_id_by_code($discount); |
|
| 1075 | + $discount_value = wpinv_get_discount_amount($discount_id); |
|
| 1076 | + $rate = wpinv_format_discount_rate(wpinv_get_discount_type($discount_id), $discount_value); |
|
| 1077 | + $amount = wpinv_get_cart_items_discount_amount($items, $discount); |
|
| 1078 | + $remove_btn = '<a title="' . esc_attr__('Remove discount', 'invoicing') . '" data-code="' . $discount . '" data-value="' . $discount_value . '" class="wpi-discount-remove" href="javascript:void(0);">[<i class="fa fa-times" aria-hidden="true"></i>]</a> '; |
|
| 1079 | 1079 | |
| 1080 | 1080 | $html .= '<tr class="wpinv_cart_footer_row wpinv_cart_discount_row">'; |
| 1081 | 1081 | ob_start(); |
| 1082 | - do_action( 'wpinv_checkout_table_discount_first', $items ); |
|
| 1082 | + do_action('wpinv_checkout_table_discount_first', $items); |
|
| 1083 | 1083 | $html .= ob_get_clean(); |
| 1084 | - $html .= '<td class="wpinv_cart_discount_label text-right" colspan="' . $wpi_cart_columns . '">' . $remove_btn . '<strong>' . wpinv_cart_discount_label( $discount, $rate, false ) . '</strong></td><td class="wpinv_cart_discount text-right"><span data-discount="' . $amount . '" class="wpinv_cart_discount_amount">–' . wpinv_price( wpinv_format_amount( $amount ) ) . '</span></td>'; |
|
| 1084 | + $html .= '<td class="wpinv_cart_discount_label text-right" colspan="' . $wpi_cart_columns . '">' . $remove_btn . '<strong>' . wpinv_cart_discount_label($discount, $rate, false) . '</strong></td><td class="wpinv_cart_discount text-right"><span data-discount="' . $amount . '" class="wpinv_cart_discount_amount">–' . wpinv_price(wpinv_format_amount($amount)) . '</span></td>'; |
|
| 1085 | 1085 | ob_start(); |
| 1086 | - do_action( 'wpinv_checkout_table_discount_last', $items ); |
|
| 1086 | + do_action('wpinv_checkout_table_discount_last', $items); |
|
| 1087 | 1087 | $html .= ob_get_clean(); |
| 1088 | 1088 | $html .= '</tr>'; |
| 1089 | 1089 | } |
| 1090 | 1090 | |
| 1091 | - return apply_filters( 'wpinv_get_cart_discounts_html', $html, $discounts, $rate ); |
|
| 1091 | + return apply_filters('wpinv_get_cart_discounts_html', $html, $discounts, $rate); |
|
| 1092 | 1092 | } |
| 1093 | 1093 | |
| 1094 | -function wpinv_display_cart_discount( $formatted = false, $echo = false ) { |
|
| 1094 | +function wpinv_display_cart_discount($formatted = false, $echo = false) { |
|
| 1095 | 1095 | $discounts = wpinv_get_cart_discounts(); |
| 1096 | 1096 | |
| 1097 | - if ( empty( $discounts ) ) { |
|
| 1097 | + if (empty($discounts)) { |
|
| 1098 | 1098 | return false; |
| 1099 | 1099 | } |
| 1100 | 1100 | |
| 1101 | - $discount_id = wpinv_get_discount_id_by_code( $discounts[0] ); |
|
| 1102 | - $amount = wpinv_format_discount_rate( wpinv_get_discount_type( $discount_id ), wpinv_get_discount_amount( $discount_id ) ); |
|
| 1101 | + $discount_id = wpinv_get_discount_id_by_code($discounts[0]); |
|
| 1102 | + $amount = wpinv_format_discount_rate(wpinv_get_discount_type($discount_id), wpinv_get_discount_amount($discount_id)); |
|
| 1103 | 1103 | |
| 1104 | - if ( $echo ) { |
|
| 1104 | + if ($echo) { |
|
| 1105 | 1105 | echo $amount; |
| 1106 | 1106 | } |
| 1107 | 1107 | |
@@ -1109,135 +1109,135 @@ discard block |
||
| 1109 | 1109 | } |
| 1110 | 1110 | |
| 1111 | 1111 | function wpinv_remove_cart_discount() { |
| 1112 | - if ( !isset( $_GET['discount_id'] ) || ! isset( $_GET['discount_code'] ) ) { |
|
| 1112 | + if (!isset($_GET['discount_id']) || !isset($_GET['discount_code'])) { |
|
| 1113 | 1113 | return; |
| 1114 | 1114 | } |
| 1115 | 1115 | |
| 1116 | - do_action( 'wpinv_pre_remove_cart_discount', absint( $_GET['discount_id'] ) ); |
|
| 1116 | + do_action('wpinv_pre_remove_cart_discount', absint($_GET['discount_id'])); |
|
| 1117 | 1117 | |
| 1118 | - wpinv_unset_cart_discount( urldecode( $_GET['discount_code'] ) ); |
|
| 1118 | + wpinv_unset_cart_discount(urldecode($_GET['discount_code'])); |
|
| 1119 | 1119 | |
| 1120 | - do_action( 'wpinv_post_remove_cart_discount', absint( $_GET['discount_id'] ) ); |
|
| 1120 | + do_action('wpinv_post_remove_cart_discount', absint($_GET['discount_id'])); |
|
| 1121 | 1121 | |
| 1122 | - wp_redirect( wpinv_get_checkout_uri() ); wpinv_die(); |
|
| 1122 | + wp_redirect(wpinv_get_checkout_uri()); wpinv_die(); |
|
| 1123 | 1123 | } |
| 1124 | -add_action( 'wpinv_remove_cart_discount', 'wpinv_remove_cart_discount' ); |
|
| 1124 | +add_action('wpinv_remove_cart_discount', 'wpinv_remove_cart_discount'); |
|
| 1125 | 1125 | |
| 1126 | -function wpinv_maybe_remove_cart_discount( $cart_key = 0 ) { |
|
| 1126 | +function wpinv_maybe_remove_cart_discount($cart_key = 0) { |
|
| 1127 | 1127 | $discounts = wpinv_get_cart_discounts(); |
| 1128 | 1128 | |
| 1129 | - if ( !$discounts ) { |
|
| 1129 | + if (!$discounts) { |
|
| 1130 | 1130 | return; |
| 1131 | 1131 | } |
| 1132 | 1132 | |
| 1133 | - foreach ( $discounts as $discount ) { |
|
| 1134 | - if ( !wpinv_is_discount_valid( $discount ) ) { |
|
| 1135 | - wpinv_unset_cart_discount( $discount ); |
|
| 1133 | + foreach ($discounts as $discount) { |
|
| 1134 | + if (!wpinv_is_discount_valid($discount)) { |
|
| 1135 | + wpinv_unset_cart_discount($discount); |
|
| 1136 | 1136 | } |
| 1137 | 1137 | } |
| 1138 | 1138 | } |
| 1139 | -add_action( 'wpinv_post_remove_from_cart', 'wpinv_maybe_remove_cart_discount' ); |
|
| 1139 | +add_action('wpinv_post_remove_from_cart', 'wpinv_maybe_remove_cart_discount'); |
|
| 1140 | 1140 | |
| 1141 | 1141 | function wpinv_multiple_discounts_allowed() { |
| 1142 | - $ret = wpinv_get_option( 'allow_multiple_discounts', false ); |
|
| 1143 | - return (bool) apply_filters( 'wpinv_multiple_discounts_allowed', $ret ); |
|
| 1142 | + $ret = wpinv_get_option('allow_multiple_discounts', false); |
|
| 1143 | + return (bool)apply_filters('wpinv_multiple_discounts_allowed', $ret); |
|
| 1144 | 1144 | } |
| 1145 | 1145 | |
| 1146 | 1146 | function wpinv_listen_for_cart_discount() { |
| 1147 | 1147 | global $wpi_session; |
| 1148 | 1148 | |
| 1149 | - if ( empty( $_REQUEST['discount'] ) || is_array( $_REQUEST['discount'] ) ) { |
|
| 1149 | + if (empty($_REQUEST['discount']) || is_array($_REQUEST['discount'])) { |
|
| 1150 | 1150 | return; |
| 1151 | 1151 | } |
| 1152 | 1152 | |
| 1153 | - $code = preg_replace('/[^a-zA-Z0-9-_]+/', '', $_REQUEST['discount'] ); |
|
| 1153 | + $code = preg_replace('/[^a-zA-Z0-9-_]+/', '', $_REQUEST['discount']); |
|
| 1154 | 1154 | |
| 1155 | - $wpi_session->set( 'preset_discount', $code ); |
|
| 1155 | + $wpi_session->set('preset_discount', $code); |
|
| 1156 | 1156 | } |
| 1157 | 1157 | //add_action( 'init', 'wpinv_listen_for_cart_discount', 0 ); |
| 1158 | 1158 | |
| 1159 | 1159 | function wpinv_apply_preset_discount() { |
| 1160 | 1160 | global $wpi_session; |
| 1161 | 1161 | |
| 1162 | - $code = $wpi_session->get( 'preset_discount' ); |
|
| 1162 | + $code = $wpi_session->get('preset_discount'); |
|
| 1163 | 1163 | |
| 1164 | - if ( !$code ) { |
|
| 1164 | + if (!$code) { |
|
| 1165 | 1165 | return; |
| 1166 | 1166 | } |
| 1167 | 1167 | |
| 1168 | - if ( !wpinv_is_discount_valid( $code, '', false ) ) { |
|
| 1168 | + if (!wpinv_is_discount_valid($code, '', false)) { |
|
| 1169 | 1169 | return; |
| 1170 | 1170 | } |
| 1171 | 1171 | |
| 1172 | - $code = apply_filters( 'wpinv_apply_preset_discount', $code ); |
|
| 1172 | + $code = apply_filters('wpinv_apply_preset_discount', $code); |
|
| 1173 | 1173 | |
| 1174 | - wpinv_set_cart_discount( $code ); |
|
| 1174 | + wpinv_set_cart_discount($code); |
|
| 1175 | 1175 | |
| 1176 | - $wpi_session->set( 'preset_discount', null ); |
|
| 1176 | + $wpi_session->set('preset_discount', null); |
|
| 1177 | 1177 | } |
| 1178 | 1178 | //add_action( 'init', 'wpinv_apply_preset_discount', 999 ); |
| 1179 | 1179 | |
| 1180 | -function wpinv_get_discount_label( $code, $echo = true ) { |
|
| 1181 | - $label = wp_sprintf( __( 'Discount%1$s', 'invoicing' ), ( $code != '' && $code != 'none' ? ' (<code>' . $code . '</code>)': '' ) ); |
|
| 1182 | - $label = apply_filters( 'wpinv_get_discount_label', $label, $code ); |
|
| 1180 | +function wpinv_get_discount_label($code, $echo = true) { |
|
| 1181 | + $label = wp_sprintf(__('Discount%1$s', 'invoicing'), ($code != '' && $code != 'none' ? ' (<code>' . $code . '</code>)' : '')); |
|
| 1182 | + $label = apply_filters('wpinv_get_discount_label', $label, $code); |
|
| 1183 | 1183 | |
| 1184 | - if ( $echo ) { |
|
| 1184 | + if ($echo) { |
|
| 1185 | 1185 | echo $label; |
| 1186 | 1186 | } else { |
| 1187 | 1187 | return $label; |
| 1188 | 1188 | } |
| 1189 | 1189 | } |
| 1190 | 1190 | |
| 1191 | -function wpinv_cart_discount_label( $code, $rate, $echo = true ) { |
|
| 1192 | - $label = wp_sprintf( __( '%1$s Discount: %2$s', 'invoicing' ), $rate, $code ); |
|
| 1193 | - $label = apply_filters( 'wpinv_cart_discount_label', $label, $code, $rate ); |
|
| 1191 | +function wpinv_cart_discount_label($code, $rate, $echo = true) { |
|
| 1192 | + $label = wp_sprintf(__('%1$s Discount: %2$s', 'invoicing'), $rate, $code); |
|
| 1193 | + $label = apply_filters('wpinv_cart_discount_label', $label, $code, $rate); |
|
| 1194 | 1194 | |
| 1195 | - if ( $echo ) { |
|
| 1195 | + if ($echo) { |
|
| 1196 | 1196 | echo $label; |
| 1197 | 1197 | } else { |
| 1198 | 1198 | return $label; |
| 1199 | 1199 | } |
| 1200 | 1200 | } |
| 1201 | 1201 | |
| 1202 | -function wpinv_check_delete_discount( $check, $post, $force_delete ) { |
|
| 1203 | - if ( $post->post_type == 'wpi_discount' && wpinv_get_discount_uses( $post->ID ) > 0 ) { |
|
| 1202 | +function wpinv_check_delete_discount($check, $post, $force_delete) { |
|
| 1203 | + if ($post->post_type == 'wpi_discount' && wpinv_get_discount_uses($post->ID) > 0) { |
|
| 1204 | 1204 | return true; |
| 1205 | 1205 | } |
| 1206 | 1206 | |
| 1207 | 1207 | return $check; |
| 1208 | 1208 | } |
| 1209 | -add_filter( 'pre_delete_post', 'wpinv_check_delete_discount', 10, 3 ); |
|
| 1209 | +add_filter('pre_delete_post', 'wpinv_check_delete_discount', 10, 3); |
|
| 1210 | 1210 | |
| 1211 | 1211 | function wpinv_checkout_form_validate_discounts() { |
| 1212 | 1212 | global $wpi_checkout_id; |
| 1213 | 1213 | |
| 1214 | 1214 | $discounts = wpinv_get_cart_discounts(); |
| 1215 | 1215 | |
| 1216 | - if ( !empty( $discounts ) ) { |
|
| 1216 | + if (!empty($discounts)) { |
|
| 1217 | 1217 | $invalid = false; |
| 1218 | 1218 | |
| 1219 | - foreach ( $discounts as $key => $code ) { |
|
| 1220 | - if ( !wpinv_is_discount_valid( $code, (int)wpinv_get_user_id( $wpi_checkout_id ) ) ) { |
|
| 1219 | + foreach ($discounts as $key => $code) { |
|
| 1220 | + if (!wpinv_is_discount_valid($code, (int)wpinv_get_user_id($wpi_checkout_id))) { |
|
| 1221 | 1221 | $invalid = true; |
| 1222 | 1222 | |
| 1223 | - wpinv_unset_cart_discount( $code ); |
|
| 1223 | + wpinv_unset_cart_discount($code); |
|
| 1224 | 1224 | } |
| 1225 | 1225 | } |
| 1226 | 1226 | |
| 1227 | - if ( $invalid ) { |
|
| 1227 | + if ($invalid) { |
|
| 1228 | 1228 | $errors = wpinv_get_errors(); |
| 1229 | - $error = !empty( $errors['wpinv-discount-error'] ) ? $errors['wpinv-discount-error'] . ' ' : ''; |
|
| 1230 | - $error .= __( 'The discount has been removed from cart.', 'invoicing' ); |
|
| 1231 | - wpinv_set_error( 'wpinv-discount-error', $error ); |
|
| 1229 | + $error = !empty($errors['wpinv-discount-error']) ? $errors['wpinv-discount-error'] . ' ' : ''; |
|
| 1230 | + $error .= __('The discount has been removed from cart.', 'invoicing'); |
|
| 1231 | + wpinv_set_error('wpinv-discount-error', $error); |
|
| 1232 | 1232 | |
| 1233 | - wpinv_recalculate_tax( true ); |
|
| 1233 | + wpinv_recalculate_tax(true); |
|
| 1234 | 1234 | } |
| 1235 | 1235 | } |
| 1236 | 1236 | } |
| 1237 | -add_action( 'wpinv_before_checkout_form', 'wpinv_checkout_form_validate_discounts', -10 ); |
|
| 1237 | +add_action('wpinv_before_checkout_form', 'wpinv_checkout_form_validate_discounts', -10); |
|
| 1238 | 1238 | |
| 1239 | 1239 | function wpinv_discount_amount() { |
| 1240 | 1240 | $output = 0.00; |
| 1241 | 1241 | |
| 1242 | - return apply_filters( 'wpinv_discount_amount', $output ); |
|
| 1242 | + return apply_filters('wpinv_discount_amount', $output); |
|
| 1243 | 1243 | } |
| 1244 | 1244 | \ No newline at end of file |
@@ -1,22 +1,22 @@ 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 | 7 | class WPInv_Meta_Box_Items { |
| 8 | - public static function output( $post ) { |
|
| 8 | + public static function output($post) { |
|
| 9 | 9 | global $wpinv_euvat, $ajax_cart_details; |
| 10 | 10 | |
| 11 | - $post_id = !empty( $post->ID ) ? $post->ID : 0; |
|
| 12 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 11 | + $post_id = !empty($post->ID) ? $post->ID : 0; |
|
| 12 | + $invoice = new WPInv_Invoice($post_id); |
|
| 13 | 13 | $ajax_cart_details = $invoice->get_cart_details(); |
| 14 | - $subtotal = $invoice->get_subtotal( true ); |
|
| 14 | + $subtotal = $invoice->get_subtotal(true); |
|
| 15 | 15 | $discount_raw = $invoice->get_discount(); |
| 16 | - $discount = wpinv_price( $discount_raw, $invoice->get_currency() ); |
|
| 16 | + $discount = wpinv_price($discount_raw, $invoice->get_currency()); |
|
| 17 | 17 | $discounts = $discount_raw > 0 ? $invoice->get_discounts() : ''; |
| 18 | - $tax = $invoice->get_tax( true ); |
|
| 19 | - $total = $invoice->get_total( true ); |
|
| 18 | + $tax = $invoice->get_tax(true); |
|
| 19 | + $total = $invoice->get_total(true); |
|
| 20 | 20 | $item_quantities = wpinv_item_quantities_enabled(); |
| 21 | 21 | $use_taxes = wpinv_use_taxes(); |
| 22 | 22 | $item_types = wpinv_get_item_types(); |
@@ -29,20 +29,20 @@ discard block |
||
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | $cols = 5; |
| 32 | - if ( $item_quantities ) { |
|
| 32 | + if ($item_quantities) { |
|
| 33 | 33 | $cols++; |
| 34 | 34 | } |
| 35 | - if ( $use_taxes ) { |
|
| 35 | + if ($use_taxes) { |
|
| 36 | 36 | $cols++; |
| 37 | 37 | } |
| 38 | 38 | $class = ''; |
| 39 | - if ( $invoice->is_paid() ) { |
|
| 39 | + if ($invoice->is_paid()) { |
|
| 40 | 40 | $class .= ' wpinv-paid'; |
| 41 | 41 | } |
| 42 | - if ( $invoice->is_refunded() ) { |
|
| 42 | + if ($invoice->is_refunded()) { |
|
| 43 | 43 | $class .= ' wpinv-refunded'; |
| 44 | 44 | } |
| 45 | - if ( $is_recurring ) { |
|
| 45 | + if ($is_recurring) { |
|
| 46 | 46 | $class .= ' wpi-recurring'; |
| 47 | 47 | } |
| 48 | 48 | ?> |
@@ -50,21 +50,21 @@ discard block |
||
| 50 | 50 | <table id="wpinv_items" class="wpinv-items" cellspacing="0" cellpadding="0"> |
| 51 | 51 | <thead> |
| 52 | 52 | <tr> |
| 53 | - <th class="id"><?php _e( 'ID', 'invoicing' );?></th> |
|
| 54 | - <th class="title"><?php _e( 'Item', 'invoicing' );?></th> |
|
| 55 | - <th class="price"><?php _e( 'Price', 'invoicing' );?></th> |
|
| 56 | - <?php if ( $item_quantities ) { ?> |
|
| 57 | - <th class="qty"><?php _e( 'Qty', 'invoicing' );?></th> |
|
| 53 | + <th class="id"><?php _e('ID', 'invoicing'); ?></th> |
|
| 54 | + <th class="title"><?php _e('Item', 'invoicing'); ?></th> |
|
| 55 | + <th class="price"><?php _e('Price', 'invoicing'); ?></th> |
|
| 56 | + <?php if ($item_quantities) { ?> |
|
| 57 | + <th class="qty"><?php _e('Qty', 'invoicing'); ?></th> |
|
| 58 | 58 | <?php } ?> |
| 59 | - <th class="total"><?php _e( 'Total', 'invoicing' );?></th> |
|
| 60 | - <?php if ( $use_taxes ) { ?> |
|
| 61 | - <th class="tax"><?php _e( 'Tax (%)', 'invoicing' );?></th> |
|
| 59 | + <th class="total"><?php _e('Total', 'invoicing'); ?></th> |
|
| 60 | + <?php if ($use_taxes) { ?> |
|
| 61 | + <th class="tax"><?php _e('Tax (%)', 'invoicing'); ?></th> |
|
| 62 | 62 | <?php } ?> |
| 63 | 63 | <th class="action"></th> |
| 64 | 64 | </tr> |
| 65 | 65 | </thead> |
| 66 | 66 | <tbody class="wpinv-line-items"> |
| 67 | - <?php echo wpinv_admin_get_line_items( $invoice ); ?> |
|
| 67 | + <?php echo wpinv_admin_get_line_items($invoice); ?> |
|
| 68 | 68 | </tbody> |
| 69 | 69 | <tfoot class="wpinv-totals"> |
| 70 | 70 | <tr> |
@@ -76,44 +76,44 @@ discard block |
||
| 76 | 76 | </td> |
| 77 | 77 | <td class="title"> |
| 78 | 78 | <input type="text" class="regular-text" placeholder="Item name" value="" name="_wpinv_quick[name]"> |
| 79 | - <?php if ( $wpinv_euvat->allow_vat_rules() ) { ?> |
|
| 79 | + <?php if ($wpinv_euvat->allow_vat_rules()) { ?> |
|
| 80 | 80 | <div class="wp-clearfix"> |
| 81 | 81 | <label class="wpi-vat-rule"> |
| 82 | - <span class="title"><?php _e( 'VAT rule type', 'invoicing' );?></span> |
|
| 82 | + <span class="title"><?php _e('VAT rule type', 'invoicing'); ?></span> |
|
| 83 | 83 | <span class="input-text-wrap"> |
| 84 | - <?php echo wpinv_html_select( array( |
|
| 84 | + <?php echo wpinv_html_select(array( |
|
| 85 | 85 | 'options' => $wpinv_euvat->get_rules(), |
| 86 | 86 | 'name' => '_wpinv_quick[vat_rule]', |
| 87 | 87 | 'id' => '_wpinv_quick_vat_rule', |
| 88 | 88 | 'show_option_all' => false, |
| 89 | 89 | 'show_option_none' => false, |
| 90 | 90 | 'class' => 'gdmbx2-text-medium wpinv-quick-vat-rule', |
| 91 | - ) ); ?> |
|
| 91 | + )); ?> |
|
| 92 | 92 | </span> |
| 93 | 93 | </label> |
| 94 | 94 | </div> |
| 95 | - <?php } if ( $wpinv_euvat->allow_vat_classes() ) { ?> |
|
| 95 | + <?php } if ($wpinv_euvat->allow_vat_classes()) { ?> |
|
| 96 | 96 | <div class="wp-clearfix"> |
| 97 | 97 | <label class="wpi-vat-class"> |
| 98 | - <span class="title"><?php _e( 'VAT class', 'invoicing' );?></span> |
|
| 98 | + <span class="title"><?php _e('VAT class', 'invoicing'); ?></span> |
|
| 99 | 99 | <span class="input-text-wrap"> |
| 100 | - <?php echo wpinv_html_select( array( |
|
| 100 | + <?php echo wpinv_html_select(array( |
|
| 101 | 101 | 'options' => $wpinv_euvat->get_all_classes(), |
| 102 | 102 | 'name' => '_wpinv_quick[vat_class]', |
| 103 | 103 | 'id' => '_wpinv_quick_vat_class', |
| 104 | 104 | 'show_option_all' => false, |
| 105 | 105 | 'show_option_none' => false, |
| 106 | 106 | 'class' => 'gdmbx2-text-medium wpinv-quick-vat-class', |
| 107 | - ) ); ?> |
|
| 107 | + )); ?> |
|
| 108 | 108 | </span> |
| 109 | 109 | </label> |
| 110 | 110 | </div> |
| 111 | 111 | <?php } ?> |
| 112 | 112 | <div class="wp-clearfix"> |
| 113 | 113 | <label class="wpi-item-type"> |
| 114 | - <span class="title"><?php _e( 'Item type', 'invoicing' );?></span> |
|
| 114 | + <span class="title"><?php _e('Item type', 'invoicing'); ?></span> |
|
| 115 | 115 | <span class="input-text-wrap"> |
| 116 | - <?php echo wpinv_html_select( array( |
|
| 116 | + <?php echo wpinv_html_select(array( |
|
| 117 | 117 | 'options' => $item_types, |
| 118 | 118 | 'name' => '_wpinv_quick[type]', |
| 119 | 119 | 'id' => '_wpinv_quick_type', |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | 'show_option_all' => false, |
| 122 | 122 | 'show_option_none' => false, |
| 123 | 123 | 'class' => 'gdmbx2-text-medium wpinv-quick-type', |
| 124 | - ) ); ?> |
|
| 124 | + )); ?> |
|
| 125 | 125 | </span> |
| 126 | 126 | </label> |
| 127 | 127 | </div> |
@@ -134,11 +134,11 @@ discard block |
||
| 134 | 134 | </div> |
| 135 | 135 | </td> |
| 136 | 136 | <td class="price"><input type="text" placeholder="0.00" class="wpi-field-price wpi-price" name="_wpinv_quick[price]" /></td> |
| 137 | - <?php if ( $item_quantities ) { ?> |
|
| 137 | + <?php if ($item_quantities) { ?> |
|
| 138 | 138 | <td class="qty"><input type="number" class="small-text" step="1" min="1" value="1" name="_wpinv_quick[qty]" /></td> |
| 139 | 139 | <?php } ?> |
| 140 | 140 | <td class="total"></td> |
| 141 | - <?php if ( $use_taxes ) { ?> |
|
| 141 | + <?php if ($use_taxes) { ?> |
|
| 142 | 142 | <td class="tax"></td> |
| 143 | 143 | <?php } ?> |
| 144 | 144 | <td class="action"></td> |
@@ -151,29 +151,29 @@ discard block |
||
| 151 | 151 | <td colspan="<?php echo $cols; ?>"></td> |
| 152 | 152 | </tr> |
| 153 | 153 | <tr class="totals"> |
| 154 | - <td colspan="<?php echo ( $cols - 4 ); ?>"></td> |
|
| 154 | + <td colspan="<?php echo ($cols - 4); ?>"></td> |
|
| 155 | 155 | <td colspan="4"> |
| 156 | 156 | <table cellspacing="0" cellpadding="0"> |
| 157 | 157 | <tr class="subtotal"> |
| 158 | - <td class="name"><?php _e( 'Sub Total:', 'invoicing' );?></td> |
|
| 159 | - <td class="total"><?php echo $subtotal;?></td> |
|
| 158 | + <td class="name"><?php _e('Sub Total:', 'invoicing'); ?></td> |
|
| 159 | + <td class="total"><?php echo $subtotal; ?></td> |
|
| 160 | 160 | <td class="action"></td> |
| 161 | 161 | </tr> |
| 162 | 162 | <tr class="discount"> |
| 163 | - <td class="name"><?php wpinv_get_discount_label( wpinv_discount_code( $invoice->ID ) ); ?>:</td> |
|
| 164 | - <td class="total"><?php echo wpinv_discount( $invoice->ID, true, true ); ?></td> |
|
| 163 | + <td class="name"><?php wpinv_get_discount_label(wpinv_discount_code($invoice->ID)); ?>:</td> |
|
| 164 | + <td class="total"><?php echo wpinv_discount($invoice->ID, true, true); ?></td> |
|
| 165 | 165 | <td class="action"></td> |
| 166 | 166 | </tr> |
| 167 | - <?php if ( $use_taxes ) { ?> |
|
| 167 | + <?php if ($use_taxes) { ?> |
|
| 168 | 168 | <tr class="tax"> |
| 169 | - <td class="name"><?php _e( 'Tax:', 'invoicing' );?></td> |
|
| 170 | - <td class="total"><?php echo $tax;?></td> |
|
| 169 | + <td class="name"><?php _e('Tax:', 'invoicing'); ?></td> |
|
| 170 | + <td class="total"><?php echo $tax; ?></td> |
|
| 171 | 171 | <td class="action"></td> |
| 172 | 172 | </tr> |
| 173 | 173 | <?php } ?> |
| 174 | 174 | <tr class="total"> |
| 175 | - <td class="name"><?php echo apply_filters( 'wpinv_invoice_items_total_label', __( 'Invoice Total:', 'invoicing' ), $invoice );?></td> |
|
| 176 | - <td class="total"><?php echo $total;?></td> |
|
| 175 | + <td class="name"><?php echo apply_filters('wpinv_invoice_items_total_label', __('Invoice Total:', 'invoicing'), $invoice); ?></td> |
|
| 176 | + <td class="total"><?php echo $total; ?></td> |
|
| 177 | 177 | <td class="action"></td> |
| 178 | 178 | </tr> |
| 179 | 179 | </table> |
@@ -183,89 +183,89 @@ discard block |
||
| 183 | 183 | </table> |
| 184 | 184 | <div class="wpinv-actions"> |
| 185 | 185 | <?php |
| 186 | - if ( !$invoice->is_paid() && !$invoice->is_refunded() ) { |
|
| 187 | - if ( !$invoice->is_recurring() ) { |
|
| 188 | - echo wpinv_item_dropdown( array( |
|
| 186 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
| 187 | + if (!$invoice->is_recurring()) { |
|
| 188 | + echo wpinv_item_dropdown(array( |
|
| 189 | 189 | 'name' => 'wpinv_invoice_item', |
| 190 | 190 | 'id' => 'wpinv_invoice_item', |
| 191 | 191 | 'with_packages' => false, |
| 192 | 192 | 'show_recurring' => true, |
| 193 | - ) ); |
|
| 193 | + )); |
|
| 194 | 194 | ?> |
| 195 | - <input type="button" value="<?php echo sprintf(esc_attr__( 'Add item to %s', 'invoicing'), $type_title); ?>" class="button button-primary" id="wpinv-add-item"><input type="button" value="<?php esc_attr_e( 'Create new item', 'invoicing' );?>" class="button button-primary" id="wpinv-new-item"><?php } ?><input type="button" value="<?php esc_attr_e( 'Recalculate Totals', 'invoicing' );?>" class="button button-primary wpinv-flr" id="wpinv-recalc-totals"> |
|
| 195 | + <input type="button" value="<?php echo sprintf(esc_attr__('Add item to %s', 'invoicing'), $type_title); ?>" class="button button-primary" id="wpinv-add-item"><input type="button" value="<?php esc_attr_e('Create new item', 'invoicing'); ?>" class="button button-primary" id="wpinv-new-item"><?php } ?><input type="button" value="<?php esc_attr_e('Recalculate Totals', 'invoicing'); ?>" class="button button-primary wpinv-flr" id="wpinv-recalc-totals"> |
|
| 196 | 196 | <?php } ?> |
| 197 | - <?php do_action( 'wpinv_invoice_items_actions', $invoice ); ?> |
|
| 197 | + <?php do_action('wpinv_invoice_items_actions', $invoice); ?> |
|
| 198 | 198 | </div> |
| 199 | 199 | </div> |
| 200 | 200 | <?php |
| 201 | 201 | } |
| 202 | 202 | |
| 203 | - public static function prices( $post ) { |
|
| 203 | + public static function prices($post) { |
|
| 204 | 204 | $symbol = wpinv_currency_symbol(); |
| 205 | 205 | $position = wpinv_currency_position(); |
| 206 | - $item = new WPInv_Item( $post->ID ); |
|
| 206 | + $item = new WPInv_Item($post->ID); |
|
| 207 | 207 | |
| 208 | 208 | $price = $item->get_price(); |
| 209 | 209 | $is_recurring = $item->is_recurring(); |
| 210 | 210 | $period = $item->get_recurring_period(); |
| 211 | - $interval = absint( $item->get_recurring_interval() ); |
|
| 212 | - $times = absint( $item->get_recurring_limit() ); |
|
| 211 | + $interval = absint($item->get_recurring_interval()); |
|
| 212 | + $times = absint($item->get_recurring_limit()); |
|
| 213 | 213 | $free_trial = $item->has_free_trial(); |
| 214 | 214 | $trial_interval = $item->get_trial_interval(); |
| 215 | 215 | $trial_period = $item->get_trial_period(); |
| 216 | 216 | |
| 217 | 217 | $intervals = array(); |
| 218 | - for ( $i = 1; $i <= 90; $i++ ) { |
|
| 218 | + for ($i = 1; $i <= 90; $i++) { |
|
| 219 | 219 | $intervals[$i] = $i; |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - $interval = $interval > 0 ? $interval : 1; |
|
| 222 | + $interval = $interval > 0 ? $interval : 1; |
|
| 223 | 223 | |
| 224 | 224 | $class = $is_recurring ? 'wpinv-recurring-y' : 'wpinv-recurring-n'; |
| 225 | 225 | ?> |
| 226 | - <p class="wpinv-row-prices"><?php echo ( $position != 'right' ? $symbol . ' ' : '' );?><input type="text" maxlength="12" placeholder="<?php echo wpinv_sanitize_amount( 0 ); ?>" value="<?php echo $price;?>" id="wpinv_item_price" name="wpinv_item_price" class="medium-text wpi-field-price wpi-price" <?php disabled( $item->is_package(), true ); ?> /><?php echo ( $position == 'right' ? ' ' . $symbol : '' );?><input type="hidden" name="wpinv_vat_meta_box_nonce" value="<?php echo wp_create_nonce( 'wpinv_item_meta_box_save' ) ;?>" /> |
|
| 227 | - <?php if ( $item->is_package() ) { ?> |
|
| 228 | - <span class="description"><?php _e( 'GD package item price can be edited only from GD payment manager.', 'invoicing' ); ?></span> |
|
| 226 | + <p class="wpinv-row-prices"><?php echo ($position != 'right' ? $symbol . ' ' : ''); ?><input type="text" maxlength="12" placeholder="<?php echo wpinv_sanitize_amount(0); ?>" value="<?php echo $price; ?>" id="wpinv_item_price" name="wpinv_item_price" class="medium-text wpi-field-price wpi-price" <?php disabled($item->is_package(), true); ?> /><?php echo ($position == 'right' ? ' ' . $symbol : ''); ?><input type="hidden" name="wpinv_vat_meta_box_nonce" value="<?php echo wp_create_nonce('wpinv_item_meta_box_save'); ?>" /> |
|
| 227 | + <?php if ($item->is_package()) { ?> |
|
| 228 | + <span class="description"><?php _e('GD package item price can be edited only from GD payment manager.', 'invoicing'); ?></span> |
|
| 229 | 229 | <?php } ?> |
| 230 | 230 | </p> |
| 231 | 231 | <p class="wpinv-row-is-recurring"> |
| 232 | 232 | <label for="wpinv_is_recurring"> |
| 233 | - <input type="checkbox" name="wpinv_is_recurring" id="wpinv_is_recurring" value="1" <?php checked( 1, $is_recurring ); ?> /> |
|
| 234 | - <?php echo apply_filters( 'wpinv_is_recurring_toggle_text', __( 'Is Recurring Item?', 'invoicing' ) ); ?> |
|
| 233 | + <input type="checkbox" name="wpinv_is_recurring" id="wpinv_is_recurring" value="1" <?php checked(1, $is_recurring); ?> /> |
|
| 234 | + <?php echo apply_filters('wpinv_is_recurring_toggle_text', __('Is Recurring Item?', 'invoicing')); ?> |
|
| 235 | 235 | </label> |
| 236 | 236 | </p> |
| 237 | - <p class="wpinv-row-recurring-fields <?php echo $class;?>"> |
|
| 238 | - <label class="wpinv-period" for="wpinv_recurring_period"><?php _e( 'Recurring', 'invoicing' );?> <select class="wpinv-select " id="wpinv_recurring_period" name="wpinv_recurring_period"><option value="D" data-text="<?php esc_attr_e( 'day(s)', 'invoicing' ); ?>" <?php selected( 'D', $period );?>><?php _e( 'Daily', 'invoicing' ); ?></option><option value="W" data-text="<?php esc_attr_e( 'week(s)', 'invoicing' ); ?>" <?php selected( 'W', $period );?>><?php _e( 'Weekly', 'invoicing' ); ?></option><option value="M" data-text="<?php esc_attr_e( 'month(s)', 'invoicing' ); ?>" <?php selected( 'M', $period );?>><?php _e( 'Monthly', 'invoicing' ); ?></option><option value="Y" data-text="<?php esc_attr_e( 'year(s)', 'invoicing' ); ?>" <?php selected( 'Y', $period );?>><?php _e( 'Yearly', 'invoicing' ); ?></option></select></label> |
|
| 239 | - <label class="wpinv-interval" for="wpinv_recurring_interval"> <?php _e( 'at every', 'invoicing' );?> <?php echo wpinv_html_select( array( |
|
| 237 | + <p class="wpinv-row-recurring-fields <?php echo $class; ?>"> |
|
| 238 | + <label class="wpinv-period" for="wpinv_recurring_period"><?php _e('Recurring', 'invoicing'); ?> <select class="wpinv-select " id="wpinv_recurring_period" name="wpinv_recurring_period"><option value="D" data-text="<?php esc_attr_e('day(s)', 'invoicing'); ?>" <?php selected('D', $period); ?>><?php _e('Daily', 'invoicing'); ?></option><option value="W" data-text="<?php esc_attr_e('week(s)', 'invoicing'); ?>" <?php selected('W', $period); ?>><?php _e('Weekly', 'invoicing'); ?></option><option value="M" data-text="<?php esc_attr_e('month(s)', 'invoicing'); ?>" <?php selected('M', $period); ?>><?php _e('Monthly', 'invoicing'); ?></option><option value="Y" data-text="<?php esc_attr_e('year(s)', 'invoicing'); ?>" <?php selected('Y', $period); ?>><?php _e('Yearly', 'invoicing'); ?></option></select></label> |
|
| 239 | + <label class="wpinv-interval" for="wpinv_recurring_interval"> <?php _e('at every', 'invoicing'); ?> <?php echo wpinv_html_select(array( |
|
| 240 | 240 | 'options' => $intervals, |
| 241 | 241 | 'name' => 'wpinv_recurring_interval', |
| 242 | 242 | 'id' => 'wpinv_recurring_interval', |
| 243 | 243 | 'selected' => $interval, |
| 244 | 244 | 'show_option_all' => false, |
| 245 | 245 | 'show_option_none' => false |
| 246 | - ) ); ?> <span id="wpinv_interval_text"><?php _e( 'day(s)', 'invoicing' );?></span></label> |
|
| 247 | - <label class="wpinv-times" for="wpinv_recurring_limit"> <?php _e( 'for', 'invoicing' );?> <input class="small-text" type="number" value="<?php echo $times;?>" size="4" id="wpinv_recurring_limit" name="wpinv_recurring_limit" step="1" min="0"> <?php _e( 'time(s) <i>(select 0 for recurring forever until cancelled</i>)', 'invoicing' );?></label> |
|
| 246 | + )); ?> <span id="wpinv_interval_text"><?php _e('day(s)', 'invoicing'); ?></span></label> |
|
| 247 | + <label class="wpinv-times" for="wpinv_recurring_limit"> <?php _e('for', 'invoicing'); ?> <input class="small-text" type="number" value="<?php echo $times; ?>" size="4" id="wpinv_recurring_limit" name="wpinv_recurring_limit" step="1" min="0"> <?php _e('time(s) <i>(select 0 for recurring forever until cancelled</i>)', 'invoicing'); ?></label> |
|
| 248 | 248 | <span class="clear wpi-trial-clr"></span> |
| 249 | 249 | <label class="wpinv-free-trial" for="wpinv_free_trial"> |
| 250 | - <input type="checkbox" name="wpinv_free_trial" id="wpinv_free_trial" value="1" <?php checked( true, (bool)$free_trial ); ?> /> |
|
| 251 | - <?php echo __( 'Offer free trial for', 'invoicing' ); ?> |
|
| 250 | + <input type="checkbox" name="wpinv_free_trial" id="wpinv_free_trial" value="1" <?php checked(true, (bool)$free_trial); ?> /> |
|
| 251 | + <?php echo __('Offer free trial for', 'invoicing'); ?> |
|
| 252 | 252 | </label> |
| 253 | 253 | <label class="wpinv-trial-interval" for="wpinv_trial_interval"> |
| 254 | - <input class="small-text" type="number" value="<?php echo $trial_interval;?>" size="4" id="wpinv_trial_interval" name="wpinv_trial_interval" step="1" min="1"> <select class="wpinv-select" id="wpinv_trial_period" name="wpinv_trial_period"><option value="D" <?php selected( 'D', $trial_period );?>><?php _e( 'day(s)', 'invoicing' ); ?></option><option value="W" <?php selected( 'W', $trial_period );?>><?php _e( 'week(s)', 'invoicing' ); ?></option><option value="M" <?php selected( 'M', $trial_period );?>><?php _e( 'month(s)', 'invoicing' ); ?></option><option value="Y" <?php selected( 'Y', $trial_period );?>><?php _e( 'year(s)', 'invoicing' ); ?></option></select> |
|
| 254 | + <input class="small-text" type="number" value="<?php echo $trial_interval; ?>" size="4" id="wpinv_trial_interval" name="wpinv_trial_interval" step="1" min="1"> <select class="wpinv-select" id="wpinv_trial_period" name="wpinv_trial_period"><option value="D" <?php selected('D', $trial_period); ?>><?php _e('day(s)', 'invoicing'); ?></option><option value="W" <?php selected('W', $trial_period); ?>><?php _e('week(s)', 'invoicing'); ?></option><option value="M" <?php selected('M', $trial_period); ?>><?php _e('month(s)', 'invoicing'); ?></option><option value="Y" <?php selected('Y', $trial_period); ?>><?php _e('year(s)', 'invoicing'); ?></option></select> |
|
| 255 | 255 | </label> |
| 256 | 256 | </p> |
| 257 | - <input type="hidden" id="_wpi_current_type" value="<?php echo wpinv_get_item_type( $post->ID ); ?>" /> |
|
| 258 | - <?php do_action( 'wpinv_item_price_field', $post->ID ); ?> |
|
| 257 | + <input type="hidden" id="_wpi_current_type" value="<?php echo wpinv_get_item_type($post->ID); ?>" /> |
|
| 258 | + <?php do_action('wpinv_item_price_field', $post->ID); ?> |
|
| 259 | 259 | <?php |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - public static function vat_rules( $post ) { |
|
| 262 | + public static function vat_rules($post) { |
|
| 263 | 263 | global $wpinv_euvat; |
| 264 | 264 | |
| 265 | - $rule_type = $wpinv_euvat->get_item_rule( $post->ID ); |
|
| 265 | + $rule_type = $wpinv_euvat->get_item_rule($post->ID); |
|
| 266 | 266 | ?> |
| 267 | - <p><label for="wpinv_vat_rules"><strong><?php _e( 'Select how VAT rules will be applied:', 'invoicing' );?></strong></label> |
|
| 268 | - <?php echo wpinv_html_select( array( |
|
| 267 | + <p><label for="wpinv_vat_rules"><strong><?php _e('Select how VAT rules will be applied:', 'invoicing'); ?></strong></label> |
|
| 268 | + <?php echo wpinv_html_select(array( |
|
| 269 | 269 | 'options' => $wpinv_euvat->get_rules(), |
| 270 | 270 | 'name' => 'wpinv_vat_rules', |
| 271 | 271 | 'id' => 'wpinv_vat_rules', |
@@ -273,19 +273,19 @@ discard block |
||
| 273 | 273 | 'show_option_all' => false, |
| 274 | 274 | 'show_option_none' => false, |
| 275 | 275 | 'class' => 'gdmbx2-text-medium wpinv-vat-rules', |
| 276 | - ) ); ?> |
|
| 276 | + )); ?> |
|
| 277 | 277 | </p> |
| 278 | - <p class="wpi-m0"><?php _e( 'When you select physical product rules, only consumers and businesses in your country will be charged VAT. The VAT rate used will be the rate in your country.', 'invoicing' ); ?></p> |
|
| 279 | - <p class="wpi-m0"><?php _e( 'If you select Digital product rules, VAT will be charged at the rate that applies in the country of the consumer. Only businesses in your country will be charged VAT.', 'invoicing' ); ?></p> |
|
| 278 | + <p class="wpi-m0"><?php _e('When you select physical product rules, only consumers and businesses in your country will be charged VAT. The VAT rate used will be the rate in your country.', 'invoicing'); ?></p> |
|
| 279 | + <p class="wpi-m0"><?php _e('If you select Digital product rules, VAT will be charged at the rate that applies in the country of the consumer. Only businesses in your country will be charged VAT.', 'invoicing'); ?></p> |
|
| 280 | 280 | <?php |
| 281 | 281 | } |
| 282 | 282 | |
| 283 | - public static function vat_classes( $post ) { |
|
| 283 | + public static function vat_classes($post) { |
|
| 284 | 284 | global $wpinv_euvat; |
| 285 | 285 | |
| 286 | - $vat_class = $wpinv_euvat->get_item_class( $post->ID ); |
|
| 286 | + $vat_class = $wpinv_euvat->get_item_class($post->ID); |
|
| 287 | 287 | ?> |
| 288 | - <p><?php echo wpinv_html_select( array( |
|
| 288 | + <p><?php echo wpinv_html_select(array( |
|
| 289 | 289 | 'options' => $wpinv_euvat->get_all_classes(), |
| 290 | 290 | 'name' => 'wpinv_vat_class', |
| 291 | 291 | 'id' => 'wpinv_vat_class', |
@@ -293,18 +293,18 @@ discard block |
||
| 293 | 293 | 'show_option_all' => false, |
| 294 | 294 | 'show_option_none' => false, |
| 295 | 295 | 'class' => 'gdmbx2-text-medium wpinv-vat-class', |
| 296 | - ) ); ?> |
|
| 296 | + )); ?> |
|
| 297 | 297 | </p> |
| 298 | - <p class="wpi-m0"><?php _e( 'Select the VAT rate class to use for this invoice item.', 'invoicing' ); ?></p> |
|
| 298 | + <p class="wpi-m0"><?php _e('Select the VAT rate class to use for this invoice item.', 'invoicing'); ?></p> |
|
| 299 | 299 | <?php |
| 300 | 300 | } |
| 301 | 301 | |
| 302 | - public static function item_info( $post ) { |
|
| 303 | - $item_type = wpinv_get_item_type( $post->ID ); |
|
| 304 | - do_action( 'wpinv_item_info_metabox_before', $post ); |
|
| 302 | + public static function item_info($post) { |
|
| 303 | + $item_type = wpinv_get_item_type($post->ID); |
|
| 304 | + do_action('wpinv_item_info_metabox_before', $post); |
|
| 305 | 305 | ?> |
| 306 | - <p><label for="wpinv_item_type"><strong><?php _e( 'Type:', 'invoicing' );?></strong></label> |
|
| 307 | - <?php echo wpinv_html_select( array( |
|
| 306 | + <p><label for="wpinv_item_type"><strong><?php _e('Type:', 'invoicing'); ?></strong></label> |
|
| 307 | + <?php echo wpinv_html_select(array( |
|
| 308 | 308 | 'options' => wpinv_get_item_types(), |
| 309 | 309 | 'name' => 'wpinv_item_type', |
| 310 | 310 | 'id' => 'wpinv_item_type', |
@@ -313,114 +313,114 @@ discard block |
||
| 313 | 313 | 'show_option_none' => false, |
| 314 | 314 | 'class' => 'gdmbx2-text-medium wpinv-item-type', |
| 315 | 315 | //'disabled' => $item_type == 'package' ? true : false, |
| 316 | - ) ); ?> |
|
| 316 | + )); ?> |
|
| 317 | 317 | </p> |
| 318 | - <p class="wpi-m0"><?php _e( 'Select item type.', 'invoicing' );?><br><?php _e( '<b>Standard:</b> Standard item type', 'invoicing' );?><br><?php _e( '<b>Fee:</b> Like Registration Fee, Sign up Fee etc.', 'invoicing' );?></p> |
|
| 318 | + <p class="wpi-m0"><?php _e('Select item type.', 'invoicing'); ?><br><?php _e('<b>Standard:</b> Standard item type', 'invoicing'); ?><br><?php _e('<b>Fee:</b> Like Registration Fee, Sign up Fee etc.', 'invoicing'); ?></p> |
|
| 319 | 319 | <?php |
| 320 | - do_action( 'wpinv_item_info_metabox_after', $post ); |
|
| 320 | + do_action('wpinv_item_info_metabox_after', $post); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | - public static function meta_values( $post ) { |
|
| 324 | - $meta_keys = apply_filters( 'wpinv_show_meta_values_for_keys', array( |
|
| 323 | + public static function meta_values($post) { |
|
| 324 | + $meta_keys = apply_filters('wpinv_show_meta_values_for_keys', array( |
|
| 325 | 325 | 'type', |
| 326 | 326 | 'custom_id' |
| 327 | - ) ); |
|
| 327 | + )); |
|
| 328 | 328 | |
| 329 | - if ( empty( $meta_keys ) ) { |
|
| 329 | + if (empty($meta_keys)) { |
|
| 330 | 330 | return; |
| 331 | 331 | } |
| 332 | 332 | |
| 333 | - do_action( 'wpinv_meta_values_metabox_before', $post ); |
|
| 333 | + do_action('wpinv_meta_values_metabox_before', $post); |
|
| 334 | 334 | |
| 335 | - foreach ( $meta_keys as $meta_key ) { |
|
| 335 | + foreach ($meta_keys as $meta_key) { |
|
| 336 | 336 | ?> |
| 337 | - <p class="wpi-mtb05"><label><strong><?php echo $meta_key; ?></strong>: <?php echo get_post_meta( $post->ID, '_wpinv_' . $meta_key, true ); ?></label></p> |
|
| 337 | + <p class="wpi-mtb05"><label><strong><?php echo $meta_key; ?></strong>: <?php echo get_post_meta($post->ID, '_wpinv_' . $meta_key, true); ?></label></p> |
|
| 338 | 338 | <?php |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | - do_action( 'wpinv_meta_values_metabox_after', $post ); |
|
| 341 | + do_action('wpinv_meta_values_metabox_after', $post); |
|
| 342 | 342 | } |
| 343 | 343 | |
| 344 | - public static function save( $post_id, $data, $post ) { |
|
| 345 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 344 | + public static function save($post_id, $data, $post) { |
|
| 345 | + $invoice = new WPInv_Invoice($post_id); |
|
| 346 | 346 | |
| 347 | 347 | // Billing |
| 348 | - $first_name = sanitize_text_field( $data['wpinv_first_name'] ); |
|
| 349 | - $last_name = sanitize_text_field( $data['wpinv_last_name'] ); |
|
| 350 | - $company = sanitize_text_field( $data['wpinv_company'] ); |
|
| 351 | - $vat_number = sanitize_text_field( $data['wpinv_vat_number'] ); |
|
| 352 | - $phone = sanitize_text_field( $data['wpinv_phone'] ); |
|
| 353 | - $address = sanitize_text_field( $data['wpinv_address'] ); |
|
| 354 | - $city = sanitize_text_field( $data['wpinv_city'] ); |
|
| 355 | - $zip = sanitize_text_field( $data['wpinv_zip'] ); |
|
| 356 | - $country = sanitize_text_field( $data['wpinv_country'] ); |
|
| 357 | - $state = sanitize_text_field( $data['wpinv_state'] ); |
|
| 348 | + $first_name = sanitize_text_field($data['wpinv_first_name']); |
|
| 349 | + $last_name = sanitize_text_field($data['wpinv_last_name']); |
|
| 350 | + $company = sanitize_text_field($data['wpinv_company']); |
|
| 351 | + $vat_number = sanitize_text_field($data['wpinv_vat_number']); |
|
| 352 | + $phone = sanitize_text_field($data['wpinv_phone']); |
|
| 353 | + $address = sanitize_text_field($data['wpinv_address']); |
|
| 354 | + $city = sanitize_text_field($data['wpinv_city']); |
|
| 355 | + $zip = sanitize_text_field($data['wpinv_zip']); |
|
| 356 | + $country = sanitize_text_field($data['wpinv_country']); |
|
| 357 | + $state = sanitize_text_field($data['wpinv_state']); |
|
| 358 | 358 | |
| 359 | 359 | // Details |
| 360 | - $status = sanitize_text_field( $data['wpinv_status'] ); |
|
| 361 | - $old_status = !empty( $data['original_post_status'] ) ? sanitize_text_field( $data['original_post_status'] ) : $status; |
|
| 362 | - $number = sanitize_text_field( $data['wpinv_number'] ); |
|
| 363 | - $due_date = isset( $data['wpinv_due_date'] ) ? sanitize_text_field( $data['wpinv_due_date'] ) : ''; |
|
| 360 | + $status = sanitize_text_field($data['wpinv_status']); |
|
| 361 | + $old_status = !empty($data['original_post_status']) ? sanitize_text_field($data['original_post_status']) : $status; |
|
| 362 | + $number = sanitize_text_field($data['wpinv_number']); |
|
| 363 | + $due_date = isset($data['wpinv_due_date']) ? sanitize_text_field($data['wpinv_due_date']) : ''; |
|
| 364 | 364 | //$discounts = sanitize_text_field( $data['wpinv_discounts'] ); |
| 365 | 365 | //$discount = sanitize_text_field( $data['wpinv_discount'] ); |
| 366 | 366 | |
| 367 | - $ip = $invoice->get_ip() ? $invoice->get_ip() : wpinv_get_ip(); |
|
| 367 | + $ip = $invoice->get_ip() ? $invoice->get_ip() : wpinv_get_ip(); |
|
| 368 | 368 | |
| 369 | - $invoice->set( 'due_date', $due_date ); |
|
| 370 | - $invoice->set( 'first_name', $first_name ); |
|
| 371 | - $invoice->set( 'last_name', $last_name ); |
|
| 372 | - $invoice->set( 'company', $company ); |
|
| 373 | - $invoice->set( 'vat_number', $vat_number ); |
|
| 374 | - $invoice->set( 'phone', $phone ); |
|
| 375 | - $invoice->set( 'address', $address ); |
|
| 376 | - $invoice->set( 'city', $city ); |
|
| 377 | - $invoice->set( 'zip', $zip ); |
|
| 378 | - $invoice->set( 'country', $country ); |
|
| 379 | - $invoice->set( 'state', $state ); |
|
| 380 | - $invoice->set( 'status', $status ); |
|
| 369 | + $invoice->set('due_date', $due_date); |
|
| 370 | + $invoice->set('first_name', $first_name); |
|
| 371 | + $invoice->set('last_name', $last_name); |
|
| 372 | + $invoice->set('company', $company); |
|
| 373 | + $invoice->set('vat_number', $vat_number); |
|
| 374 | + $invoice->set('phone', $phone); |
|
| 375 | + $invoice->set('address', $address); |
|
| 376 | + $invoice->set('city', $city); |
|
| 377 | + $invoice->set('zip', $zip); |
|
| 378 | + $invoice->set('country', $country); |
|
| 379 | + $invoice->set('state', $state); |
|
| 380 | + $invoice->set('status', $status); |
|
| 381 | 381 | //$invoice->set( 'number', $number ); |
| 382 | 382 | //$invoice->set( 'discounts', $discounts ); |
| 383 | 383 | //$invoice->set( 'discount', $discount ); |
| 384 | - $invoice->set( 'ip', $ip ); |
|
| 384 | + $invoice->set('ip', $ip); |
|
| 385 | 385 | $invoice->old_status = $_POST['original_post_status']; |
| 386 | 386 | $invoice->currency = wpinv_get_currency(); |
| 387 | - if ( !empty( $data['wpinv_gateway'] ) ) { |
|
| 388 | - $invoice->set( 'gateway', sanitize_text_field( $data['wpinv_gateway'] ) ); |
|
| 387 | + if (!empty($data['wpinv_gateway'])) { |
|
| 388 | + $invoice->set('gateway', sanitize_text_field($data['wpinv_gateway'])); |
|
| 389 | 389 | } |
| 390 | 390 | $saved = $invoice->save(); |
| 391 | 391 | |
| 392 | 392 | // Check for payment notes |
| 393 | - if ( !empty( $data['invoice_note'] ) ) { |
|
| 394 | - $note = wp_kses( $data['invoice_note'], array() ); |
|
| 395 | - $note_type = sanitize_text_field( $data['invoice_note_type'] ); |
|
| 393 | + if (!empty($data['invoice_note'])) { |
|
| 394 | + $note = wp_kses($data['invoice_note'], array()); |
|
| 395 | + $note_type = sanitize_text_field($data['invoice_note_type']); |
|
| 396 | 396 | $is_customer_note = $note_type == 'customer' ? 1 : 0; |
| 397 | 397 | |
| 398 | - wpinv_insert_payment_note( $invoice->ID, $note, $is_customer_note ); |
|
| 398 | + wpinv_insert_payment_note($invoice->ID, $note, $is_customer_note); |
|
| 399 | 399 | } |
| 400 | 400 | |
| 401 | 401 | // Update user address if empty. |
| 402 | - if ( $saved && !empty( $invoice ) ) { |
|
| 403 | - if ( $user_id = $invoice->get_user_id() ) { |
|
| 404 | - $user_address = wpinv_get_user_address( $user_id, false ); |
|
| 402 | + if ($saved && !empty($invoice)) { |
|
| 403 | + if ($user_id = $invoice->get_user_id()) { |
|
| 404 | + $user_address = wpinv_get_user_address($user_id, false); |
|
| 405 | 405 | |
| 406 | 406 | if (empty($user_address['first_name'])) { |
| 407 | - update_user_meta( $user_id, '_wpinv_first_name', $first_name ); |
|
| 408 | - update_user_meta( $user_id, '_wpinv_last_name', $last_name ); |
|
| 407 | + update_user_meta($user_id, '_wpinv_first_name', $first_name); |
|
| 408 | + update_user_meta($user_id, '_wpinv_last_name', $last_name); |
|
| 409 | 409 | } else if (empty($user_address['last_name']) && $user_address['first_name'] == $first_name) { |
| 410 | - update_user_meta( $user_id, '_wpinv_last_name', $last_name ); |
|
| 410 | + update_user_meta($user_id, '_wpinv_last_name', $last_name); |
|
| 411 | 411 | } |
| 412 | 412 | |
| 413 | 413 | if (empty($user_address['address']) || empty($user_address['city']) || empty($user_address['state']) || empty($user_address['country'])) { |
| 414 | - update_user_meta( $user_id, '_wpinv_address', $address ); |
|
| 415 | - update_user_meta( $user_id, '_wpinv_city', $city ); |
|
| 416 | - update_user_meta( $user_id, '_wpinv_state', $state ); |
|
| 417 | - update_user_meta( $user_id, '_wpinv_country', $country ); |
|
| 418 | - update_user_meta( $user_id, '_wpinv_zip', $zip ); |
|
| 419 | - update_user_meta( $user_id, '_wpinv_phone', $phone ); |
|
| 414 | + update_user_meta($user_id, '_wpinv_address', $address); |
|
| 415 | + update_user_meta($user_id, '_wpinv_city', $city); |
|
| 416 | + update_user_meta($user_id, '_wpinv_state', $state); |
|
| 417 | + update_user_meta($user_id, '_wpinv_country', $country); |
|
| 418 | + update_user_meta($user_id, '_wpinv_zip', $zip); |
|
| 419 | + update_user_meta($user_id, '_wpinv_phone', $phone); |
|
| 420 | 420 | } |
| 421 | 421 | } |
| 422 | 422 | |
| 423 | - do_action( 'wpinv_invoice_metabox_saved', $invoice ); |
|
| 423 | + do_action('wpinv_invoice_metabox_saved', $invoice); |
|
| 424 | 424 | } |
| 425 | 425 | |
| 426 | 426 | return $saved; |