/** * includes the compiled */ function fileInclude($DAOid) { $instance =& CopixDAOFactory::instance(); $conf =& $GLOBALS['COPIX']['CONFIG']; //si oui, compilation et retour. if ($instance->_needsCompilation($DAOid)) { require_once COPIX_DAO_PATH . 'CopixDAOCompiler.class.php'; $compiler =& new CopixDAOCompiler(); $compiler->compile($DAOid); } require_once $instance->getCompiledPath($DAOid); }
/** * includes the compiled */ function fileInclude($DAOid) { $instance =& CopixDAOFactory::instance(); $DAOid = $instance->_fullQualifier($DAOid); //si oui, compilation et retour. if ($instance->_needsCompilation($DAOid)) { require_once COPIX_DAO_PATH . 'CopixDAOCompiler.class.php'; $compiler =& new CopixDAOCompiler(); $compiler->compile($DAOid); } require_once $instance->_getCompiledPath($DAOid); }