/**
  *	This function dumps the contents of the configuration.
  */
 function dump()
 {
     YDConfig::_init();
     YDDebugUtil::dump($GLOBALS[YD_CONFIG_VAR], 'YDConfig contents');
 }
 /**
  *	This function dumps the contents of the configuration.
  */
 function dump()
 {
     // Initialize the global configuration if needed
     YDConfig::_init();
     // Dump the configuration
     YDDebugUtil::dump($GLOBALS[YD_CONFIG_VAR], 'YDConfig contents');
 }