node_multiple_delete_confirm

5 node.module node_multiple_delete_confirm()
6 node.admin.inc node_multiple_delete_confirm(&$form_state, $nodes)
7 node.admin.inc node_multiple_delete_confirm($form, &$form_state, $nodes)
8 node.admin.inc node_multiple_delete_confirm($form, &$form_state, $nodes)

1 call to node_multiple_delete_confirm()

File

modules/node/node.admin.inc, line 566
Content administration and module settings UI.

Code

function node_multiple_delete_confirm($form, &$form_state, $nodes) {
  $form['nodes'] = array(
    '#prefix' => '<ul>',
    '#suffix' => '</ul>',
    '#tree' => TRUE,
  );
  // array_filter returns only elements with TRUE values
  foreach ($nodes as $nid => $value) {
    $title = db_query('SELECT title FROM {node} WHERE nid = :nid', array(':nid' => $nid))->fetchField();
    $form['nodes'][$nid] = array(
      '#type' => 'hidden', 
      '#value' => $nid, 
      '#prefix' => '<li>', 
      '#suffix' => check_plain($title) . "</li>\n",
    );
  }
  $form['operation'] = array(
    '#type' => 'hidden',
    '#value' => 'delete',
  );
  $form['#submit'][] = 'node_multiple_delete_confirm_submit';
  $confirm_question = format_plural(count($nodes), 
                                  'Are you sure you want to delete this item?', 
                                  'Are you sure you want to delete these items?');
  return confirm_form($form, 
                    $confirm_question, 
                    'admin/content', t('This action cannot be undone.'), 
                    t('Delete'), t('Cancel'));
}
Login or register to post comments