]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/registry/class_BaseRegistry.php
Fixed (again) some more generic array handling
[core.git] / inc / classes / main / registry / class_BaseRegistry.php
index f39457cf07f4f5b32085ececa9abbfc45dedccd5..91914e1c1f709d9b89ee6e8981174812b16d7b49 100644 (file)
@@ -41,6 +41,9 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
        protected function __construct ($className) {
                // Call parent constructor
                parent::__construct($className);
+
+               // Init raw array
+               $this->initGenericArrayGroup('raw', 'generic');
        }
 
        /**
@@ -90,7 +93,7 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
                assert(!is_array($key));
 
                // Push it
-               $this->pushValueToGenericArrayElement('raw', 'generic', $key, $value);
+               $this->pushValueToGenericArrayKey('raw', 'generic', $key, $value);
        }
 
        /**
@@ -129,6 +132,9 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
                // Init array
                $entry = array();
 
+               // Debug message
+               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Checking arrayKey=' . $arrayKey . ',lookFor=' . $lookFor);
+
                // "Walk" over all entries
                foreach ($this->getEntries($arrayKey) as $key => $value) {
                        // Debug message
@@ -138,16 +144,28 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
                        if ($lookFor == $value) {
                                // Look for more entries
                                foreach ($this->getEntries() as $key2 => $value2) {
-                                       // Debug message
-                                       //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Checking key2=' . $key2 . ',value2=' . print_r($value2, true) . ',lookFor=' . $lookFor);
-
-                                       // Both keys must match!
-                                       if (($key == $key2) || (isset($value2[$key]))) {
+                                       // Now "walk" through all entries, if an array is returned
+                                       if (is_array($value2)) {
                                                // Debug message
-                                               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Adding ' . $value2[$key] . ' ...');
+                                               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Checking key2=' . $key2 . ',value2()=' . count($value2) . ',lookFor=' . $lookFor);
+
+                                               // "Walk" through all of them
+                                               foreach ($value2 as $key3 => $value3) {
+                                                       // $value3 needs to be an array
+                                                       assert(is_array($value3));
 
-                                               // Then add it
-                                               $entry[$key2] = $value2[$key];
+                                                       // Debug message
+                                                       //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Checking key=' . $key . ',key3=' . $key3 . ',isset()=' . isset($value3[$key]) . ' ...');
+
+                                                       // Both keys must match!
+                                                       if (($key == $key3) || (isset($value3[$key]))) {
+                                                               // Debug message
+                                                               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Adding ' . $value3[$key] . ' ...');
+
+                                                               // Then add it
+                                                               $entry[$key3] = $value3[$key];
+                                                       } // END - if
+                                               } // END - foreach
                                        } // END - if
                                } // END - foreach
 
@@ -156,6 +174,9 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
                        } // END - if
                } // END - foreach
 
+               // Debug message
+               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('REGISTRY[' . __LINE__ . ']: Returning entry(' . count($entry) . ')=' . print_r($entry, TRUE));
+
                // Return it
                return $entry;
        }