You are here

function theme_shoutbox_publish_form in Shoutbox 6

Display a confirmation page for publsihing a moderated shout.

Parameters

shout_id: The id of the shoutto be published.

Return value

HTML asking the user to confirm.

File

./shoutbox.pages.inc, line 39
Page callbacks for the shoutbox module.

Code

function theme_shoutbox_publish_form($shout) {
  _shoutbox_sanitize_shout($shout);
  $output = '';
  $output .= theme('shoutbox_post', $shout);
  $output .= drupal_get_form('shoutbox_publish_form', $shout);
  return $output;
}