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