Welcome Guest, Not a member yet? Register   Sign In
Payment Gateway Class Library for Mollie .nl
#1

[eluser]imn.codeartist[/eluser]
I have modified the original version mollie.nl's Ideal payment gateway class into CI compatible library.


Please find the attachment to download.

Download and place in System/libraries.


Code:
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

/**
* CodeIgniter
*
* An open source application development framework for PHP 4.3.2 or newer
*
* @package        CodeIgniter
* @Modified by  DIXANTA BAHADUR SHRESTHA
* @Contact EMAIL [email protected]
*/


class CI_Ideal_payment {
    
    const     MIN_TRANS_AMOUNT = 118;

    protected $partner_id      = null;
    protected $testmode        = false;

    protected $bank_id         = null;
    protected $amount          = 0;
    protected $description     = null;
    protected $return_url      = null;
    protected $report_url      = null;

    protected $bank_url        = null;
    protected $transaction_id  = null;
    protected $paid_status     = false;
    protected $consumer_info   = array();

    public function __construct() {
      log_message('debug', "Ideal Payment Class Initialized");
    }.....

If you have any queries you can contact me at [email protected]
Regards
Dixanta Shrestha
#2

[eluser]Unknown[/eluser]
Where can i find the attachment? Smile




Theme © iAndrew 2016 - Forum software by © MyBB