function drupal_add_region_content

7.x common.inc drupal_add_region_content($region = NULL, $data = NULL)

Adds content to a specified region.

Parameters

$region: Page region the content is added to.

$data: Content to be added.

4 calls to drupal_add_region_content()
DrupalSetContentTestCase::testRegions in drupal-7.x/modules/simpletest/tests/common.test
Test setting and retrieving content for theme regions.
drupal_get_region_content in drupal-7.x/includes/common.inc
Gets assigned content for a given region.
install_display_output in drupal-7.x/includes/install.core.inc
Displays themed installer output and ends the page request.
update_task_list in drupal-7.x/update.php
Adds the update task list to the current page.

File

drupal-7.x/includes/common.inc, line 175
Common functions that many Drupal modules will need to reference.

Code

function drupal_add_region_content($region = NULL, $data = NULL) {
  static $content = array();

  if (isset($region) && isset($data)) {
    $content[$region][] = $data;
  }
  return $content;
}