Skip to content

Commit ff5cfe7

Browse files
authored
Merge branch 'master' into feature/PLUG-4791
2 parents e2fc21f + 0b09ed9 commit ff5cfe7

9 files changed

Lines changed: 144 additions & 0 deletions

File tree

assets/logos/408.png

2.71 KB
Loading

assets/logos/411.png

2.61 KB
Loading

assets/logos/414.png

5.04 KB
Loading

assets/logos/429.png

1.54 KB
Loading
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
/**
4+
* @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
5+
* @phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
6+
* @phpcs:disable PSR1.Methods.CamelCapsMethodName
7+
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
8+
*/
9+
10+
class Babycadeaubon extends PPMFWC_Gateway_Abstract
11+
{
12+
/**
13+
* @return string
14+
*/
15+
public static function getId()
16+
{
17+
return 'pay_gateway_babycadeaubon';
18+
}
19+
20+
/**
21+
* @return string
22+
*/
23+
public static function getName()
24+
{
25+
return 'Babycadeaubon';
26+
}
27+
28+
/**
29+
* @return integer
30+
*/
31+
public static function getOptionId()
32+
{
33+
return 4416;
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
/**
4+
* @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
5+
* @phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
6+
* @phpcs:disable PSR1.Methods.CamelCapsMethodName
7+
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
8+
*/
9+
10+
class FashionChequeBeauty extends PPMFWC_Gateway_Abstract
11+
{
12+
/**
13+
* @return string
14+
*/
15+
public static function getId()
16+
{
17+
return 'pay_gateway_fashionchequebeauty';
18+
}
19+
20+
/**
21+
* @return string
22+
*/
23+
public static function getName()
24+
{
25+
return 'Fashion cheque beauty';
26+
}
27+
28+
/**
29+
* @return integer
30+
*/
31+
public static function getOptionId()
32+
{
33+
return 4428;
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
/**
4+
* @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
5+
* @phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
6+
* @phpcs:disable PSR1.Methods.CamelCapsMethodName
7+
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
8+
*/
9+
10+
class PPMFWC_Gateway_Sofort extends PPMFWC_Gateway_Abstract
11+
{
12+
/**
13+
* @return string
14+
*/
15+
public static function getId()
16+
{
17+
return 'pay_gateway_sofort';
18+
}
19+
20+
/**
21+
* @return string
22+
*/
23+
public static function getName()
24+
{
25+
return 'Sofort (by Klarna)';
26+
}
27+
28+
/**
29+
* @return integer
30+
*/
31+
public static function getOptionId()
32+
{
33+
return 4761;
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
/**
4+
* @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
5+
* @phpcs:disable Squiz.Classes.ValidClassName.NotCamelCaps
6+
* @phpcs:disable PSR1.Methods.CamelCapsMethodName
7+
* @phpcs:disable Squiz.Commenting.FunctionComment.TypeHintMissing
8+
*/
9+
10+
class PPMFWC_Gateway_SportsGiftCard extends PPMFWC_Gateway_Abstract
11+
{
12+
/**
13+
* @return string
14+
*/
15+
public static function getId()
16+
{
17+
return 'pay_gateway_sportsgiftcard';
18+
}
19+
20+
/**
21+
* @return string
22+
*/
23+
public static function getName()
24+
{
25+
return 'Sports giftcard';
26+
}
27+
28+
/**
29+
* @return integer
30+
*/
31+
public static function getOptionId()
32+
{
33+
return 4422;
34+
}
35+
}

includes/classes/PPMFWC/Gateways.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ private static function getAvailableWoocomStatus($default, $excludeStates = arra
7373
'PPMFWC_Gateway_Applepay',
7474
'PPMFWC_Gateway_Afterpay',
7575
'PPMFWC_Gateway_AfterpayInternational',
76+
'PPMFWC_Gateway_Babycadeaubon',
7677
'PPMFWC_Gateway_BataviastadCadeaukaart',
7778
'PPMFWC_Gateway_Bbqcadeaukaart',
7879
'PPMFWC_Gateway_Beautyandmorecadeaukaart',
@@ -102,6 +103,7 @@ private static function getAvailableWoocomStatus($default, $excludeStates = arra
102103
'PPMFWC_Gateway_Dinerbon',
103104
'PPMFWC_Gateway_Eps',
104105
'PPMFWC_Gateway_Fashioncheque',
106+
'PPMFWC_Gateway_FashionChequeBeauty',
105107
'PPMFWC_Gateway_Fashiongiftcard',
106108
'PPMFWC_Gateway_FestivalCadeaukaart',
107109
'PPMFWC_Gateway_Flyingblueplus',
@@ -149,8 +151,10 @@ private static function getAvailableWoocomStatus($default, $excludeStates = arra
149151
'PPMFWC_Gateway_Scholierenpas',
150152
'PPMFWC_Gateway_ShoesAndSneakers',
151153
'PPMFWC_Gateway_Sodexo',
154+
'PPMFWC_Gateway_Sofort',
152155
'PPMFWC_Gateway_Sofortbanking',
153156
'PPMFWC_Gateway_SofortbankingDigitalServices',
157+
'PPMFWC_Gateway_SportsGiftCard',
154158
'PPMFWC_Gateway_Spraypay',
155159
'PPMFWC_Gateway_StadspasAmsterdam',
156160
'PPMFWC_Gateway_Swish',

0 commit comments

Comments
 (0)