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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
<?php
class DFW_Manage_Products {
public static function dfw_is_deposits_enabled( $product_id ){
$product = wc_get_product( $product_id );
if( ! $product ){
return false;
}
$setting = get_post_meta( $product_id, 'product_deposits_enabled', true);
if( empty( $setting ) ) {
$setting = get_option( 'default_deposits_enabled' );
if( 'optional' === $setting || 'force' === $setting ){
if( 'payment_plan' === self::dfw_get_deposit_type( $product_id ) && ! self::dfw_has_payment_plans( $product_id ) ) {
return false;
}
return true;
}
}
elseif( 'product_optional' === $setting || 'product_force' === $setting ){
if( 'product_payment_plan' === self::dfw_get_deposit_type( $product_id ) && ! self::dfw_has_payment_plans( $product_id ) ) {
return false;
}
return true;
}
return false;
}
public static function dfw_is_deposits_forced( $product_id ) {
$setting = get_post_meta( $product_id, 'product_deposits_enabled', true);
if( empty( $setting ) ){
$setting = get_option( 'default_deposits_enabled' );
}
if( 'force' === $setting || 'product_force' === $setting ){
return true;
}
return false;
}
public static function dfw_get_deposit( $product, $plan_id = 0, $context='display', $price = null ) {
if( is_numeric( $product ) ){
$product = wc_get_product( $product );
}
$type = self::dfw_get_deposit_type( $product->get_id() );
$is_percentage = false;
$deposit = '';
$product_id = '';
if( $product->is_type('variation') ) {
$product_id = wp_get_post_parent_id( $product->get_id() );
}else{
$product_id = $product->get_id();
}
if( 'fixed' === $type || 'percentage' === $type || 'product_fixed' === $type || 'product_percentage' === $type ) {
if( 'product_fixed' === $type || 'product_percentage' === $type ){
$deposit = get_post_meta( $product_id, 'product_deposit_amount', true );
}
else if( 'fixed' === $type || 'percentage' === $type ) {
$deposit = get_option( 'default_deposit_amount' );
}
if( ! $deposit ){
return false;
}
if( 'product_percentage' === $type || 'percentage' === $type ) {
$is_percentage = true;
}
} else{
if( ! $plan_id ) {
return false;
}
$plan = new DFW_Deposits_Plan( $plan_id );
$schedule = $plan->get_plan_schedule();
$first_payment = current( $schedule );
$deposit = $first_payment->plan_amount;
$is_percentage = true;
}
if( $is_percentage ){
$price = is_null( $price ) ? $product->get_price() : $price;
$deposit = ( $price / 100 ) * $deposit;
}
return wc_format_decimal( $deposit );
}
public static function dfw_get_deposit_type( $product_id ) {
$product = wc_get_product( $product_id );
if( $product->is_type('variation') ) {
$product_id = wp_get_post_parent_id( $product_id );
}
$setting = get_post_meta( $product_id, 'product_deposit_type', true );
if( empty( $setting ) || '' === $setting ){
$setting = get_option( 'default_deposit_type' );
}
return $setting;
}
public static function dfw_get_formatted_deposit_amount( $product_id ) {
$product = wc_get_product( $product_id );
$product_price = $product->get_price();
$type = self::dfw_get_deposit_type( $product_id );
if( 'product_fixed' === $type || 'fixed' === $type ){
$text = ( 'product_fixed' === $type ) ? get_post_meta( $product_id, 'product_deposit_text', true ): get_option( 'deposit_text' );
if( '' == $text ){
$text = 'Pay a deposit of '.wc_price( get_post_meta( $product_id, 'product_deposit_amount', true ) ).' per item';
}
return $text;
}
elseif ( 'product_percentage' === $type || 'percentage' === $type ) {
$text = ( 'product_percentage' === $type ) ? get_post_meta( $product_id, 'product_deposit_text', true ): get_option( 'deposit_text' );
if( '' == $text ){
$text = 'Pay a deposit of '. get_post_meta( $product_id, 'product_deposit_amount', true ).'% per item';
}
return $text;
}
}
public static function dfw_has_payment_plans( $product_id ) {
$plans = sizeof( (array) get_post_meta( $product_id, 'product_payment_plans', true ) );
if( $plans <= 0 ){
$default_plans = get_option( 'default_payment_plans', array() );
if( empty( $default_plans ) ){
return 0;
}
return count( $default_plans );
}
return $plans;
}
}