-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbootstrap.php
32 lines (29 loc) · 1.39 KB
/
bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* Payments
*
* The payments package allows you to easily process e-commerce transactions
* without having to worry about all the backend details of connecting and
* settings up specifications regarding various payment portals.
*
* @package Payments
* @version 1.0
* @author Ninjarite Development Group
* @license MIT License
* @copyright 2011 Ninjarite Development
*/
Autoloader::add_core_namespace('Payments');
// Define available classes into the Autoloader
Autoloader::add_classes(array(
'Payments\\Payment' => __DIR__.'/classes/payment.php',
'Payments\\Payment_Driver' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Authorize' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Googlecheckout' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Moneybookers' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Paypal' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Paypalpro' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Trident' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Trustcommerce' => __DIR__.'/classes/payment/driver.php',
'Payments\\Payment_Driver_Yourpay' => __DIR__.'/classes/payment/driver.php',
));
/* End of file bootstrap.php */