node_revision_revert_confirm

function node_revision_revert_confirm

node_revision_revert_confirm($form, $form_state, $node_revision)

Asks for confirmation of the reversion to prevent against CSRF attacks.

Parameters

int $node_revision: The node revision ID.

Return value

array An array as expected by drupal_render().

See also

node_menu()

node_revision_revert_confirm_submit()

Related topics

File

modules/node/node.pages.inc, line 627
Page callbacks for adding, editing, deleting, and revisions management for content.

Code

function node_revision_revert_confirm($form, $form_state, $node_revision) {
  $form['#node_revision'] = $node_revision;
  return confirm_form($form, t('Are you sure you want to revert to the revision from %revision-date?', array('%revision-date' => format_date($node_revision->revision_timestamp))), 'node/' . $node_revision->nid . '/revisions', '', t('Revert'), t('Cancel'));
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!node!node.pages.inc/function/node_revision_revert_confirm/7.x

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部