Initial commit

This commit is contained in:
NightBits
2018-12-19 20:44:16 +01:00
parent b680b82039
commit 878eda33b8
92 changed files with 5819 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**************************************/
/**** SuperSmash Framework ****/
/**** Created By SuperSmash ****/
/**** Started on: 25-04-2012 ****/
/**************************************/
// Require the global settings
require (SYSTEM . DS . 'SuperSmash' . DS . 'global.php');
// Require the registry
require (SYSTEM . DS . 'SuperSmash' . DS . 'registry.php');
// Register the SuperSmash framework to process errors through a custom error handling system
set_error_handler( 'errorHandler' , E_ALL | E_STRICT );
// Initiate the system start time
$Benchmark = loadClass('Benchmark');
$Benchmark->start('system');
// Load the SuperSmash Framework
$SuperSmash = loadClass('SuperSmash');
?>