Class loader rewritten to SPL classes
[shipsimu.git] / inc / includes.php
index 139be1401c604c87a484746ae148e36c26823ab7..c7a949aacb1b44768ec9a871ba2095fd7e7ea152 100644 (file)
  * 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?
  */