]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/chat/console/class_NodeConsoleChat.php
Added missing interface
[hub.git] / application / hub / main / chat / console / class_NodeConsoleChat.php
index c0bf80a4e474fb7bad4ee0d4302c706b7fad31f6..46bb5b742bcfb60a91ecb188eb4c0175e106b1e0 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * A node Console chat
+ * A node console chat
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
@@ -44,6 +44,38 @@ class NodeConsoleChat extends BaseNodeChat implements Chatter, Registerable {
                // Return the prepared instance
                return $chatInstance;
        }
+
+       /**
+        * Method to "bootstrap" the chatter. This step does also apply provided
+        * command-line arguments stored in the request instance. You should now
+        * get it from calling $this->getRequestInstance().
+        *
+        * @return      void
+        */
+       public function doBootstrapping () {
+               $this->partialStub('Please implement this method.');
+       }
+
+       /**
+        * Outputs the console teaser. This should only be executed on startup or
+        * full restarts. This method generates some space around the teaser.
+        *
+        * @return      void
+        */
+       public function outputConsoleTeaser () {
+               $this->partialStub('Please implement this method.');
+       }
+
+       /**
+        * Add some chatter-specific filters
+        *
+        * @param       $controllerInstance             An object of a Controller instance
+        * @param       $responseInstance               An object of a Responseable instance
+        * @return      void
+        */
+       public function addExtraFilters (Controller $controllerInstance, Responseable $responseInstance) {
+               $this->partialStub('Please implement this method.');
+       }
 }
 
 // [EOF]