Model/Methods/OnlineBankTransfer/Eps.php 1 location
|
@@ 107-115 (lines=9) @@
|
| 104 |
|
* @param DataObject $data |
| 105 |
|
* @return $this |
| 106 |
|
*/ |
| 107 |
|
public function assignData(DataObject $data) |
| 108 |
|
{ |
| 109 |
|
parent::assignData($data); |
| 110 |
|
|
| 111 |
|
$oInfoInstance = $this->getInfoInstance(); |
| 112 |
|
$oInfoInstance->setAdditionalInformation('bank_group', $this->toolkitHelper->getAdditionalDataEntry($data, 'bank_group')); |
| 113 |
|
|
| 114 |
|
return $this; |
| 115 |
|
} |
| 116 |
|
|
| 117 |
|
/** |
| 118 |
|
* Return available bank groups |
Model/Methods/OnlineBankTransfer/Ideal.php 1 location
|
@@ 94-102 (lines=9) @@
|
| 91 |
|
* @param DataObject $data |
| 92 |
|
* @return $this |
| 93 |
|
*/ |
| 94 |
|
public function assignData(DataObject $data) |
| 95 |
|
{ |
| 96 |
|
parent::assignData($data); |
| 97 |
|
|
| 98 |
|
$oInfoInstance = $this->getInfoInstance(); |
| 99 |
|
$oInfoInstance->setAdditionalInformation('bank_group', $this->toolkitHelper->getAdditionalDataEntry($data, 'bank_group')); |
| 100 |
|
|
| 101 |
|
return $this; |
| 102 |
|
} |
| 103 |
|
|
| 104 |
|
/** |
| 105 |
|
* Return available bank groups |
Model/Methods/Creditcard.php 1 location
|
@@ 86-94 (lines=9) @@
|
| 83 |
|
* @param DataObject $data |
| 84 |
|
* @return $this |
| 85 |
|
*/ |
| 86 |
|
public function assignData(DataObject $data) |
| 87 |
|
{ |
| 88 |
|
parent::assignData($data); |
| 89 |
|
|
| 90 |
|
$sPseudoCardPan = $this->toolkitHelper->getAdditionalDataEntry($data, 'pseudocardpan'); |
| 91 |
|
$this->getInfoInstance()->setAdditionalInformation('pseudocardpan', $sPseudoCardPan); |
| 92 |
|
|
| 93 |
|
return $this; |
| 94 |
|
} |
| 95 |
|
} |
| 96 |
|
|