1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143:
<?php
namespace VSP\Helper;
defined( 'ABSPATH' ) || exit;
class Price_Calculation {
public static function types() {
return apply_filters( 'vsp/price_calculation/types', array(
'fixed' => esc_html__( 'Fixed', 'vsp-framework' ),
'percentage' => esc_html__( 'Percentage (%)', 'vsp-framework' ),
) );
}
public static function operators() {
return apply_filters( 'vsp/price_calculation/operators', array(
'add' => esc_html__( 'Add (+)', 'vsp-framework' ),
'sub' => esc_html__( 'Subtract (-)', 'vsp-framework' ),
) );
}
public static function is_operator_add( $type ) {
return ( in_array( strtolower( $type ), array( 'add', '+' ), true ) );
}
public static function is_operator_sub( $type ) {
return ( in_array( strtolower( $type ), array( 'sub', '-' ), true ) );
}
public static function fixed( $existing_price, $new_price, $operator ) {
if ( self::is_operator_add( $operator ) ) {
return $existing_price + $new_price;
} elseif ( self::is_operator_sub( $operator ) ) {
return $existing_price - $new_price;
}
return false;
}
public static function percentage( $existing_price, $new_price, $operator ) {
$price = $new_price;
if ( self::is_operator_add( $operator ) ) {
$price = $existing_price + ( $existing_price * ( $new_price / 100 ) );
} elseif ( self::is_operator_sub( $operator ) ) {
$price = $existing_price - ( $existing_price * ( $new_price / 100 ) );
}
return (float) $price;
}
public static function get( $existing_price, $new_price, $operator, $rule, $force_update ) {
if ( empty( $existing_price ) ) {
if ( ! empty( $force_update ) && in_array( $force_update, array( true, 'yes', 'on', 1, '1' ), true ) ) {
return $new_price;
}
return $existing_price;
}
$price = $new_price;
switch ( $rule ) {
case 'fixed':
$price = static::fixed( $existing_price, $new_price, $operator );
break;
case 'percentage':
$price = static::percentage( $existing_price, $new_price, $operator );
break;
default:
$types = array_keys( self::types() );
if ( in_array( $rule, $types, true ) ) {
$price = apply_filters( 'vsp/price_calculation/' . $rule, $existing_price, $new_price, $operator );
}
break;
}
return wc_format_decimal( $price );
}
}