Changeset 1938
- Timestamp:
- 02/05/2008 05:47:53 PM (11 months ago)
- Location:
- trunk/system/libraries
- Files:
-
- 7 modified
-
Payment.php (modified) (1 diff)
-
drivers/Payment.php (modified) (1 diff)
-
drivers/Payment/Authorize.php (modified) (1 diff)
-
drivers/Payment/Paypal.php (modified) (1 diff)
-
drivers/Payment/Trident.php (modified) (1 diff)
-
drivers/Payment/Trustcommerce.php (modified) (1 diff)
-
drivers/Payment/Yourpay.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Payment.php
r1911 r1938 86 86 // Initialize the driver 87 87 $this->driver = new $driver($this->config); 88 89 if ( ! ($this->driver instanceof Payment_Driver)) 90 throw new Kohana_Exception('payment.driver_not_supported', 'Payment drivers must use the Payment_Driver interface.'); 88 91 } 89 92 -
trunk/system/libraries/drivers/Payment.php
r1935 r1938 5 5 * $Id$ 6 6 * 7 * @package Core7 * @package Payment 8 8 * @author Kohana Team 9 9 * @copyright (c) 2007-2008 Kohana Team -
trunk/system/libraries/drivers/Payment/Authorize.php
r1935 r1938 10 10 * @license http://kohanaphp.com/license.html 11 11 */ 12 class Payment_Authorize_Driver 12 class Payment_Authorize_Driver implements Payment_Driver 13 13 { 14 14 // Fields required to do a transaction -
trunk/system/libraries/drivers/Payment/Paypal.php
r1935 r1938 13 13 * @license http://kohanaphp.com/license.html 14 14 */ 15 class Payment_Paypal_Driver {15 class Payment_Paypal_Driver implements Payment_Driver { 16 16 17 17 private $required_fields = array -
trunk/system/libraries/drivers/Payment/Trident.php
r1935 r1938 10 10 * @license http://kohanaphp.com/license.html 11 11 */ 12 class Payment_Trident_Driver 12 class Payment_Trident_Driver implements Payment_Driver 13 13 { 14 14 // Fields required to do a transaction -
trunk/system/libraries/drivers/Payment/Trustcommerce.php
r1935 r1938 10 10 * @license http://kohanaphp.com/license.html 11 11 */ 12 class Payment_Trustcommerce_Driver 12 class Payment_Trustcommerce_Driver implements Payment_Driver 13 13 { 14 14 // Fields required to do a transaction -
trunk/system/libraries/drivers/Payment/Yourpay.php
r1935 r1938 10 10 * @license http://kohanaphp.com/license.html 11 11 */ 12 class Payment_Yourpay_Driver 12 class Payment_Yourpay_Driver implements Payment_Driver 13 13 { 14 14 // Fields required to do a transaction
