| 7 common.inc | drupal_get_region_content($region = NULL, $delimiter = ' ') |
| 8 common.inc | drupal_get_region_content($region = NULL, $delimiter = ' ') |
Gets assigned content for a given region.
Parameters
$region: A specified region to fetch content for. If NULL, all regions will be returned.
$delimiter: Content to be inserted between imploded array elements.
2 calls to drupal_get_region_content()
File
- includes/
common.inc, line 184 - Common functions that many Drupal modules will need to reference.
Code
function drupal_get_region_content($region = NULL, $delimiter = ' ') {
$content = drupal_add_region_content();
if (isset($region)) {
if (isset($content[$region]) && is_array($content[$region])) {
return implode($delimiter, $content[$region]);
}
}
else {
foreach (array_keys($content) as $region) {
if (is_array($content[$region])) {
$content[$region] = implode($delimiter, $content[$region]);
}
}
return $content;
}
}
Login or register to post comments