You are here

public function ActiveTheme::getRegions in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Theme/ActiveTheme.php \Drupal\Core\Theme\ActiveTheme::getRegions()

The regions used by the theme.

Return value

string[] The list of region machine names supported by the theme.

See also

system_region_list()

File

core/lib/Drupal/Core/Theme/ActiveTheme.php, line 280

Class

ActiveTheme
Defines a theme and its information needed at runtime.

Namespace

Drupal\Core\Theme

Code

public function getRegions() {
  return array_keys($this->regions);
}