PluginProbe
PayPlug for WooCommerce (Official) / 2.6.4
PayPlug for WooCommerce (Official) v2.6.4
3.0.0 2.18.0 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 1.10.0 1.10.1 1.2.1 1.2.10 1.2.11 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 All 101 releases
payplug / src / Front / PayplugOney / Country / InterfaceOney.php

InterfaceOney.php in PayPlug for WooCommerce (Official) 2.6.4, at src/Front/PayplugOney/Country/InterfaceOney.php

52 lines 901 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Payplug\PayplugWoocommerce\Front\PayplugOney\Country;
4
5 interface InterfaceOney
6 {
7
8 public function handleTotalProducts();
9
10 public function addTotalProducts($qty);
11
12 public function resetTotalProducts();
13
14 public function set_min_amount($amount);
15
16 public function set_max_amount($amount);
17
18 public function setIcon($icon);
19
20 public function isDisable();
21
22 public function setDisable($disable);
23
24 public function setTotalPrice($total_price);
25
26 public function setSimulatedClass($simulatedClass);
27
28 public function setOneyType($oney_type);
29
30 public function get_min_amount();
31
32 public function get_max_amount();
33
34 public function getIcon();
35
36 public function getTotalProducts();
37
38 public function getTotalPrice();
39
40 public function getSimulatedClass();
41
42 public function setPayplugOptions($payplugOptions);
43
44 public function getOneyType();
45
46 public function getPayplugOptions();
47
48
49
50
51 }
52