function theme_blocks

6.x theme.inc theme_blocks($region)

Return a set of blocks available for the current user.

Parameters

$region: Which set of blocks to retrieve.

Return value

A string containing the themed blocks for this region.

Related topics

1 call to theme_blocks()
chameleon_page in drupal-6.x/themes/chameleon/chameleon.theme
1 theme call to theme_blocks()
template_preprocess_page in drupal-6.x/includes/theme.inc
Process variables for page.tpl.php

File

drupal-6.x/includes/theme.inc, line 1651
The theme system, which controls the output of Drupal.

Code

function theme_blocks($region) {
  $output = '';

  if ($list = block_list($region)) {
    foreach ($list as $key => $block) {
      // $key == <i>module</i>_<i>delta</i>
      $output .= theme('block', $block);
    }
  }

  // Add any content assigned to this region through drupal_set_content() calls.
  $output .= drupal_get_content($region);

  return $output;
}