BankTransfer
2 years ago
Stripe
1 month ago
AbstractPaymentMethod.php
1 month ago
PaymentMethodInterface.php
3 years ago
PaymentMethods.php
1 year ago
StoreGateway.php
3 years ago
WebhookHandlerInterface.php
3 years ago
index.php
3 years ago
PaymentMethodInterface.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\Membership\PaymentMethods; |
| 4 | |
| 5 | interface PaymentMethodInterface |
| 6 | { |
| 7 | public function get_id(); |
| 8 | |
| 9 | public function get_title(); |
| 10 | |
| 11 | public function get_description(); |
| 12 | |
| 13 | public function get_method_title(); |
| 14 | |
| 15 | public function get_method_description(); |
| 16 | |
| 17 | public function is_enabled(); |
| 18 | |
| 19 | public function supports($feature); |
| 20 | |
| 21 | public function get_icon(); |
| 22 | |
| 23 | public function has_fields(); |
| 24 | |
| 25 | public function payment_fields(); |
| 26 | } |