You are here

function shoutbox_delete_form in Shoutbox 7

Same name and namespace in other branches
  1. 5 shoutbox.module \shoutbox_delete_form()
  2. 6.2 shoutbox.pages.inc \shoutbox_delete_form()
  3. 6 shoutbox.module \shoutbox_delete_form()
  4. 7.2 shoutbox.pages.inc \shoutbox_delete_form()

Shout delete confirmation form.

Parameters

shout_id: The shout id of the shout being edited.

1 string reference to 'shoutbox_delete_form'
shoutbox_menu in ./shoutbox.module
Implements hook_menu().

File

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

Code

function shoutbox_delete_form($form, &$form_state, $shout) {
  theme('shoutbox_external_files');
  _shoutbox_sanitize_shout($shout);
  $form['shout_preview'] = array(
    '#type' => 'item',
    '#value' => theme('shoutbox_post', array(
      'shout' => $shout,
    )),
  );
  $form['shout_id'] = array(
    '#type' => 'value',
    '#value' => $shout->shout_id,
  );
  $path = drupal_get_destination();
  $path = $path['destination'];
  $form = confirm_form($form, t('Are you sure you want to delete this ' . DEFAULTSHOUTSINGULAR . '?'), $path);
  return $form;
}