]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/registry/class_BaseRegistry.php
Some code-cosmetics applied:
[core.git] / inc / classes / main / registry / class_BaseRegistry.php
index 33111286289bfa7de5001d5149dc53a3d082833f..ca01a2a2a75abcbb479361fea5b5593e5d47c9a2 100644 (file)
@@ -32,6 +32,11 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
         */
        private $instanceRegistry = array();
 
+       /**
+        * Raw data entries (non-objects)
+        */
+       private $rawEntries = array();
+
        /**
         * Protected constructor
         *
@@ -68,6 +73,70 @@ class BaseRegistry extends BaseFrameworkSystem implements Registerable {
                $this->instanceRegistry[$instanceKey] = $objectInstance;
        }
 
+       /**
+        * Adds a new entry to the given list name. If you want to add objects
+        * please use addInstance() and getInstance() instead.
+        *
+        * @param       $key    The key to identify the whole list
+        * @param       $value  The value to be stored
+        * @return      void
+        */
+       public final function addEntry ($key, $value) {
+               // Simply add it
+               $this->rawEntries[$key][] = $value;
+       }
+
+       /**
+        * Getter for entries or "sub entries"
+        *
+        * @return      $entries        An array with entries from this registry
+        */
+       public final function getEntries ($key = null) {
+               // Default is whole array
+               $entries = $this->rawEntries;
+
+               // Is $key set?
+               if (!is_null($key)) {
+                       // Then use this entry
+                       $entries = $this->rawEntries[$key];
+               } // END - if
+
+               // Return the array
+               return $entries;
+       }
+
+       /**
+        * "Getter" for an array of all entries for given key
+        *
+        * @param       $lookFor        The key to look for
+        * @return      $entry          An array with all keys
+        */
+       public function getArrayFromKey ($lookFor) {
+               // Init array
+               $entry = array();
+
+               // "Walk" over all entries
+               foreach ($this->getEntries('object-name') as $key=>$value) {
+                       // If $value matches the $lookFor, we need to look for more entries for this!
+                       if ($lookFor == $value) {
+                               // Look for more entries
+                               foreach ($this->getEntries() as $key2=>$value2) {
+                                       // Both keys must match!
+                                       if ($key == $key2) {
+                                               // Then add it
+                                               $entry[$key2] = $value2[$key];
+                                       } // END - if
+                               } // END - foreach
+
+                               // Skip further lookups
+                               break;
+                       } // END - if
+               } // END - foreach
+
+               // Return it
+               return $entry;
+       }
+
        /**
         * Gets a registered instance or null if not found
         *