drupal_add_region_content($region = NULL, $data = NULL)Add content to a specified region.
$region Page region the content is added to.
$data Content to be added.
includes/common.inc, line 161
<?php
function drupal_add_region_content($region = NULL, $data = NULL) {
static $content = array();
if (!is_null($region) && !is_null($data)) {
$content[$region][] = $data;
}
return $content;
}
?>