예제 #1
0
 */
loadScript('DAmmyCore', 'lib.util');
/**
 * Now loading the framework's internal core scripts and preparing environment
 * 
 */
DAmmyCore::init();
/**
 * Invoking the DBufferHandler(if its been enabled)
 * Its important to start the BufferHandler before any output
 * 
 * @link http://not-ready See the Documentation on the DBufferHandler class
 * @link http://not-ready See the Documentation on the DSettings class
 */
if (DMainPlugin::isPluginLoaded('cacheManager')) {
    cacheManager::startBuffer();
}
/**
 * 5,4,3,2,1....
 */
new main();
//off we go...
/**
 * Closing the DBufferHandler(if its been enabled)
 * 
 * @link http://not-ready See the Documentation on the DBufferHandler class
 * @link http://not-ready See the Documentation on the DSettings class
 */
if (DMainPlugin::isPluginLoaded('cacheManager')) {
    cacheManager::endBuffer();
}