<?php
/** * UltimaPHP main config file * * @package UltimaPHP Core (http://ultimaphp.ru) * @author Epsilon 2009/07/20 */ $GLOBALS['uconfig'] = array( 'core' => array( 'productionmode' => 1, // Set to 0 when project ready to go, it disables autorecompilation 'classdir' => array('core', 'auto', 'ucomponents'), // Dirs to look for class files 'autodir' => 'auto', // Dir to place autodir file(s) ), /* Another config values (if you need it) can be inserted right here ! */ );
|