Exemplo n.º 1
0
 /**
  * Constructor.
  *
  * @param  array  $options  Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct($options);
     $this->_driver = 'AuthorizeNet';
     $this->_makeRequired('login', 'password', 'action');
 }
Exemplo n.º 2
0
 /**
  * Constructor.
  *
  * @param  array  $options  Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct($options);
     $this->_driver = 'Beanstream';
     $this->_makeRequired('customerId', 'login', 'password', 'action', 'invoiceNumber');
 }
Exemplo n.º 3
0
 /**
  * Constructor.
  *
  * @param  array  $options  Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct($options);
     $this->_driver = 'Transfirst';
     $this->_makeRequired('login', 'password', 'action', 'invoiceNumber', 'customerId', 'amount', 'cardNumber', 'expDate');
 }
 /**
  * Constructor.
  *
  * @param  array  $options  Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct($options);
     $this->_driver = 'AuthorizeNetSubscriptions';
     $this->_makeRequired('login', 'password', 'refId', 'intervalLength', 'intervalUnit', 'startDate', 'totalOccurrences', 'amount');
 }
Exemplo n.º 5
0
 /**
  * Constructor.
  *
  * @param  array  $options  Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct($options);
     $this->_driver = 'LinkPoint';
 }
Exemplo n.º 6
0
 /**
  * Constructor.
  *
  * @param  array  $options  Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct($options);
     $this->_driver = 'TrustCommerce';
 }
Exemplo n.º 7
0
 /**
  * Constructor.
  *
  * @param array $options Class options to set.
  * @see Payment_Process::setOptions()
  * @return void
  */
 function __construct($options = false)
 {
     parent::__construct();
     $this->_driver = 'Bibit';
     $this->_makeRequired('login', 'password', 'ordercode', 'description', 'amount', 'currency', 'exponent', 'cardNumber', 'expDate', 'action');
 }