blob: f5a6dac16d686a43a372eb6d89c9a97c91c5126d [file] [log] [blame]
<?php
$toolkitClassPath = ".:forms";
function __autoload($className)
{
global $toolkitRoot;
global $toolkitClassPath;
foreach (explode(":", $toolkitClassPath) as $path)
{
$file = "$toolkitRoot/classes/$path/$className.php";
if (is_file($file))
{
require_once $file;
return;
}
}
}
?>