You are here

protected function BlockDeleteForm::systemRegionList in Drupal 10

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

Wraps system_region_list().

2 calls to BlockDeleteForm::systemRegionList()
BlockDeleteForm::getDeletionMessage in core/modules/block/src/Form/BlockDeleteForm.php
Gets the message to display to the user after deleting the entity.
BlockDeleteForm::getQuestion in core/modules/block/src/Form/BlockDeleteForm.php

File

core/modules/block/src/Form/BlockDeleteForm.php, line 67

Class

BlockDeleteForm
Provides a deletion confirmation form for the block instance deletion form.

Namespace

Drupal\block\Form

Code

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