drupal_set_content($region = NULL, $data = NULL)
drupal-5/includes/common.inc, line 35
Set content for a specified region.
$region Page region the content is assigned to.
$data Content to be set.
<?php
function drupal_set_content($region = NULL, $data = NULL) {
static $content = array();
if (!is_null($region) && !is_null($data)) {
$content[$region][] = $data;
}
return $content;
}
?>