PluginProbe
Tiered Pricing Table for WooCommerce / 6.5.0
Tiered Pricing Table for WooCommerce v6.5.0
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
tier-pricing-table / src / Integrations / Plugins / WooCommerceDeposits.php

WooCommerceDeposits.php in Tiered Pricing Table for WooCommerce 6.5.0, at src/Integrations/Plugins/WooCommerceDeposits.php

50 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php namespace TierPricingTable\Integrations\Plugins;
2
3 class WooCommerceDeposits extends PluginIntegrationAbstract {
4
5 public function getTitle(): string {
6 return 'WooCommerce Deposits (by WooCommerce)';
7 }
8
9 public function getDescription(): string {
10 return __( 'Calculate deposit amounts and remaining balances correctly based on tiered pricing rules.', 'tier-pricing-table' );
11 }
12
13 public function getSlug(): string {
14 return 'woocommerce-deposits';
15 }
16
17 public function getAuthorURL(): string {
18 return 'https://woocommerce.com/products/woocommerce-deposits/';
19 }
20
21 public function getIconURL(): string {
22 return $this->getContainer()->getFileManager()->locateAsset( 'admin/integrations/woocommerce-develop.jpeg' );
23 }
24
25 public function run() {
26 add_filter( 'tiered_pricing_table/cart/product_cart_price', function ( $new_price, $cart_item, $key ) {
27
28 if ( $new_price ) {
29 // WooCommerce Deposit
30 $cart = wc()->cart;
31
32 if ( isset( $cart->cart_contents[ $key ]['full_amount'] ) ) {
33
34 $depositPercentage = 1 / ( $cart->cart_contents[ $key ]['full_amount'] / $cart->cart_contents[ $key ]['deposit_amount'] );
35
36 $cart->cart_contents[ $key ]['full_amount'] = $new_price;
37 $cart->cart_contents[ $key ]['deposit_amount'] = $cart->cart_contents[ $key ]['full_amount'] * $depositPercentage;
38 }
39 }
40
41 return $new_price;
42
43 }, 10, 3 );
44 }
45
46 public function getIntegrationCategory(): string {
47 return 'custom_product_types';
48 }
49 }
50