You are here

function theme_scs_region_output in Simplenews Content Selection 6.2

Theme a region block

1 theme call to theme_scs_region_output()
theme_scs_newsletter_output in ./scs.theme.inc
Theme a complete newsletter.

File

./scs.theme.inc, line 199
Select Drupal content to create a newsletter

Code

function theme_scs_region_output($regionid, $content) {
  $output = '';
  $output .= sprintf('<div class="region" id="region-%d">', $regionid);
  $output .= '<h1>Region ' . $regionid . '</h1>';
  $output .= $content;
  $output .= sprintf('</div>');
  return $output;
}