Index: trunk/extensions/DonationInterface/globalcollect_gateway/globalcollect.adapter.php |
— | — | @@ -693,6 +693,21 @@ |
694 | 694 | } |
695 | 695 | |
696 | 696 | /** |
| 697 | + * Get payment submethod form validation options |
| 698 | + * |
| 699 | + * @todo |
| 700 | + * - These may need to move to the parent class |
| 701 | + * |
| 702 | + * @return array |
| 703 | + */ |
| 704 | + public function getPaymentSubmethodFormValidation( $options = array() ) { |
| 705 | + |
| 706 | + $meta = $this->getPaymentSubmethodMeta( $this->getPaymentSubmethod() ); |
| 707 | + |
| 708 | + return $meta['validation']; |
| 709 | + } |
| 710 | + |
| 711 | + /** |
697 | 712 | * Because GC has some processes that involve more than one do_transaction |
698 | 713 | * chained together, we're catching those special ones in an overload and |
699 | 714 | * letting the rest behave normally. |