Index: trunk/extensions/DonationInterface/gateway_common/gateway.adapter.php |
— | — | @@ -111,6 +111,13 @@ |
112 | 112 | * @var array $error_map |
113 | 113 | */ |
114 | 114 | protected $error_map = array(); |
| 115 | + |
| 116 | + /** |
| 117 | + * @see GatewayAdapter::defineGoToThankYouOn() |
| 118 | + * |
| 119 | + * @var array $goToThankYouOn |
| 120 | + */ |
| 121 | + protected $goToThankYouOn = array(); |
115 | 122 | |
116 | 123 | /** |
117 | 124 | * $var_map maps gateway variables to client variables |
— | — | @@ -162,6 +169,15 @@ |
163 | 170 | const GLOBAL_PREFIX = 'wgDonationGateway'; //...for example. |
164 | 171 | |
165 | 172 | /** |
| 173 | + * Get @see GlobalCollectAdapter::$goToThankYouOn |
| 174 | + * |
| 175 | + */ |
| 176 | + public function getGoToThankYouOn() { |
| 177 | + |
| 178 | + return $this->goToThankYouOn; |
| 179 | + } |
| 180 | + |
| 181 | + /** |
166 | 182 | * Constructor |
167 | 183 | * |
168 | 184 | * @param array $options |