X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fnodes%2Fclass_;h=99e8e9b3e8a0b4c82f52cde92042975341f2e1dd;hb=e10aa2b808ead315a4b8924f7b2ec2cc349ff414;hp=c357328a7010907166d42f64e9d5eb364ae39d2d;hpb=a639958849350c1db6d4562a74ef48182bc75a37;p=hub.git diff --git a/application/hub/main/nodes/class_ b/application/hub/main/nodes/class_ index c357328a7..99e8e9b3e 100644 --- a/application/hub/main/nodes/class_ +++ b/application/hub/main/nodes/class_ @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class Hub???Node extends BaseHubNode implements NodeHelper { +class Hub???Node extends BaseHubNode implements NodeHelper, Registerable { /** * Protected constructor * @@ -58,9 +58,28 @@ class Hub???Node extends BaseHubNode implements NodeHelper { * @todo Implement this method */ public function doBootstrapping () { - // Call generic (parent) bootstrapping method + // Call generic (parent) bootstrapping method first parent::doGenericBootstrapping(); - $this->partialStub("Please implement this method."); + $this->partialStub('Please implement this method.'); + } + + /** + * Initializes hub-specific queues + * + * @return void + * @todo Implement this method + */ + public function initQueues () { + $this->partialStub('Please implement this method.'); + } + + /** + * Add some node-specific filters + * + * @return void + */ + public function addExtraHubFilters () { + // Add some filters here } }