]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/includes.php
Class loader rewritten to SPL classes
[shipsimu.git] / inc / includes.php
index b699ea9118090292564bfc7d27bea711be980266..c7a949aacb1b44768ec9a871ba2095fd7e7ea152 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * Loads more include files by using the generic class loader
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
+ * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
  * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-
 // Include the class loader function
 require(sprintf("%sinc/loader/class_ClassLoader%s", PATH, FrameworkConfiguration::getInstance()->readConfig('php_extension')));
 
+/**
+ * Autoload-function
+ *
+ * @param      $className      Name of the class to load
+ * @return     void
+ */
+function __autoload ($className) {
+       // Try to include this class
+       ClassLoader::getInstance()->includeClass($className);
+}
+
 /**
  * Is the devel package included?
  */