function theme_shoutbox_delete_form in Shoutbox 6
Function to handle deleting of shouts.
Parameters
shout_id: The shout id to be deleted.
Return value
HTML asking the user to confirm.
File
- ./
shoutbox.pages.inc, line 21 - Page callbacks for the shoutbox module.
Code
function theme_shoutbox_delete_form($shout) {
_shoutbox_sanitize_shout($shout);
$output = '';
$output .= theme('shoutbox_post', $shout);
$output .= drupal_get_form('shoutbox_delete_form', $shout);
return $output;
}