Select Git revision
config.sample.php
config.sample.php 293 B
<?php
// Sample configuration file for the ucomm webforms project
set_include_path(dirname(__FILE__).'/lib/php'.PATH_SEPARATOR.get_include_path());
function myautoload($class)
{
$file = str_replace('_', '/', $class).'.php';
require_once $file;
}
spl_autoload_register('myautoload');