コード例 #1
0
ファイル: Seb.php プロジェクト: dlds/yii2-payment
 /**
  * @inheritdoc
  */
 public function addCommonParams(Dataset $dataset)
 {
     parent::addCommonParams($dataset);
     $dataset->setParam('VK_CHARSET', $this->getCharset());
 }
コード例 #2
0
ファイル: Krediidipank.php プロジェクト: dlds/yii2-payment
 /**
  * @inheritdoc
  */
 protected function getParamDefinition()
 {
     return ArrayHelper::merge(parent::getParamDefinition(), array('VK_CHARSET' => array('length' => 11)));
 }
コード例 #3
0
ファイル: Swedbank.php プロジェクト: dlds/yii2-payment
 /**
  * @inheritdoc
  */
 public function addCommonParams(Dataset $dataset)
 {
     parent::addCommonParams($dataset);
     $dataset->setParam('VK_ENCODING', $this->getCharset());
     $dataset->setParam('VK_SERVICE', $this->getConfParam('VK_SERVICE', '1001'));
 }