PHP Classes

File: autoload.php

Recommend this page to a friend!
  Classes of Andreas Kollaros   Aktive Merchant   autoload.php   Download  
File: autoload.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Aktive Merchant
Common interface to process payments with gateways
Author: By
Last change: Update of autoload.php
Date: 2 months ago
Size: 167 bytes
 

Contents

Class file image Download
<?php
date_default_timezone_set
('UTC');

require_once
'SplClassLoader.php';
$loader = new SplClassLoader('AktiveMerchant', __DIR__ . '/lib');
$loader->register();

?>