You are here

protected function BlockFormBase::getThemeRegionOptions in Context 8.0

Same name and namespace in other branches
  1. 8.4 src/Reaction/Blocks/Form/BlockFormBase.php \Drupal\context\Reaction\Blocks\Form\BlockFormBase::getThemeRegionOptions()
  2. 8 src/Reaction/Blocks/Form/BlockFormBase.php \Drupal\context\Reaction\Blocks\Form\BlockFormBase::getThemeRegionOptions()

Get a list of regions for the select list.

Parameters

string $theme: The theme to get a list of regions for.

string $show: What type of regions that should be returned, defaults to all regions.

Return value

array

1 call to BlockFormBase::getThemeRegionOptions()
BlockFormBase::buildForm in src/Reaction/Blocks/Form/BlockFormBase.php
Form constructor.

File

src/Reaction/Blocks/Form/BlockFormBase.php, line 290

Class

BlockFormBase

Namespace

Drupal\context\Reaction\Blocks\Form

Code

protected function getThemeRegionOptions($theme, $show = REGIONS_ALL) {
  $regions = system_region_list($theme, $show);
  foreach ($regions as $region => $title) {
    $regions[$region] = $title;
  }
  return $regions;
}