You are here

protected function BlockListBuilder::systemRegionList in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/block/src/BlockListBuilder.php \Drupal\block\BlockListBuilder::systemRegionList()
  2. 9 core/modules/block/src/BlockListBuilder.php \Drupal\block\BlockListBuilder::systemRegionList()

Wraps system_region_list().

1 call to BlockListBuilder::systemRegionList()
BlockListBuilder::buildBlocksForm in core/modules/block/src/BlockListBuilder.php
Builds the main "Blocks" portion of the form.

File

core/modules/block/src/BlockListBuilder.php, line 396

Class

BlockListBuilder
Defines a class to build a listing of block entities.

Namespace

Drupal\block

Code

protected function systemRegionList($theme, $show = REGIONS_ALL) {
  return system_region_list($theme, $show);
}