Example #1
0
 /**
  * @inheritdoc
  */
 public function addCommonParams(Dataset $dataset)
 {
     parent::addCommonParams($dataset);
     $dataset->setParam('VK_CHARSET', $this->getCharset());
 }
Example #2
0
 /**
  * @inheritdoc
  */
 public function addCommonParams(Dataset $dataset)
 {
     parent::addCommonParams($dataset);
     $dataset->setParam('VK_ENCODING', $this->getCharset());
     $dataset->setParam('VK_SERVICE', $this->getConfParam('VK_SERVICE', '1001'));
 }
 /**
  * @inheritdoc
  */
 public function getParamMacOrderDefinition()
 {
     return ArrayHelper::merge(parent::getParamMacOrderDefinition(), array('1002' => array('VK_SERVICE', 'VK_VERSION', 'VK_SND_ID', 'VK_STAMP', 'VK_AMOUNT', 'VK_CURR', 'VK_REF', 'VK_MSG')));
 }
Example #4
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isDanske = 'SAMPOPANK' == $response->getParam('VK_SND_ID', false);
     return $isDanske && parent::canHandlePaymentResponse($response);
 }