You are here

function shoutbox_publish_form in Shoutbox 5

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

Displays a "Are you sure message ?" with a Yes and Cancel option.

Parameters

shout_id: The shout id of the shout being published.

1 string reference to 'shoutbox_publish_form'
shoutbox_callback in ./shoutbox.module
Function to handle shoutbox callbacks that require a shout_id. Does some sanity checking on on the id before forwarding to the actual callback.

File

./shoutbox.module, line 645
shoutbox module displays a block for users to create short messages for thw whole site. Uses AHAH to update the database and display content.

Code

function shoutbox_publish_form($shout_id) {
  $form['shout_id'] = array(
    '#type' => 'value',
    '#value' => $shout_id,
  );
  $form = confirm_form($form, t('Are you sure you want to publish this shout?'), '', t(''));
  return $form;
}