summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/ControlPanel.php
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-04-03 12:15:10 +0100
committerGreg Roach <greg@subaqua.co.uk>2022-04-03 13:18:31 +0100
commit00c92694dd3637f3b741bcc2df92d58d9df74043 (patch)
tree619760b40b8dc544aae9ac80fc691644408ca165 /app/Http/RequestHandlers/ControlPanel.php
parent9f0bdfcdb2cc634a8fc900f60eba68ec6c5d37fd (diff)
downloadwebtrees-00c92694dd3637f3b741bcc2df92d58d9df74043.tar.gz
webtrees-00c92694dd3637f3b741bcc2df92d58d9df74043.tar.bz2
webtrees-00c92694dd3637f3b741bcc2df92d58d9df74043.zip
Refactor custom tags. Replace modules with hard-coded configuration options
Diffstat (limited to 'app/Http/RequestHandlers/ControlPanel.php')
-rw-r--r--app/Http/RequestHandlers/ControlPanel.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/Http/RequestHandlers/ControlPanel.php b/app/Http/RequestHandlers/ControlPanel.php
index 02e8c944f2..1814fb2e02 100644
--- a/app/Http/RequestHandlers/ControlPanel.php
+++ b/app/Http/RequestHandlers/ControlPanel.php
@@ -28,7 +28,6 @@ use Fisharebest\Webtrees\Module\ModuleAnalyticsInterface;
use Fisharebest\Webtrees\Module\ModuleBlockInterface;
use Fisharebest\Webtrees\Module\ModuleChartInterface;
use Fisharebest\Webtrees\Module\ModuleCustomInterface;
-use Fisharebest\Webtrees\Module\ModuleCustomTagsInterface;
use Fisharebest\Webtrees\Module\ModuleDataFixInterface;
use Fisharebest\Webtrees\Module\ModuleFooterInterface;
use Fisharebest\Webtrees\Module\ModuleHistoricEventsInterface;
@@ -186,8 +185,6 @@ class ControlPanel implements RequestHandlerInterface
'chart_modules_disabled' => $this->module_service->findByInterface(ModuleChartInterface::class, true),
'chart_modules_enabled' => $this->module_service->findByInterface(ModuleChartInterface::class),
'custom_updates' => $custom_updates,
- 'custom_tags_modules_disabled' => $this->module_service->findByInterface(ModuleCustomTagsInterface::class, true),
- 'custom_tags_modules_enabled' => $this->module_service->findByInterface(ModuleCustomTagsInterface::class),
'data_fix_modules_disabled' => $this->module_service->findByInterface(ModuleDataFixInterface::class, true),
'data_fix_modules_enabled' => $this->module_service->findByInterface(ModuleDataFixInterface::class),
'other_modules' => $this->module_service->otherModules(true),