LegacyPaymentGatewayInterface.php
16 lines
| 1 | <?php |
| 2 | namespace Give\Framework\LegacyPaymentGateways\Contracts; |
| 3 | |
| 4 | /** |
| 5 | * @since 2.18.0 |
| 6 | */ |
| 7 | interface LegacyPaymentGatewayInterface { |
| 8 | |
| 9 | /** |
| 10 | * Returns form fields for donation form to render |
| 11 | * |
| 12 | * @since 2.18.0 |
| 13 | */ |
| 14 | public function getLegacyFormFieldMarkup( int $formId, array $args ): string; |
| 15 | } |
| 16 |