function node_revision_delete_confirm
Same name and namespace in other branches
- 7.x drupal-7.x/modules/node/node.pages.inc \node_revision_delete_confirm()
1 string reference to 'node_revision_delete_confirm'
- node_menu in drupal-6.x/modules/node/node.module
- Implementation of hook_menu().
Archivo
- drupal-6.x/modules/node/node.pages.inc, line 594
- Page callbacks for adding, editing, deleting, and revisions management for content.
Código
function node_revision_delete_confirm($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'));
}