mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 07:49:03 +00:00
8 lines
278 B
PHP
8 lines
278 B
PHP
<?php
|
|
// ***********************************************
|
|
// Base include file for library functions for AMS
|
|
// ***********************************************
|
|
function __autoload( $className ){
|
|
require_once 'autoload/' . strtolower ( $className ) . '.php';
|
|
}
|
|
|