]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/helper/hub/answer/class_BaseHubAnswerHelper.php
Added internal IP handling (unfinished), added package tags
[hub.git] / application / hub / main / helper / hub / answer / class_BaseHubAnswerHelper.php
index c5850d249f07e166e568194963d42355f37fd73c..cfa4d407af9ad0a1894c3413e4e5dd6bf1d638ed 100644 (file)
@@ -27,6 +27,12 @@ class BaseHubAnswerHelper extends BaseHubHelper {
         */
        private $messageData = array();
 
+       /**
+        * Package tags
+        */
+       private $packageTags = array();
+
+
        /**
         * Protected constructor
         *
@@ -55,6 +61,25 @@ class BaseHubAnswerHelper extends BaseHubHelper {
        public final function getMessageData () {
                return $this->messageData;
        }
+
+       /**
+        * Getter for package tags in a simple array
+        *
+        * @return      $packageTags    An array with all tags for the currently handled package
+        */
+       public final function getPackageTags () {
+               return $this->packageTags;
+       }
+
+       /**
+        * Setter for package tags in a simple array
+        *
+        * @param       $packageTags    An array with all tags for the currently handled package
+        * @return      void
+        */
+       public final function setPackageTags (array $packageTags) {
+               $this->packageTags = $packageTags;
+       }
 }
 
 // [EOF]