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