2017 © Pedro Peláez
 

yii2-extension savano

Savano Payment Gateway Extension For Yii2

image

amirkhh/savano

Savano Payment Gateway Extension For Yii2

  • Tuesday, February 13, 2018
  • by amirkh
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Savano Payment

Savano Payment Gateway Extension For Yii2, (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require amirkhh/savano

or add, (*4)

"amirkhh/savano": "^1.0"

to the require section of your composer.json file., (*5)

How to use this extension

For example, imagine that you have a controller called this PaymentController at first you need 2 actions, one of them is for request payment and another is verify payment., (*6)

you need to use an storage to save your payments and payments status., (*7)

PaymentController.php, (*8)

..... 

<?php
public function actionRequest()
{
    /* Your Data */
    $pin      = 'Your Pin';
    $callback = 'Your Callback Url';// 'http://www.xxxx.com/payment/verify';

    /* Save Price, OrderId and Authority In Your Storage */
    $price    = 100;
    $orderId  = 1;

    $savano = new Savano;
    $savano->pin = $pin;

    if($request = $savano->request($price, $orderId, $callback)->getResult() === 1)
    {
        // $authority = $savano->getAuthority();
        // You can save your payment request data to the database in here before redirect user to bank

        return $this->redirect($savano->getRedirectUrl());
    }
    else
    {
        // Show Error.
        echo $savano->getErrorMessage();
    }
}

public function actionVerify($au, $order_id)
{
    $pin = 'Your Pin';

    /* Fetch Price, OrderId and Authority in Your Storage */
    $authority = $au;
    $price     = 100;
    $orderId   = $order_id;

    $savano = new Savano;
    $savano->pin = $pin;

    if(($verify = $savano->verify($authority, $price, $orderId)->getResult()) === 1)
    {
        // Payment Successfully
        echo 'Payment Successfully';
    }
    else
    {
    // Show Error
        echo $savano->getErrorMessage();
    }
}

public function beforeAction($action)
{
    if ($action->id == 'verify') {
        $this->enableCsrfValidation = false;
    }

    return parent::beforeAction($action);
}

.....

The Versions

13/02 2018

dev-master

9999999-dev

Savano Payment Gateway Extension For Yii2

  Sources   Download

MIT License

The Requires

 

by Amir Khoshhal

payment online persian iran savano

13/02 2018

1.0

1.0.0.0

Savano Payment Gateway Extension For Yii2

  Sources   Download

MIT License

The Requires

 

by Amir Khoshhal

payment online persian iran savano