function 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 104
Class
- BlockController
- Controller routines for admin block routes.
Namespace
Drupal\block\ControllerCode
protected function getVisibleRegionNames($theme) {
return system_region_list($theme, REGIONS_VISIBLE);
}