>> pagelets.php
#===============================================================================
# Autoload register for classes
#===============================================================================
spl_autoload_register(function($classname) {
$classname = str_replace('\\', '/', $classname);
require "include/classes/{$classname}.php";
});
#===============================================================================
# Enable debugging mode
#===============================================================================
Application::$debugging = TRUE;
#===============================================================================
# Check if BigPipe should be disabled
#===============================================================================
if(isset($_GET['bigpipe']) AND $_GET['bigpipe'] === '0') {
# You can use this method to disable the pipeline for Googlebot or something
# else. If BigPipe is "disabled", then all pagelets will be rendered without
# being pipelined through the javascript library. The content of the pagelet
# will be present at the original position within the HTML response (and all
# external stylesheets and javascripts will be displayed as simple or
#