drupal_get_region_content

Versions
mediamosa-21
drupal_get_region_content($region = NULL, $delimiter = ' ')

Get 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.

▾ 1 function calls drupal_get_region_content()

template_preprocess_maintenance_page in includes/theme.inc
The variables array generated here is a mirror of template_preprocess_page(). This preprocessor will run its course when theme_maintenance_page() is invoked. It is also used in theme_install_page() and theme_update_page() to keep all the variables...

Code

includes/common.inc, line 179

<?php
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;
  }
}
?>