Changeset 3225161
- Timestamp:
- 01/19/2025 08:27:50 PM (15 months ago)
- Location:
- banking-blocks-for-woocommerce
- Files:
-
- 22 edited
- 1 copied
-
tags/1.4.2 (copied) (copied from banking-blocks-for-woocommerce/trunk)
-
tags/1.4.2/banking-blocks-for-woocommerce.php (modified) (2 diffs)
-
tags/1.4.2/readme.txt (modified) (1 diff)
-
tags/1.4.2/src/methods/bank/wc-gateway-bank-bca.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/bank/wc-gateway-bank-bni.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/bank/wc-gateway-bank-bri.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/bank/wc-gateway-bank-bsi.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/bank/wc-gateway-bank-mandiri.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/bank/wc-gateway-local-bank.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/bank/wc-gateway-lokal-bank.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/wallet/wc-gateway-dana.php (modified) (2 diffs)
-
tags/1.4.2/src/methods/wallet/wc-gateway-qris.php (modified) (2 diffs)
-
trunk/banking-blocks-for-woocommerce.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/methods/bank/wc-gateway-bank-bca.php (modified) (2 diffs)
-
trunk/src/methods/bank/wc-gateway-bank-bni.php (modified) (2 diffs)
-
trunk/src/methods/bank/wc-gateway-bank-bri.php (modified) (2 diffs)
-
trunk/src/methods/bank/wc-gateway-bank-bsi.php (modified) (2 diffs)
-
trunk/src/methods/bank/wc-gateway-bank-mandiri.php (modified) (2 diffs)
-
trunk/src/methods/bank/wc-gateway-local-bank.php (modified) (2 diffs)
-
trunk/src/methods/bank/wc-gateway-lokal-bank.php (modified) (2 diffs)
-
trunk/src/methods/wallet/wc-gateway-dana.php (modified) (2 diffs)
-
trunk/src/methods/wallet/wc-gateway-qris.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
banking-blocks-for-woocommerce/tags/1.4.2/banking-blocks-for-woocommerce.php
r3225158 r3225161 7 7 * Author: LokusWP 8 8 * Author URI: https://lokuswp.com 9 * Version: 1.4. 09 * Version: 1.4.2 10 10 * Text Domain: banking-blocks 11 11 * License: GPLv3 … … 17 17 } 18 18 19 define('BBWC_VERSION', '1.4. 0');19 define('BBWC_VERSION', '1.4.2'); 20 20 defined('BBWC_PATH') || define('BBWC_PATH', plugin_dir_path(__FILE__)); 21 21 defined('BBWC_URL') || define('BBWC_URL', plugin_dir_url(__FILE__)); -
banking-blocks-for-woocommerce/tags/1.4.2/readme.txt
r3225159 r3225161 5 5 Requires at least: 6.5 6 6 Tested up to: 6.7.1 7 Stable tag: 1.4. 07 Stable tag: 1.4.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-bank-bca.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 185 188 } 186 189 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-bank-bni.php
r3225158 r3225161 173 173 } 174 174 175 public function thankyou_page($order _id)175 public function thankyou_page($order) 176 176 { 177 177 static $has_run; … … 180 180 } $has_run = true; // Prevent subsequent runs 181 181 182 if ($this->instructions) { 183 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 184 } 185 $this->bank_details($order_id); 182 if ($this->id === $order->get_payment_method()) { 183 184 if ($this->instructions) { 185 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 186 } 187 $this->bank_details($order->get_id()); 188 } 186 189 } 187 190 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-bank-bri.php
r3225158 r3225161 173 173 } 174 174 175 public function thankyou_page($order _id)175 public function thankyou_page($order) 176 176 { 177 177 static $has_run; … … 180 180 } $has_run = true; // Prevent subsequent runs 181 181 182 if ($this->instructions) { 183 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 184 } 185 $this->bank_details($order_id); 182 if ($this->id === $order->get_payment_method()) { 183 184 if ($this->instructions) { 185 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 186 } 187 $this->bank_details($order->get_id()); 188 } 186 189 } 187 190 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-bank-bsi.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 185 } 186 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 188 } 189 187 190 public function process_payment($order_id) 188 191 { -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-bank-mandiri.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 185 188 } 186 189 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-local-bank.php
r3225158 r3225161 171 171 } 172 172 173 public function thankyou_page($order _id)173 public function thankyou_page($order) 174 174 { 175 175 static $has_run; … … 178 178 } $has_run = true; // Prevent subsequent runs 179 179 180 if ($this->instructions) { 181 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 182 } 183 $this->bank_details($order_id); 180 if ($this->id === $order->get_payment_method()) { 181 182 if ($this->instructions) { 183 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 184 } 185 $this->bank_details($order->get_id()); 186 } 184 187 } 185 188 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/bank/wc-gateway-lokal-bank.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 185 188 } 186 189 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/wallet/wc-gateway-dana.php
r3225158 r3225161 164 164 } 165 165 166 public function thankyou_page($order _id)166 public function thankyou_page($order) 167 167 { 168 168 static $has_run; … … 171 171 } $has_run = true; // Prevent subsequent runs 172 172 173 if ($this->instructions) { 174 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 175 } 176 $this->bank_details($order_id); 173 if ($this->id === $order->get_payment_method()) { 174 175 if ($this->instructions) { 176 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 177 } 178 $this->bank_details($order->get_id()); 179 } 177 180 } 178 181 -
banking-blocks-for-woocommerce/tags/1.4.2/src/methods/wallet/wc-gateway-qris.php
r3225158 r3225161 101 101 } 102 102 103 public function thankyou_page($order _id)103 public function thankyou_page($order) 104 104 { 105 105 static $has_run; … … 108 108 } $has_run = true; // Prevent subsequent runs 109 109 110 if ($this->instructions) { 111 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 112 } 113 $this->display_qris($order_id); 110 if ($this->id === $order->get_payment_method()) { 111 112 if ($this->instructions) { 113 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 114 } 115 $this->bank_details($order->get_id()); 116 } 114 117 } 115 118 -
banking-blocks-for-woocommerce/trunk/banking-blocks-for-woocommerce.php
r3225158 r3225161 7 7 * Author: LokusWP 8 8 * Author URI: https://lokuswp.com 9 * Version: 1.4. 09 * Version: 1.4.2 10 10 * Text Domain: banking-blocks 11 11 * License: GPLv3 … … 17 17 } 18 18 19 define('BBWC_VERSION', '1.4. 0');19 define('BBWC_VERSION', '1.4.2'); 20 20 defined('BBWC_PATH') || define('BBWC_PATH', plugin_dir_path(__FILE__)); 21 21 defined('BBWC_URL') || define('BBWC_URL', plugin_dir_url(__FILE__)); -
banking-blocks-for-woocommerce/trunk/readme.txt
r3225159 r3225161 5 5 Requires at least: 6.5 6 6 Tested up to: 6.7.1 7 Stable tag: 1.4. 07 Stable tag: 1.4.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-bank-bca.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 185 188 } 186 189 -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-bank-bni.php
r3225158 r3225161 173 173 } 174 174 175 public function thankyou_page($order _id)175 public function thankyou_page($order) 176 176 { 177 177 static $has_run; … … 180 180 } $has_run = true; // Prevent subsequent runs 181 181 182 if ($this->instructions) { 183 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 184 } 185 $this->bank_details($order_id); 182 if ($this->id === $order->get_payment_method()) { 183 184 if ($this->instructions) { 185 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 186 } 187 $this->bank_details($order->get_id()); 188 } 186 189 } 187 190 -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-bank-bri.php
r3225158 r3225161 173 173 } 174 174 175 public function thankyou_page($order _id)175 public function thankyou_page($order) 176 176 { 177 177 static $has_run; … … 180 180 } $has_run = true; // Prevent subsequent runs 181 181 182 if ($this->instructions) { 183 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 184 } 185 $this->bank_details($order_id); 182 if ($this->id === $order->get_payment_method()) { 183 184 if ($this->instructions) { 185 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 186 } 187 $this->bank_details($order->get_id()); 188 } 186 189 } 187 190 -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-bank-bsi.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 185 } 186 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 188 } 189 187 190 public function process_payment($order_id) 188 191 { -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-bank-mandiri.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 185 188 } 186 189 -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-local-bank.php
r3225158 r3225161 171 171 } 172 172 173 public function thankyou_page($order _id)173 public function thankyou_page($order) 174 174 { 175 175 static $has_run; … … 178 178 } $has_run = true; // Prevent subsequent runs 179 179 180 if ($this->instructions) { 181 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 182 } 183 $this->bank_details($order_id); 180 if ($this->id === $order->get_payment_method()) { 181 182 if ($this->instructions) { 183 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 184 } 185 $this->bank_details($order->get_id()); 186 } 184 187 } 185 188 -
banking-blocks-for-woocommerce/trunk/src/methods/bank/wc-gateway-lokal-bank.php
r3225158 r3225161 172 172 } 173 173 174 public function thankyou_page($order _id)174 public function thankyou_page($order) 175 175 { 176 176 static $has_run; … … 179 179 } $has_run = true; // Prevent subsequent runs 180 180 181 if ($this->instructions) { 182 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 183 } 184 $this->bank_details($order_id); 181 if ($this->id === $order->get_payment_method()) { 182 183 if ($this->instructions) { 184 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 185 } 186 $this->bank_details($order->get_id()); 187 } 185 188 } 186 189 -
banking-blocks-for-woocommerce/trunk/src/methods/wallet/wc-gateway-dana.php
r3225158 r3225161 164 164 } 165 165 166 public function thankyou_page($order _id)166 public function thankyou_page($order) 167 167 { 168 168 static $has_run; … … 171 171 } $has_run = true; // Prevent subsequent runs 172 172 173 if ($this->instructions) { 174 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 175 } 176 $this->bank_details($order_id); 173 if ($this->id === $order->get_payment_method()) { 174 175 if ($this->instructions) { 176 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 177 } 178 $this->bank_details($order->get_id()); 179 } 177 180 } 178 181 -
banking-blocks-for-woocommerce/trunk/src/methods/wallet/wc-gateway-qris.php
r3225158 r3225161 101 101 } 102 102 103 public function thankyou_page($order _id)103 public function thankyou_page($order) 104 104 { 105 105 static $has_run; … … 108 108 } $has_run = true; // Prevent subsequent runs 109 109 110 if ($this->instructions) { 111 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 112 } 113 $this->display_qris($order_id); 110 if ($this->id === $order->get_payment_method()) { 111 112 if ($this->instructions) { 113 echo wp_kses_post(wpautop(wptexturize($this->instructions))); 114 } 115 $this->bank_details($order->get_id()); 116 } 114 117 } 115 118
Note: See TracChangeset
for help on using the changeset viewer.