function node_revision_delete_confirm
Form constructor for the revision deletion confirmation form.
This form prevents against CSRF attacks.
Parameters
$node_revision: The node revision ID.
Return value
An array as expected by drupal_render().
See also
node_revision_delete_confirm_submit()
Related topics
1 string reference to 'node_revision_delete_confirm'
- node_menu in modules/
node/ node.module - Implements hook_menu().
File
-
modules/
node/ node.pages.inc, line 662
Code
function node_revision_delete_confirm($form, $form_state, $node_revision) {
$form['#node_revision'] = $node_revision;
return confirm_form($form, t('Are you sure you want to delete the revision from %revision-date?', array(
'%revision-date' => format_date($node_revision->revision_timestamp),
)), 'node/' . $node_revision->nid . '/revisions', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.