@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // Exit if accessed directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 3 | +if (!defined('ABSPATH')) exit; |
|
| 4 | 4 | |
| 5 | 5 | class WPInv_Item { |
| 6 | 6 | public $ID = 0; |
@@ -34,26 +34,26 @@ discard block |
||
| 34 | 34 | public $filter; |
| 35 | 35 | |
| 36 | 36 | |
| 37 | - public function __construct( $_id = false, $_args = array() ) { |
|
| 38 | - $item = WP_Post::get_instance( $_id ); |
|
| 39 | - return $this->setup_item( $item ); |
|
| 37 | + public function __construct($_id = false, $_args = array()) { |
|
| 38 | + $item = WP_Post::get_instance($_id); |
|
| 39 | + return $this->setup_item($item); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - private function setup_item( $item ) { |
|
| 43 | - if( ! is_object( $item ) ) { |
|
| 42 | + private function setup_item($item) { |
|
| 43 | + if (!is_object($item)) { |
|
| 44 | 44 | return false; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - if( ! is_a( $item, 'WP_Post' ) ) { |
|
| 47 | + if (!is_a($item, 'WP_Post')) { |
|
| 48 | 48 | return false; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - if( 'wpi_item' !== $item->post_type ) { |
|
| 51 | + if ('wpi_item' !== $item->post_type) { |
|
| 52 | 52 | return false; |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - foreach ( $item as $key => $value ) { |
|
| 56 | - switch ( $key ) { |
|
| 55 | + foreach ($item as $key => $value) { |
|
| 56 | + switch ($key) { |
|
| 57 | 57 | default: |
| 58 | 58 | $this->$key = $value; |
| 59 | 59 | break; |
@@ -63,76 +63,76 @@ discard block |
||
| 63 | 63 | return true; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - public function __get( $key ) { |
|
| 67 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
| 68 | - return call_user_func( array( $this, 'get_' . $key ) ); |
|
| 66 | + public function __get($key) { |
|
| 67 | + if (method_exists($this, 'get_' . $key)) { |
|
| 68 | + return call_user_func(array($this, 'get_' . $key)); |
|
| 69 | 69 | } else { |
| 70 | - return new WP_Error( 'wpinv-item-invalid-property', sprintf( __( 'Can\'t get property %s', 'invoicing' ), $key ) ); |
|
| 70 | + return new WP_Error('wpinv-item-invalid-property', sprintf(__('Can\'t get property %s', 'invoicing'), $key)); |
|
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - public function create( $data = array(), $wp_error = false ) { |
|
| 75 | - if ( $this->ID != 0 ) { |
|
| 74 | + public function create($data = array(), $wp_error = false) { |
|
| 75 | + if ($this->ID != 0) { |
|
| 76 | 76 | return false; |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | $defaults = array( |
| 80 | 80 | 'post_type' => 'wpi_item', |
| 81 | 81 | 'post_status' => 'draft', |
| 82 | - 'post_title' => __( 'New Invoice Item', 'invoicing' ) |
|
| 82 | + 'post_title' => __('New Invoice Item', 'invoicing') |
|
| 83 | 83 | ); |
| 84 | 84 | |
| 85 | - $args = wp_parse_args( $data, $defaults ); |
|
| 85 | + $args = wp_parse_args($data, $defaults); |
|
| 86 | 86 | |
| 87 | - do_action( 'wpinv_item_pre_create', $args ); |
|
| 87 | + do_action('wpinv_item_pre_create', $args); |
|
| 88 | 88 | |
| 89 | - $id = wp_insert_post( $args, $wp_error ); |
|
| 89 | + $id = wp_insert_post($args, $wp_error); |
|
| 90 | 90 | if ($wp_error && is_wp_error($id)) { |
| 91 | 91 | return $id; |
| 92 | 92 | } |
| 93 | - if ( !$id ) { |
|
| 93 | + if (!$id) { |
|
| 94 | 94 | return false; |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - $item = WP_Post::get_instance( $id ); |
|
| 97 | + $item = WP_Post::get_instance($id); |
|
| 98 | 98 | |
| 99 | 99 | if (!empty($item) && !empty($data['meta'])) { |
| 100 | 100 | $this->ID = $item->ID; |
| 101 | 101 | $this->save_metas($data['meta']); |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - do_action( 'wpinv_item_create', $id, $args ); |
|
| 104 | + do_action('wpinv_item_create', $id, $args); |
|
| 105 | 105 | |
| 106 | - return $this->setup_item( $item ); |
|
| 106 | + return $this->setup_item($item); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - public function update( $data = array(), $wp_error = false ) { |
|
| 110 | - if ( !$this->ID > 0 ) { |
|
| 109 | + public function update($data = array(), $wp_error = false) { |
|
| 110 | + if (!$this->ID > 0) { |
|
| 111 | 111 | return false; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | $data['ID'] = $this->ID; |
| 115 | 115 | |
| 116 | - do_action( 'wpinv_item_pre_update', $data ); |
|
| 116 | + do_action('wpinv_item_pre_update', $data); |
|
| 117 | 117 | |
| 118 | - $id = wp_update_post( $data, $wp_error ); |
|
| 118 | + $id = wp_update_post($data, $wp_error); |
|
| 119 | 119 | if ($wp_error && is_wp_error($id)) { |
| 120 | 120 | return $id; |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - if ( !$id ) { |
|
| 123 | + if (!$id) { |
|
| 124 | 124 | return false; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - $item = WP_Post::get_instance( $id ); |
|
| 127 | + $item = WP_Post::get_instance($id); |
|
| 128 | 128 | if (!empty($item) && !empty($data['meta'])) { |
| 129 | 129 | $this->ID = $item->ID; |
| 130 | 130 | $this->save_metas($data['meta']); |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - do_action( 'wpinv_item_update', $id, $data ); |
|
| 133 | + do_action('wpinv_item_update', $id, $data); |
|
| 134 | 134 | |
| 135 | - return $this->setup_item( $item ); |
|
| 135 | + return $this->setup_item($item); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | public function get_ID() { |
@@ -140,95 +140,95 @@ discard block |
||
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | public function get_name() { |
| 143 | - return get_the_title( $this->ID ); |
|
| 143 | + return get_the_title($this->ID); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | public function get_summary() { |
| 147 | - return get_the_excerpt( $this->ID ); |
|
| 147 | + return get_the_excerpt($this->ID); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | public function get_price() { |
| 151 | - if ( ! isset( $this->price ) ) { |
|
| 152 | - $this->price = get_post_meta( $this->ID, '_wpinv_price', true ); |
|
| 151 | + if (!isset($this->price)) { |
|
| 152 | + $this->price = get_post_meta($this->ID, '_wpinv_price', true); |
|
| 153 | 153 | |
| 154 | - if ( $this->price ) { |
|
| 155 | - $this->price = wpinv_sanitize_amount( $this->price ); |
|
| 154 | + if ($this->price) { |
|
| 155 | + $this->price = wpinv_sanitize_amount($this->price); |
|
| 156 | 156 | } else { |
| 157 | 157 | $this->price = 0; |
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - return apply_filters( 'wpinv_get_item_price', $this->price, $this->ID ); |
|
| 161 | + return apply_filters('wpinv_get_item_price', $this->price, $this->ID); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | public function get_the_price() { |
| 165 | - $item_price = wpinv_price( wpinv_format_amount( $this->price ) ); |
|
| 165 | + $item_price = wpinv_price(wpinv_format_amount($this->price)); |
|
| 166 | 166 | |
| 167 | - return apply_filters( 'wpinv_get_the_item_price', $item_price, $this->ID ); |
|
| 167 | + return apply_filters('wpinv_get_the_item_price', $item_price, $this->ID); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | public function get_vat_rule() { |
| 171 | 171 | global $wpinv_euvat; |
| 172 | 172 | |
| 173 | - if( !isset( $this->vat_rule ) ) { |
|
| 174 | - $this->vat_rule = get_post_meta( $this->ID, '_wpinv_vat_rule', true ); |
|
| 173 | + if (!isset($this->vat_rule)) { |
|
| 174 | + $this->vat_rule = get_post_meta($this->ID, '_wpinv_vat_rule', true); |
|
| 175 | 175 | |
| 176 | - if ( empty( $this->vat_rule ) ) { |
|
| 176 | + if (empty($this->vat_rule)) { |
|
| 177 | 177 | $this->vat_rule = $wpinv_euvat->allow_vat_rules() ? 'digital' : 'physical'; |
| 178 | 178 | } |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | - return apply_filters( 'wpinv_get_item_vat_rule', $this->vat_rule, $this->ID ); |
|
| 181 | + return apply_filters('wpinv_get_item_vat_rule', $this->vat_rule, $this->ID); |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | 184 | public function get_vat_class() { |
| 185 | - if( !isset( $this->vat_class ) ) { |
|
| 186 | - $this->vat_class = get_post_meta( $this->ID, '_wpinv_vat_class', true ); |
|
| 185 | + if (!isset($this->vat_class)) { |
|
| 186 | + $this->vat_class = get_post_meta($this->ID, '_wpinv_vat_class', true); |
|
| 187 | 187 | |
| 188 | - if ( empty( $this->vat_class ) ) { |
|
| 188 | + if (empty($this->vat_class)) { |
|
| 189 | 189 | $this->vat_class = '_standard'; |
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - return apply_filters( 'wpinv_get_item_vat_class', $this->vat_class, $this->ID ); |
|
| 193 | + return apply_filters('wpinv_get_item_vat_class', $this->vat_class, $this->ID); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | public function get_cpt_singular_name() { |
| 197 | - if( ! isset( $this->cpt_singular_name ) ) { |
|
| 198 | - $this->cpt_singular_name = get_post_meta( $this->ID, '_wpinv_cpt_singular_name', true ); |
|
| 197 | + if (!isset($this->cpt_singular_name)) { |
|
| 198 | + $this->cpt_singular_name = get_post_meta($this->ID, '_wpinv_cpt_singular_name', true); |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | - return apply_filters( 'wpinv_item_get_cpt_singular_name', $this->cpt_singular_name, $this->ID ); |
|
| 201 | + return apply_filters('wpinv_item_get_cpt_singular_name', $this->cpt_singular_name, $this->ID); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | public function get_type() { |
| 205 | - if( ! isset( $this->type ) ) { |
|
| 206 | - $this->type = get_post_meta( $this->ID, '_wpinv_type', true ); |
|
| 205 | + if (!isset($this->type)) { |
|
| 206 | + $this->type = get_post_meta($this->ID, '_wpinv_type', true); |
|
| 207 | 207 | |
| 208 | - if ( empty( $this->type ) ) { |
|
| 208 | + if (empty($this->type)) { |
|
| 209 | 209 | $this->type = 'custom'; |
| 210 | 210 | } |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - return apply_filters( 'wpinv_get_item_type', $this->type, $this->ID ); |
|
| 213 | + return apply_filters('wpinv_get_item_type', $this->type, $this->ID); |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | 216 | public function is_recurring() { |
| 217 | - $is_recurring = get_post_meta( $this->ID, '_wpinv_is_recurring', true ); |
|
| 217 | + $is_recurring = get_post_meta($this->ID, '_wpinv_is_recurring', true); |
|
| 218 | 218 | |
| 219 | - return (bool)apply_filters( 'wpinv_is_recurring_item', $is_recurring, $this->ID ); |
|
| 219 | + return (bool)apply_filters('wpinv_is_recurring_item', $is_recurring, $this->ID); |
|
| 220 | 220 | |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - public function get_recurring_period( $full = false ) { |
|
| 224 | - $period = get_post_meta( $this->ID, '_wpinv_recurring_period', true ); |
|
| 223 | + public function get_recurring_period($full = false) { |
|
| 224 | + $period = get_post_meta($this->ID, '_wpinv_recurring_period', true); |
|
| 225 | 225 | |
| 226 | - if ( !in_array( $period, array( 'D', 'W', 'M', 'Y' ) ) ) { |
|
| 226 | + if (!in_array($period, array('D', 'W', 'M', 'Y'))) { |
|
| 227 | 227 | $period = 'D'; |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | - if ( $full ) { |
|
| 231 | - switch( $period ) { |
|
| 230 | + if ($full) { |
|
| 231 | + switch ($period) { |
|
| 232 | 232 | case 'D': |
| 233 | 233 | $period = 'day'; |
| 234 | 234 | break; |
@@ -244,45 +244,45 @@ discard block |
||
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - return apply_filters( 'wpinv_item_recurring_period', $period, $full, $this->ID ); |
|
| 247 | + return apply_filters('wpinv_item_recurring_period', $period, $full, $this->ID); |
|
| 248 | 248 | |
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | public function get_recurring_interval() { |
| 252 | - $interval = (int)get_post_meta( $this->ID, '_wpinv_recurring_interval', true ); |
|
| 252 | + $interval = (int)get_post_meta($this->ID, '_wpinv_recurring_interval', true); |
|
| 253 | 253 | |
| 254 | - if ( !$interval > 0 ) { |
|
| 254 | + if (!$interval > 0) { |
|
| 255 | 255 | $interval = 1; |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - return apply_filters( 'wpinv_item_recurring_interval', $interval, $this->ID ); |
|
| 258 | + return apply_filters('wpinv_item_recurring_interval', $interval, $this->ID); |
|
| 259 | 259 | |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | public function get_recurring_limit() { |
| 263 | - $limit = get_post_meta( $this->ID, '_wpinv_recurring_limit', true ); |
|
| 263 | + $limit = get_post_meta($this->ID, '_wpinv_recurring_limit', true); |
|
| 264 | 264 | |
| 265 | - return (int)apply_filters( 'wpinv_item_recurring_limit', $limit, $this->ID ); |
|
| 265 | + return (int)apply_filters('wpinv_item_recurring_limit', $limit, $this->ID); |
|
| 266 | 266 | |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | public function has_free_trial() { |
| 270 | - $free_trial = get_post_meta( $this->ID, '_wpinv_free_trial', true ); |
|
| 271 | - $free_trial = $this->is_recurring() && !empty( $free_trial ) ? true : false; |
|
| 270 | + $free_trial = get_post_meta($this->ID, '_wpinv_free_trial', true); |
|
| 271 | + $free_trial = $this->is_recurring() && !empty($free_trial) ? true : false; |
|
| 272 | 272 | |
| 273 | - return (bool)apply_filters( 'wpinv_item_has_free_trial', $free_trial, $this->ID ); |
|
| 273 | + return (bool)apply_filters('wpinv_item_has_free_trial', $free_trial, $this->ID); |
|
| 274 | 274 | |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | - public function get_trial_period( $full = false ) { |
|
| 278 | - $period = get_post_meta( $this->ID, '_wpinv_trial_period', true ); |
|
| 277 | + public function get_trial_period($full = false) { |
|
| 278 | + $period = get_post_meta($this->ID, '_wpinv_trial_period', true); |
|
| 279 | 279 | |
| 280 | - if ( !in_array( $period, array( 'D', 'W', 'M', 'Y' ) ) ) { |
|
| 280 | + if (!in_array($period, array('D', 'W', 'M', 'Y'))) { |
|
| 281 | 281 | $period = 'D'; |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | - if ( $full ) { |
|
| 285 | - switch( $period ) { |
|
| 284 | + if ($full) { |
|
| 285 | + switch ($period) { |
|
| 286 | 286 | case 'D': |
| 287 | 287 | $period = 'day'; |
| 288 | 288 | break; |
@@ -298,47 +298,47 @@ discard block |
||
| 298 | 298 | } |
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - return apply_filters( 'wpinv_item_trial_period', $period, $full, $this->ID ); |
|
| 301 | + return apply_filters('wpinv_item_trial_period', $period, $full, $this->ID); |
|
| 302 | 302 | |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | 305 | public function get_trial_interval() { |
| 306 | - $interval = absint( get_post_meta( $this->ID, '_wpinv_trial_interval', true ) ); |
|
| 306 | + $interval = absint(get_post_meta($this->ID, '_wpinv_trial_interval', true)); |
|
| 307 | 307 | |
| 308 | - if ( !$interval > 0 ) { |
|
| 308 | + if (!$interval > 0) { |
|
| 309 | 309 | $interval = 1; |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | - return apply_filters( 'wpinv_item_trial_interval', $interval, $this->ID ); |
|
| 312 | + return apply_filters('wpinv_item_trial_interval', $interval, $this->ID); |
|
| 313 | 313 | |
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | public function is_free() { |
| 317 | 317 | $is_free = false; |
| 318 | 318 | |
| 319 | - $price = get_post_meta( $this->ID, '_wpinv_price', true ); |
|
| 319 | + $price = get_post_meta($this->ID, '_wpinv_price', true); |
|
| 320 | 320 | |
| 321 | - if ( (float)$price == 0 ) { |
|
| 321 | + if ((float)$price == 0) { |
|
| 322 | 322 | $is_free = true; |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - return (bool) apply_filters( 'wpinv_is_free_item', $is_free, $this->ID ); |
|
| 325 | + return (bool)apply_filters('wpinv_is_free_item', $is_free, $this->ID); |
|
| 326 | 326 | |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | public function is_package() { |
| 330 | 330 | $is_package = $this->get_type() == 'package' ? true : false; |
| 331 | 331 | |
| 332 | - return (bool) apply_filters( 'wpinv_is_package_item', $is_package, $this->ID ); |
|
| 332 | + return (bool)apply_filters('wpinv_is_package_item', $is_package, $this->ID); |
|
| 333 | 333 | |
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - public function save_metas( $metas = array() ) { |
|
| 337 | - if ( empty( $metas ) ) { |
|
| 336 | + public function save_metas($metas = array()) { |
|
| 337 | + if (empty($metas)) { |
|
| 338 | 338 | return false; |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | - foreach ( $metas as $meta_key => $meta_value ) { |
|
| 341 | + foreach ($metas as $meta_key => $meta_value) { |
|
| 342 | 342 | $meta_key = strpos($meta_key, '_wpinv_') !== 0 ? '_wpinv_' . $meta_key : $meta_key; |
| 343 | 343 | |
| 344 | 344 | $this->update_meta($meta_key, $meta_value); |
@@ -347,66 +347,66 @@ discard block |
||
| 347 | 347 | return true; |
| 348 | 348 | } |
| 349 | 349 | |
| 350 | - public function update_meta( $meta_key = '', $meta_value = '', $prev_value = '' ) { |
|
| 351 | - if ( empty( $meta_key ) ) { |
|
| 350 | + public function update_meta($meta_key = '', $meta_value = '', $prev_value = '') { |
|
| 351 | + if (empty($meta_key)) { |
|
| 352 | 352 | return false; |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - $meta_value = apply_filters( 'wpinv_update_item_meta_' . $meta_key, $meta_value, $this->ID ); |
|
| 355 | + $meta_value = apply_filters('wpinv_update_item_meta_' . $meta_key, $meta_value, $this->ID); |
|
| 356 | 356 | |
| 357 | - return update_post_meta( $this->ID, $meta_key, $meta_value, $prev_value ); |
|
| 357 | + return update_post_meta($this->ID, $meta_key, $meta_value, $prev_value); |
|
| 358 | 358 | } |
| 359 | 359 | |
| 360 | - public function get_fees( $type = 'fee', $item_id = 0 ) { |
|
| 360 | + public function get_fees($type = 'fee', $item_id = 0) { |
|
| 361 | 361 | global $wpi_session; |
| 362 | 362 | |
| 363 | - $fees = $wpi_session->get( 'wpi_cart_fees' ); |
|
| 363 | + $fees = $wpi_session->get('wpi_cart_fees'); |
|
| 364 | 364 | |
| 365 | - if ( ! wpinv_get_cart_contents() ) { |
|
| 365 | + if (!wpinv_get_cart_contents()) { |
|
| 366 | 366 | // We can only get item type fees when the cart is empty |
| 367 | 367 | $type = 'custom'; |
| 368 | 368 | } |
| 369 | 369 | |
| 370 | - if ( ! empty( $fees ) && ! empty( $type ) && 'all' !== $type ) { |
|
| 371 | - foreach( $fees as $key => $fee ) { |
|
| 372 | - if( ! empty( $fee['type'] ) && $type != $fee['type'] ) { |
|
| 373 | - unset( $fees[ $key ] ); |
|
| 370 | + if (!empty($fees) && !empty($type) && 'all' !== $type) { |
|
| 371 | + foreach ($fees as $key => $fee) { |
|
| 372 | + if (!empty($fee['type']) && $type != $fee['type']) { |
|
| 373 | + unset($fees[$key]); |
|
| 374 | 374 | } |
| 375 | 375 | } |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - if ( ! empty( $fees ) && ! empty( $item_id ) ) { |
|
| 378 | + if (!empty($fees) && !empty($item_id)) { |
|
| 379 | 379 | // Remove fees that don't belong to the specified Item |
| 380 | - foreach ( $fees as $key => $fee ) { |
|
| 381 | - if ( (int) $item_id !== (int)$fee['item_id'] ) { |
|
| 382 | - unset( $fees[ $key ] ); |
|
| 380 | + foreach ($fees as $key => $fee) { |
|
| 381 | + if ((int)$item_id !== (int)$fee['item_id']) { |
|
| 382 | + unset($fees[$key]); |
|
| 383 | 383 | } |
| 384 | 384 | } |
| 385 | 385 | } |
| 386 | 386 | |
| 387 | - if ( ! empty( $fees ) ) { |
|
| 387 | + if (!empty($fees)) { |
|
| 388 | 388 | // Remove fees that belong to a specific item but are not in the cart |
| 389 | - foreach( $fees as $key => $fee ) { |
|
| 390 | - if( empty( $fee['item_id'] ) ) { |
|
| 389 | + foreach ($fees as $key => $fee) { |
|
| 390 | + if (empty($fee['item_id'])) { |
|
| 391 | 391 | continue; |
| 392 | 392 | } |
| 393 | 393 | |
| 394 | - if ( !wpinv_item_in_cart( $fee['item_id'] ) ) { |
|
| 395 | - unset( $fees[ $key ] ); |
|
| 394 | + if (!wpinv_item_in_cart($fee['item_id'])) { |
|
| 395 | + unset($fees[$key]); |
|
| 396 | 396 | } |
| 397 | 397 | } |
| 398 | 398 | } |
| 399 | 399 | |
| 400 | - return ! empty( $fees ) ? $fees : array(); |
|
| 400 | + return !empty($fees) ? $fees : array(); |
|
| 401 | 401 | } |
| 402 | 402 | |
| 403 | 403 | public function can_purchase() { |
| 404 | 404 | $can_purchase = true; |
| 405 | 405 | |
| 406 | - if ( !current_user_can( 'edit_post', $this->ID ) && $this->post_status != 'publish' ) { |
|
| 406 | + if (!current_user_can('edit_post', $this->ID) && $this->post_status != 'publish') { |
|
| 407 | 407 | $can_purchase = false; |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | - return (bool)apply_filters( 'wpinv_can_purchase_item', $can_purchase, $this ); |
|
| 410 | + return (bool)apply_filters('wpinv_can_purchase_item', $can_purchase, $this); |
|
| 411 | 411 | } |
| 412 | 412 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | public function __construct($login, $transkey, $test = self::USE_PRODUCTION_SERVER) |
| 52 | 52 | { |
| 53 | - $login = trim($login); |
|
| 53 | + $login = trim($login); |
|
| 54 | 54 | $transkey = trim($transkey); |
| 55 | 55 | if (empty($login) || empty($transkey)) |
| 56 | 56 | { |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | $this->login = trim($login); |
| 61 | 61 | $this->transkey = trim($transkey); |
| 62 | - $test = (bool) $test; |
|
| 62 | + $test = (bool)$test; |
|
| 63 | 63 | |
| 64 | 64 | $subdomain = ($test) ? 'apitest' : 'api'; |
| 65 | 65 | $this->url = 'https://' . $subdomain . '.authorize.net/xml/v1/request.api'; |
@@ -73,14 +73,14 @@ discard block |
||
| 73 | 73 | private function removeResponseXMLNS($input) |
| 74 | 74 | { |
| 75 | 75 | // why remove them one at a time? all three aren't consistantly used in the response |
| 76 | - $input = str_replace(' xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"','',$input); |
|
| 77 | - $input = str_replace(' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"','',$input); |
|
| 78 | - return str_replace(' xmlns:xsd="http://www.w3.org/2001/XMLSchema"','',$input); |
|
| 76 | + $input = str_replace(' xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"', '', $input); |
|
| 77 | + $input = str_replace(' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"', '', $input); |
|
| 78 | + return str_replace(' xmlns:xsd="http://www.w3.org/2001/XMLSchema"', '', $input); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | public function __toString() |
| 82 | 82 | { |
| 83 | - $output = ''; |
|
| 83 | + $output = ''; |
|
| 84 | 84 | $output .= '<table summary="Authorize.Net Results" id="authnet">' . "\n"; |
| 85 | 85 | $output .= '<tr>' . "\n\t\t" . '<th colspan="2"><b>Class Parameters</b></th>' . "\n" . '</tr>' . "\n"; |
| 86 | 86 | $output .= '<tr>' . "\n\t\t" . '<td><b>API Login ID</b></td><td>' . $this->login . '</td>' . "\n" . '</tr>' . "\n"; |
@@ -159,9 +159,9 @@ discard block |
||
| 159 | 159 | { |
| 160 | 160 | if (is_array($value)) |
| 161 | 161 | { |
| 162 | - if(is_numeric($key)) |
|
| 162 | + if (is_numeric($key)) |
|
| 163 | 163 | { |
| 164 | - if($first === true) |
|
| 164 | + if ($first === true) |
|
| 165 | 165 | { |
| 166 | 166 | $xmlx = $xml; |
| 167 | 167 | $first = false; |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | curl_setopt($this->ch, CURLOPT_SSL_VERIFYHOST, 2); |
| 201 | 201 | curl_setopt($this->ch, CURLOPT_CAINFO, dirname(__FILE__) . '/ssl/cert.pem'); |
| 202 | 202 | |
| 203 | - if(($this->response = curl_exec($this->ch)) !== false) |
|
| 203 | + if (($this->response = curl_exec($this->ch)) !== false) |
|
| 204 | 204 | { |
| 205 | 205 | $this->response_xml = @new SimpleXMLElement($this->response); |
| 206 | 206 | |
@@ -77,19 +77,19 @@ discard block |
||
| 77 | 77 | * A list of all fields in the AIM API. |
| 78 | 78 | * Used to warn user if they try to set a field not offered in the API. |
| 79 | 79 | */ |
| 80 | - private $_all_aim_fields = array("address","allow_partial_auth","amount", |
|
| 81 | - "auth_code","authentication_indicator", "bank_aba_code","bank_acct_name", |
|
| 82 | - "bank_acct_num","bank_acct_type","bank_check_number","bank_name", |
|
| 83 | - "card_code","card_num","cardholder_authentication_value","city","company", |
|
| 84 | - "country","cust_id","customer_ip","delim_char","delim_data","description", |
|
| 85 | - "duplicate_window","duty","echeck_type","email","email_customer", |
|
| 86 | - "encap_char","exp_date","fax","first_name","footer_email_receipt", |
|
| 87 | - "freight","header_email_receipt","invoice_num","last_name","line_item", |
|
| 88 | - "login","method","phone","po_num","recurring_billing","relay_response", |
|
| 89 | - "ship_to_address","ship_to_city","ship_to_company","ship_to_country", |
|
| 90 | - "ship_to_first_name","ship_to_last_name","ship_to_state","ship_to_zip", |
|
| 91 | - "split_tender_id","state","tax","tax_exempt","test_request","tran_key", |
|
| 92 | - "trans_id","type","version","zip" |
|
| 80 | + private $_all_aim_fields = array("address", "allow_partial_auth", "amount", |
|
| 81 | + "auth_code", "authentication_indicator", "bank_aba_code", "bank_acct_name", |
|
| 82 | + "bank_acct_num", "bank_acct_type", "bank_check_number", "bank_name", |
|
| 83 | + "card_code", "card_num", "cardholder_authentication_value", "city", "company", |
|
| 84 | + "country", "cust_id", "customer_ip", "delim_char", "delim_data", "description", |
|
| 85 | + "duplicate_window", "duty", "echeck_type", "email", "email_customer", |
|
| 86 | + "encap_char", "exp_date", "fax", "first_name", "footer_email_receipt", |
|
| 87 | + "freight", "header_email_receipt", "invoice_num", "last_name", "line_item", |
|
| 88 | + "login", "method", "phone", "po_num", "recurring_billing", "relay_response", |
|
| 89 | + "ship_to_address", "ship_to_city", "ship_to_company", "ship_to_country", |
|
| 90 | + "ship_to_first_name", "ship_to_last_name", "ship_to_state", "ship_to_zip", |
|
| 91 | + "split_tender_id", "state", "tax", "tax_exempt", "test_request", "tran_key", |
|
| 92 | + "trans_id", "type", "version", "zip" |
|
| 93 | 93 | ); |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | // Split Array |
| 404 | 404 | $this->response = $response; |
| 405 | 405 | if ($encap_char) { |
| 406 | - $this->_response_array = explode($encap_char.$delimiter.$encap_char, substr($response, 1, -1)); |
|
| 406 | + $this->_response_array = explode($encap_char . $delimiter . $encap_char, substr($response, 1, -1)); |
|
| 407 | 407 | } else { |
| 408 | 408 | $this->_response_array = explode($delimiter, $response); |
| 409 | 409 | } |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | $this->duty = $this->_response_array[33]; |
| 458 | 458 | $this->freight = $this->_response_array[34]; |
| 459 | 459 | $this->tax_exempt = $this->_response_array[35]; |
| 460 | - $this->purchase_order_number= $this->_response_array[36]; |
|
| 460 | + $this->purchase_order_number = $this->_response_array[36]; |
|
| 461 | 461 | $this->md5_hash = $this->_response_array[37]; |
| 462 | 462 | $this->card_code_response = $this->_response_array[38]; |
| 463 | 463 | $this->cavv_response = $this->_response_array[39]; |
@@ -484,10 +484,10 @@ discard block |
||
| 484 | 484 | |
| 485 | 485 | if ($this->error) { |
| 486 | 486 | $this->error_message = "AuthorizeNet Error: |
| 487 | - Response Code: ".$this->response_code." |
|
| 488 | - Response Subcode: ".$this->response_subcode." |
|
| 489 | - Response Reason Code: ".$this->response_reason_code." |
|
| 490 | - Response Reason Text: ".$this->response_reason_text." |
|
| 487 | + Response Code: ".$this->response_code . " |
|
| 488 | + Response Subcode: ".$this->response_subcode . " |
|
| 489 | + Response Reason Code: ".$this->response_reason_code . " |
|
| 490 | + Response Reason Text: ".$this->response_reason_text . " |
|
| 491 | 491 | "; |
| 492 | 492 | } |
| 493 | 493 | } else { |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | curl_setopt($curl_request, CURLOPT_SSL_VERIFYPEER, false); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if (preg_match('/xml/',$post_url)) { |
|
| 99 | + if (preg_match('/xml/', $post_url)) { |
|
| 100 | 100 | curl_setopt($curl_request, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml")); |
| 101 | 101 | } |
| 102 | 102 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | $this->xml = @simplexml_load_string($response); |
| 30 | 30 | |
| 31 | 31 | // Remove namespaces for use with XPath. |
| 32 | - $this->xpath_xml = @simplexml_load_string(preg_replace('/ xmlns:xsi[^>]+/','',$response)); |
|
| 32 | + $this->xpath_xml = @simplexml_load_string(preg_replace('/ xmlns:xsi[^>]+/', '', $response)); |
|
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
@@ -116,12 +116,12 @@ discard block |
||
| 116 | 116 | { |
| 117 | 117 | $start = "<$elementName>"; |
| 118 | 118 | $end = "</$elementName>"; |
| 119 | - if (strpos($this->response,$start) === false || strpos($this->response,$end) === false) { |
|
| 119 | + if (strpos($this->response, $start) === false || strpos($this->response, $end) === false) { |
|
| 120 | 120 | return false; |
| 121 | 121 | } else { |
| 122 | - $start_position = strpos($this->response, $start)+strlen($start); |
|
| 122 | + $start_position = strpos($this->response, $start) + strlen($start); |
|
| 123 | 123 | $end_position = strpos($this->response, $end); |
| 124 | - return substr($this->response, $start_position, $end_position-$start_position); |
|
| 124 | + return substr($this->response, $start_position, $end_position - $start_position); |
|
| 125 | 125 | } |
| 126 | 126 | } |
| 127 | 127 | |
@@ -182,7 +182,7 @@ |
||
| 182 | 182 | $string = ""; |
| 183 | 183 | foreach ($array as $key => $value) { |
| 184 | 184 | if ($value) { |
| 185 | - $string .= '<input type="hidden" name="'.$key.'" value="'.$value.'">'; |
|
| 185 | + $string .= '<input type="hidden" name="' . $key . '" value="' . $value . '">'; |
|
| 186 | 186 | } |
| 187 | 187 | } |
| 188 | 188 | return $string; |
@@ -116,7 +116,7 @@ |
||
| 116 | 116 | */ |
| 117 | 117 | protected function _setPostString() |
| 118 | 118 | { |
| 119 | - $this->_post_string =<<<XML |
|
| 119 | + $this->_post_string = <<<XML |
|
| 120 | 120 | <?xml version="1.0" encoding="utf-8"?> |
| 121 | 121 | <ARB{$this->_request_type} xmlns= "AnetApi/xml/v1/schema/AnetApiSchema.xsd"> |
| 122 | 122 | <merchantAuthentication> |
@@ -309,10 +309,10 @@ discard block |
||
| 309 | 309 | { |
| 310 | 310 | $this->_validationMode = $validationMode; |
| 311 | 311 | $this->_constructXml("validateCustomerPaymentProfileRequest"); |
| 312 | - $this->_xml->addChild("customerProfileId",$customerProfileId); |
|
| 313 | - $this->_xml->addChild("customerPaymentProfileId",$customerPaymentProfileId); |
|
| 314 | - $this->_xml->addChild("customerShippingAddressId",$customerShippingAddressId); |
|
| 315 | - $this->_xml->addChild("cardCode",$cardCode); |
|
| 312 | + $this->_xml->addChild("customerProfileId", $customerProfileId); |
|
| 313 | + $this->_xml->addChild("customerPaymentProfileId", $customerPaymentProfileId); |
|
| 314 | + $this->_xml->addChild("customerShippingAddressId", $customerShippingAddressId); |
|
| 315 | + $this->_xml->addChild("cardCode", $cardCode); |
|
| 316 | 316 | return $this->_sendRequest(); |
| 317 | 317 | } |
| 318 | 318 | |
@@ -341,13 +341,13 @@ discard block |
||
| 341 | 341 | */ |
| 342 | 342 | protected function _setPostString() |
| 343 | 343 | { |
| 344 | - ($this->_validationMode != "none" ? $this->_xml->addChild('validationMode',$this->_validationMode) : ""); |
|
| 344 | + ($this->_validationMode != "none" ? $this->_xml->addChild('validationMode', $this->_validationMode) : ""); |
|
| 345 | 345 | $this->_post_string = $this->_xml->asXML(); |
| 346 | 346 | |
| 347 | 347 | // Add extraOptions CDATA |
| 348 | 348 | if ($this->_extraOptions) { |
| 349 | 349 | $this->_xml->addChild("extraOptions"); |
| 350 | - $this->_post_string = str_replace("<extraOptions></extraOptions>",'<extraOptions><![CDATA[' . $this->_extraOptions . ']]></extraOptions>', $this->_xml->asXML()); |
|
| 350 | + $this->_post_string = str_replace("<extraOptions></extraOptions>", '<extraOptions><![CDATA[' . $this->_extraOptions . ']]></extraOptions>', $this->_xml->asXML()); |
|
| 351 | 351 | $this->_extraOptions = false; |
| 352 | 352 | } |
| 353 | 353 | // Blank out our validation mode, so that we don't include it in calls that |
@@ -362,12 +362,12 @@ discard block |
||
| 362 | 362 | */ |
| 363 | 363 | private function _constructXml($request_type) |
| 364 | 364 | { |
| 365 | - $string = '<?xml version="1.0" encoding="utf-8"?><'.$request_type.' xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"></'.$request_type.'>'; |
|
| 365 | + $string = '<?xml version="1.0" encoding="utf-8"?><' . $request_type . ' xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"></' . $request_type . '>'; |
|
| 366 | 366 | $this->_xml = @new SimpleXMLElement($string); |
| 367 | 367 | $merchant = $this->_xml->addChild('merchantAuthentication'); |
| 368 | - $merchant->addChild('name',$this->_api_login); |
|
| 369 | - $merchant->addChild('transactionKey',$this->_transaction_key); |
|
| 370 | - ($this->_refId ? $this->_xml->addChild('refId',$this->_refId) : ""); |
|
| 368 | + $merchant->addChild('name', $this->_api_login); |
|
| 369 | + $merchant->addChild('transactionKey', $this->_transaction_key); |
|
| 370 | + ($this->_refId ? $this->_xml->addChild('refId', $this->_refId) : ""); |
|
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | /** |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | $this->_addObject($items, $item); |
| 388 | 388 | } |
| 389 | 389 | } else { |
| 390 | - $destination->addChild($key,$value); |
|
| 390 | + $destination->addChild($key, $value); |
|
| 391 | 391 | } |
| 392 | 392 | } elseif (is_object($value) && self::_notEmpty($value)) { |
| 393 | 393 | $dest = $destination->addChild($key); |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | |
| 117 | 117 | $this->xml = @simplexml_load_string($response); |
| 118 | 118 | // Set all fields |
| 119 | - $this->version = array_pop(array_slice(explode('"', $response), 1,1)); |
|
| 119 | + $this->version = array_pop(array_slice(explode('"', $response), 1, 1)); |
|
| 120 | 120 | $this->response_code = (string)$this->xml->ResponseCode; |
| 121 | 121 | |
| 122 | 122 | if ($this->response_code == 1) { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | // Split Array |
| 145 | 145 | $this->response = $response; |
| 146 | 146 | if ($encap_char) { |
| 147 | - $this->_response_array = explode($encap_char.$delimiter.$encap_char, substr($response, 1, -1)); |
|
| 147 | + $this->_response_array = explode($encap_char . $delimiter . $encap_char, substr($response, 1, -1)); |
|
| 148 | 148 | } else { |
| 149 | 149 | $this->_response_array = explode($delimiter, $response); |
| 150 | 150 | } |
@@ -190,9 +190,9 @@ discard block |
||
| 190 | 190 | |
| 191 | 191 | if ($this->error) { |
| 192 | 192 | $this->error_message = "AuthorizeNet Error: |
| 193 | - Response Code: ".$this->response_code." |
|
| 194 | - Response Reason Code: ".$this->response_reason_code." |
|
| 195 | - Response Reason Text: ".$this->response_reason_text." |
|
| 193 | + Response Code: ".$this->response_code . " |
|
| 194 | + Response Reason Code: ".$this->response_reason_code . " |
|
| 195 | + Response Reason Text: ".$this->response_reason_text . " |
|
| 196 | 196 | "; |
| 197 | 197 | } |
| 198 | 198 | |