index.php 770 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /* @var $this yii\web\View */
  3. use smladeoye\paystack\widget\PaystackWidget;
  4. ?>
  5. <div>
  6. <?php
  7. echo PaystackWidget::widget(
  8. [
  9. 'buttonText'=>'PAY',
  10. 'buttonOptions'=>array(
  11. 'class'=>'btn btn-danger',
  12. 'style'=>'width: 80px;',
  13. ),
  14. 'options'=>[
  15. 'key'=>Yii::$app->Paystack->testPublicKey,
  16. 'email'=>'smladeoye@ymail.com',
  17. 'ref'=>'123456789',
  18. 'amount'=>'200000',
  19. 'currency' =>'',
  20. 'plan' =>'',
  21. 'quantity' =>'',
  22. 'callback'=>'function(response){alert(response.trxref);};',
  23. //'callbackUrl' =>'',
  24. ],
  25. ]
  26. );
  27. ?>
  28. </div>