drupal_get_content

  1. drupal
    1. 4.7
    2. 5
    3. 6 common.inc
Versions
4.7 – 6 drupal_get_content($region = NULL, $delimiter = ' ')

Get assigned content.

Parameters

$region A specified region to fetch content for. If null, all regions will be returned.

$delimiter Content to be inserted between exploded array elements.

▾ 1 function calls drupal_get_content()

theme_blocks in includes/theme.inc
Return a set of blocks available for the current user.

Code

includes/common.inc, line 54

<?php
function drupal_get_content($region = NULL, $delimiter = ' ') {
  $content = drupal_set_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;
  }
}
?>