node_delete_confirm

function node_delete_confirm

node_delete_confirm($form, &$form_state, $node)

Form constructor for the node deletion confirmation form.

See also

node_delete_confirm_submit()

File

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

Code

function node_delete_confirm($form, &$form_state, $node) {
  $form['#node'] = $node;
  // Always provide entity id in the same form key as in the entity edit form.
  $form['nid'] = array('#type' => 'value', '#value' => $node->nid);
  return confirm_form($form, 
  t('Are you sure you want to delete %title?', array('%title' => $node->title)), 
  'node/' . $node->nid, 
  t('This action cannot be undone.'), 
  t('Delete'), 
  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_delete_confirm/7.x

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部