]> git.mxchange.org Git - hub.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sat, 18 Feb 2023 03:35:23 +0000 (04:35 +0100)
committerRoland Häder <roland@mxchange.org>
Sat, 18 Feb 2023 03:35:23 +0000 (04:35 +0100)
- added missing namespaces to configuration entries
- added missing "import" line for BaseChatFilter

application/hub/classes/filter/bootstrap/chat/class_ChatBootstrapExtraBootstrappingFilter.php
application/hub/classes/filter/bootstrap/chat/class_ChatBootstrapGenericActivationFilter.php
application/hub/classes/filter/chat/class_ChatInitializationFilter.php
application/hub/classes/filter/chat/class_ChatPhpRequirementsFilter.php
application/hub/classes/filter/chat/class_ChatWelcomeTeaserFilter.php
application/hub/classes/filter/shutdown/chat/class_ChatShutdownFilter.php
application/hub/classes/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php
application/hub/config.php
application/hub/interfaces/chat/class_Chatter.php

index c210218ac0e864d7077b8b22168fa03f249caeeb..4c01b7e6abe42292faa1dd43867ebcd3db1699ad 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Filter\Bootstrap\Chat\Extra;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Filter\Filterable;
 use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
index 22b9bf0d265af6da6e6d957a65486f32c170cf30..bc9856ca680738ae2337b4ba826164100df3a7cc 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Filter\Bootstrap\Chat\Activation;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Filter\Filterable;
 use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
index e8a8595565bf7d69690aa16dc85fd3a9e673e3de..696f5409cf524874eac6eecde357b4b5bcc373ae 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Chat\Filter\Initialization;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Factory\Object\ObjectFactory;
 use Org\Mxchange\CoreFramework\Filter\Filterable;
index 253d259c2bf5f48b2dec115dc7c3eebe5c0622a8..e4e3898076d2f36ac361c5575f4608c0dabde9fa 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Chat\Filter\Requirements;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Filter\Filterable;
 use Org\Mxchange\CoreFramework\Request\Requestable;
index ec773a38e92fbc9ae550481d5fc7f52516445466..60e742bff5e3f07a3f8232455c77ff0749a251b6 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Chat\Filter\WelcomeTeaser;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Filter\Filterable;
 use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
index ba0cff43b13b76d347730f1cc0ebca4f6ea473d6..a56783256851441585c404ce15dfcf6e84f877fa 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Filter\Shutdown\Chat;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Filter\Filterable;
 use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
index 536b471668cf4797d371220e487052350f2c4930..49164f38ec501022aa44658ae4493bf2338b1c93 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Org\Shipsimu\Hub\Filter\Initializer\Chat\Handler\Task;
 
+// Import app-specific stuff
+use Org\Shipsimu\Hub\Chat\Filter\BaseChatFilter;
+
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Factory\Object\ObjectFactory;
 use Org\Mxchange\CoreFramework\Filter\Filterable;
index 48170c5221cc90a1e5967d53461496efca445d00..713c2a136a0668997d1f748bb87901af83d1265f 100644 (file)
@@ -1229,31 +1229,31 @@ $cfg->setConfigEntry('cruncher_per_unit_key_limit', 1000);
 $cfg->setConfigEntry('hub_console_cmd_chat_resolver_class', 'Org\Shipsimu\Hub\Resolver\Command\HubConsoleCommandResolver');
 
 // CFG: CHAT-PHP-REQUIREMENTS-FILTER-CLASS
-$cfg->setConfigEntry('chat_php_requirements_filter_class', 'ChatPhpRequirementsFilter');
+$cfg->setConfigEntry('chat_php_requirements_filter_class', 'Org\Shipsimu\Hub\Chat\Filter\Requirements\ChatPhpRequirementsFilter');
 
 // CFG: CHAT-INITIALIZER-FILTER-CLASS
-$cfg->setConfigEntry('chat_initializer_filter_class', 'ChatInitializationFilter');
+$cfg->setConfigEntry('chat_initializer_filter_class', 'Org\Shipsimu\Hub\Chat\Filter\Initialization\ChatInitializationFilter');
 
 // CFG: NODE-CONSOLE-CHAT
-$cfg->setConfigEntry('node_console_chat_class', 'NodeConsoleChat');
+$cfg->setConfigEntry('node_console_chat_class', 'Org\Shipsimu\Hub\Chat\NodeConsoleChat');
 
 // CFG: CHAT-WELCOME-TEASER-FILTER-CLASS
-$cfg->setConfigEntry('chat_welcome_teaser_filter_class', 'ChatWelcomeTeaserFilter');
+$cfg->setConfigEntry('chat_welcome_teaser_filter_class', 'Org\Shipsimu\Hub\Chat\Filter\WelcomeTeaser\ChatWelcomeTeaserFilter');
 
 // CFG: CHAT-BOOTSTRAP-TASK-HANDLER-INITIALIZER-FILTER-CLASS
-$cfg->setConfigEntry('chat_bootstrap_task_handler_initializer_filter_class', 'ChatTaskHandlerInitializerFilter');
+$cfg->setConfigEntry('chat_bootstrap_task_handler_initializer_filter_class', 'Org\Shipsimu\Hub\Filter\Initializer\Chat\Handler\Task\ChatTaskHandlerInitializerFilter');
 
 // CFG: CHAT-BOOTSTRAP-EXTRA-BOOTSTRAPPING-FILTER-CLASS
-$cfg->setConfigEntry('chat_bootstrap_extra_bootstrapping_filter_class', 'ChatBootstrapExtraBootstrappingFilter');
+$cfg->setConfigEntry('chat_bootstrap_extra_bootstrapping_filter_class', 'Org\Shipsimu\Hub\Filter\Bootstrap\Chat\Extra\ChatBootstrapExtraBootstrappingFilter');
 
 // CFG: CHAT-BOOTSTRAP-GENERIC-ACTIVATION-FILTER-CLASS
-$cfg->setConfigEntry('chat_bootstrap_generic_activation_filter_class', 'ChatBootstrapGenericActivationFilter');
+$cfg->setConfigEntry('chat_bootstrap_generic_activation_filter_class', 'Org\Shipsimu\Hub\Filter\Bootstrap\Chat\Activation\ChatBootstrapGenericActivationFilter');
 
 // CFG: CHAT-SHUTDOWN-FILTER-CLASS
-$cfg->setConfigEntry('chat_shutdown_filter_class', 'ChatShutdownFilter');
+$cfg->setConfigEntry('chat_shutdown_filter_class', 'Org\Shipsimu\Hub\Filter\Shutdown\Chat\ChatShutdownFilter');
 
 // CFG: CHAT-TELNET-LISTENER-TASK-CLASS
-$cfg->setConfigEntry('chat_telnet_listener_task_class', 'ChatTelnetListenerTask');
+$cfg->setConfigEntry('chat_telnet_listener_task_class', 'Org\Shipsimu\Hub\Chat\Task\Listener\Telnet\ChatTelnetListenerTask');
 
 // CFG: TASK-CHAT-TELNET-LISTENER-STARTUP-DELAY
 $cfg->setConfigEntry('task_chat_telnet_listener_startup_delay', 2500);
index aa15ca3907b4cd6551377c16b923c50ef37f3946..2d4456270d755cac37e0b2589c0c11ebe8b62bb9 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // Own namespace
-namespace Org\Shipsimu\Hub\Chatter;
+namespace Org\Shipsimu\Hub\Chat;
 
 // Import application-specific stuff
 use Org\Shipsimu\Hub\Generic\HubInterface;