ishop Yii QIWI Extension

  1. IShop
  2. Requirements
  3. Usage
  4. Resources

IShop

Integration of QIWI Payment system

Requirements

  • Yii (any version i suppose)
  • PHP_SOAP

    Usage

    Unpack the archive into the directory with the extension

    Configure
'components'	=>	array(
    'ishop'	=>    array(
        'class'	=>    'ext.ishop.IShop',
        'options'	=>	array(
        'login'	        => 	LOGIN,
  	'password'	=>      PASSWORD
      )
    )
),
Sample
class ExampleController extends CController {
 
    public function actionIndex() {
        $user = 9181234567;
        $amount = 100;
        $coment = 'Test pay';
        $txn = 123;
        $return = Yii::app()->ishop->createBill($user, $amount, $comment, $txn);
        echo $return;
    }
}

You can also see examples in the archive

Resources

Project page
QIWI Payment System
QIWI service documentation

7 0
9 followers
1 529 downloads
Yii Version: 1.1
License: BSD-2-Clause
Category: Web Service
Developed by: nek
Created on: Sep 10, 2011
Last updated: 12 years ago

Downloads

show all

Related Extensions