]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/factories/objects/class_ObjectFactory.php
Fake template engine added, variables can now be compiled for config entries:
[core.git] / inc / classes / main / factories / objects / class_ObjectFactory.php
index 71b7b93909bc9d421fc3865cc638637830549d59..4a6f0d42c7324fce4d77c9b83bf08dd4b3897886 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -45,7 +45,7 @@ class ObjectFactory extends BaseFactory {
         * @param       $className                      Name of the class we shall construct
         * @param       $args                           Arguments in an indexed array
         * @return      $objectInstance         An instance of the requested object
-        * @throws      ClassNotFoundException  If the requested class was not found
+        * @throws      NoClassException        If the requested class was not found
         * @throws      EmptyVariableException  If a variable is empty unexpectly
         */
        public final static function createObjectByName ($className, array $args=array()) {
@@ -58,7 +58,7 @@ class ObjectFactory extends BaseFactory {
                        throw new EmptyVariableException(array($factoryInstance, 'className'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
                } elseif (!class_exists($className)) {
                        // Then throw an exception
-                       throw new ClassNotFoundException(array($factoryInstance, $className), self::EXCEPTION_CLASS_NOT_FOUND);
+                       throw new NoClassException(array($factoryInstance, $className), self::EXCEPTION_CLASS_NOT_FOUND);
                }
 
                // Create method name
@@ -85,7 +85,7 @@ class ObjectFactory extends BaseFactory {
         */
        public final static function createObjectByConfiguredName ($configEntry, array $args=array()) {
                // Read the configuration entry
-               $className = FrameworkConfiguration::getInstance()->readConfig($configEntry);
+               $className = FrameworkConfiguration::getInstance()->getConfigEntry($configEntry);
 
                // Send this to the other factory...
                $objectInstance = self::createObjectByName($className, $args);