Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). Varbase Media Header 9.2.1 Minor update available for module varbase_media_header (9.2.1). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Content Translation Redirect Module content_translation_redirect crossed 1,000 active installs.

Group Block

46 sites Security covered
View on drupal.org

This module allows you to assign block content specifically to groups created with the Group module. This means you can have different blocks displayed for different groups.

This module is designed to associate group specific block content with a group when using the Group module.

Requirements

Versions

  • Group block 1.0 is based on Group 1.6
  • Group block 2.0 is based on Group 2.2
  • Group block 3.0 is based on Group 3.2

Migration from patch

There is no easy way to migrate from this patch to this module as everyone's group content IDs will be different but the following code will hopefully point you in the right direction.

$old_basic_block = 'group_content_type_480bfd4b64e96';
$new_basic_block = 'group_content_type_cd92bde0bdc52';
$group_content_storage = Drupal::entityTypeManager()->getStorage('group_content');

$group_block_old_basic = $group_content_storage->loadByProperties([
  'type' => $old_basic_block
]);

foreach ($group_block_old_basic as $groupblock) {
  $new_group_content = $group_content_storage->create([
    'type' => $new_basic_block,
    'langcode' => 'en',
    'gid' => $groupblock->gid->target_id,
    'entity_id' => $groupblock->entity_id->target_id
  ]);
  $new_group_content->save();
  $groupblock->delete();
}

Activity

Total releases
2
First release
Mar 2026
Latest release
4 months ago
Releases (12 mo)
2 ▲ from 0
Maintenance
Active

Releases

Version Type Release date
3.x-dev Dev Mar 4, 2026
2.x-dev Dev Mar 4, 2026