mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-08 16:29:01 +00:00
9 lines
262 B
PHP
9 lines
262 B
PHP
|
<?php
|
||
|
// ***********************************************
|
||
|
// Base include file for library functions for AMS
|
||
|
// ***********************************************
|
||
|
function __autoload( $className ){
|
||
|
require_once 'autoload/' . $className . '.php';
|
||
|
}
|
||
|
|