You are here

protected function BlockController::getVisibleRegionNames in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block/src/Controller/BlockController.php \Drupal\block\Controller\BlockController::getVisibleRegionNames()
  2. 10 core/modules/block/src/Controller/BlockController.php \Drupal\block\Controller\BlockController::getVisibleRegionNames()

Returns the human-readable list of regions keyed by machine name.

Parameters

string $theme: The name of the theme.

Return value

array An array of human-readable region names keyed by machine name.

1 call to BlockController::getVisibleRegionNames()
BlockController::demo in core/modules/block/src/Controller/BlockController.php
Returns a block theme demo page.

File

core/modules/block/src/Controller/BlockController.php, line 114

Class

BlockController
Controller routines for admin block routes.

Namespace

Drupal\block\Controller

Code

protected function getVisibleRegionNames($theme) {
  return system_region_list($theme, REGIONS_VISIBLE);
}