From 77d4b2bbcfe98d6c3d7e970caf77eeae5a8b162d Mon Sep 17 00:00:00 2001 From: Denis Kolmerschlag Date: Thu, 17 Oct 2024 09:03:33 +0200 Subject: [PATCH] Install hux. --- .../social_features/social_core/social_core.info.yml | 1 + .../social_features/social_core/social_core.install | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/modules/social_features/social_core/social_core.info.yml b/modules/social_features/social_core/social_core.info.yml index 7bfdfef8d3a..e57f0a2e69e 100644 --- a/modules/social_features/social_core/social_core.info.yml +++ b/modules/social_features/social_core/social_core.info.yml @@ -12,6 +12,7 @@ dependencies: - field_group:field_group - drupal:file - drupal:image + - drupal:hux - redirect:redirect - image_effects:image_effects - image_widget_crop:image_widget_crop diff --git a/modules/social_features/social_core/social_core.install b/modules/social_features/social_core/social_core.install index d13f4a19109..35919894a10 100644 --- a/modules/social_features/social_core/social_core.install +++ b/modules/social_features/social_core/social_core.install @@ -552,3 +552,13 @@ function social_core_update_130009(): void { ]; \Drupal::service('module_installer')->install($modules); } + +/** + * Install drupal/hux module. + */ +function social_core_update_130010(): void { + $modules = [ + 'hux', + ]; + \Drupal::service('module_installer')->install($modules); +}