summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/ControlPanel.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2021-05-11 13:48:42 +0100
committerGreg Roach <fisharebest@gmail.com>2021-05-12 10:14:26 +0100
commit4da968426af896ee6732892cfd7b463b4397abaf (patch)
tree03014345a7687974ba826805b5fa70a94a764ee8 /app/Http/RequestHandlers/ControlPanel.php
parente677b14eb9220ee0899bda044483aefa6580a143 (diff)
downloadwebtrees-4da968426af896ee6732892cfd7b463b4397abaf.tar.gz
webtrees-4da968426af896ee6732892cfd7b463b4397abaf.tar.bz2
webtrees-4da968426af896ee6732892cfd7b463b4397abaf.zip
Merge changes from develop
Diffstat (limited to 'app/Http/RequestHandlers/ControlPanel.php')
-rw-r--r--app/Http/RequestHandlers/ControlPanel.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Http/RequestHandlers/ControlPanel.php b/app/Http/RequestHandlers/ControlPanel.php
index 6cde5e350a..4373ecc4ad 100644
--- a/app/Http/RequestHandlers/ControlPanel.php
+++ b/app/Http/RequestHandlers/ControlPanel.php
@@ -28,6 +28,7 @@ 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;
@@ -178,6 +179,8 @@ 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),