system_default_region($theme)
system/system.module, line 1039
Get the name of the default region for a given theme.
$theme The name of a theme.
A string that is the region name.
<?php
function system_default_region($theme) {
$regions = array_keys(system_region_list($theme));
return $regions[0];
}
?>