2013-06-06 06:04:46 +00:00
|
|
|
<?php
|
|
|
|
// ***********************************************
|
|
|
|
// Base include file for library functions for AMS
|
|
|
|
// ***********************************************
|
|
|
|
function __autoload( $className ){
|
2013-08-11 01:55:07 +00:00
|
|
|
if(file_exists( '/home/daan/ryzom/ryzomcore/code/ryzom/tools/server/ryzom_ams/ams_lib/autoload/' . strtolower ( $className ) . '.php')){
|
|
|
|
require_once 'autoload/' . strtolower ( $className ) . '.php';
|
|
|
|
}
|
|
|
|
if($className == "WebUsers")
|
|
|
|
require_once '/home/daan/ryzom/ryzomcore/code/ryzom/tools/server/ryzom_ams/www/html/autoload/' . strtolower ( $className ) . '.php';
|
2013-06-17 05:57:09 +00:00
|
|
|
}
|
2013-06-06 06:04:46 +00:00
|
|
|
|