Advertisement
aivavic

PaymentForm

May 2nd, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1.  <?php
  2.                     $liqpay = new \common\components\liqpay\Liqpay();
  3.                     echo $liqpay->cnb_form(array(
  4.                         'action' => 'pay',
  5.                         'amount' => $model->cost,
  6.                         'currency' => 'UAH',
  7.                         'description' => 'Оплата в сейф от заказчика',
  8.                         'order_id' => $model->id,
  9.                         'version' => '3'
  10.                     ));
  11.                     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement