| 
<?php
 // LOAD ALL THE CLASSES ///////////////////////////////////////////////////////////////////////////
 
 /**
 * This file loads all the classes needed by the script.
 * It is called by index.php
 */
 
 // Extensions
 require_once 'Extensions.class.php';
 
 // Directory
 require_once 'MyDirectory.class.php';
 
 // Constants directory
 require_once 'Constants.class.php';
 
 // File
 require_once 'File.class.php';
 
 ?>
 |