You are here

function system_default_region in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/system.module \system_default_region()

Gets the name of the default region for a given theme.

Parameters

$theme: The name of a theme.

Return value

A string that is the region name.

1 call to system_default_region()
block_theme_initialize in core/modules/block/block.module
Assigns an initial, default set of blocks for a theme.

File

core/modules/system/system.module, line 1151
Configuration system that lets administrators modify the workings of the site.

Code

function system_default_region($theme) {
  $regions = array_keys(system_region_list($theme, REGIONS_VISIBLE));
  return isset($regions[0]) ? $regions[0] : '';
}