Skip to content
Snippets Groups Projects
Select Git revision
  • 0e8e49e592bec48f1e09e2f1cb3f367ba46ae2c8
  • master default
2 results

config.inc.php

Blame
  • user avatar
    Michael Fairchild authored
    Updated proposal text, added youtube url field, added email support, minor whitespace and formating changes.
    0e8e49e5
    History
    config.inc.php 387 B
    <?php
    ini_set('display_errors',false);
    // 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');
    
    require_once '../../../lib/php/UNL/WDN/Emailer/Main.php';