PluginProbe
HyperPay Payments / trunk
HyperPay Payments vtrunk
6.6.0 trunk 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.1.0 2.2.0 2.3.0 2.3.1 2.3.2 2.3.3 3.0.0 3.0.5 4.0.0 4.0.2 All 34 releases
hyperpay-gateways / src / Brands / Cliq.php

Cliq.php in HyperPay Payments trunk, at src/Brands/Cliq.php

41 lines 786 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Hyperpay\Gateways\Brands;
4
5 use Hyperpay\Gateways\App\DefaultGateway;
6 use WC_Order;
7
8 class Cliq extends DefaultGateway
9 {
10
11 public $trans_mode = 'EXTERNAL';
12
13 /**
14 * should be lower case and unique
15 * @var string $id
16 */
17 public $id = "hyperpay_cliq";
18
19 /**
20 * The title which appear next to gateway on setting page
21 * @var string $method_title
22 */
23 public $method_title = "Cliq";
24
25 /**
26 * Description of gateways which will appear next to title
27 * @var string $method_description
28 */
29 public $method_description = "Cliq Plugin for Woocommerce";
30
31
32 /**
33 *
34 * the Brands supported by the gateway
35 * @var array $supported_brands
36 */
37 protected $supported_brands = [
38 "CLIQ" => "Cliq",
39 ];
40 }
41