function bulkdelete_form in Bulk Delete 6
Same name and namespace in other branches
- 7 bulkdelete.admin.inc \bulkdelete_form()
1 string reference to 'bulkdelete_form'
- bulkdelete_menu in ./
bulkdelete.module - Implementation of hook_menu().
File
- ./
bulkdelete.admin.inc, line 9
Code
function bulkdelete_form() {
$options = array();
$types = node_get_types();
ksort($types);
foreach ($types as $key => $values) {
$count = db_result(db_query("SELECT COUNT(nid) FROM {node} WHERE type='%s'", $key));
if ($count > 0) {
$options[$key] = "{$values->name} ({$key}) ({$count})";
}
}
$form['types'] = array(
'#type' => 'checkboxes',
'#title' => t('Content types for deletion'),
'#options' => $options,
'#description' => t('All nodes of these types will be deleted using the batch API.'),
);
$form['quick'] = array(
'#type' => 'radios',
'#title' => t('API'),
'#default_value' => 0,
'#options' => array(
0 => t('Standard'),
1 => t('Quick'),
),
'#description' => t('Please choose how to delete the nodes.'),
);
$form['standard_desc'] = array(
'#type' => 'item',
'#value' => t('<strong>Standard</strong> means we use node_delete() which is slower but reliable. <strong>Warning!</strong> You will get a watchdog message for every node that is deleted.'),
);
$form['quick_desc'] = array(
'#type' => 'item',
'#value' => t('<strong>Quick</strong> is very fast and means we try to discover all node delete hooks and use SQL to actually delete the nodes. This might run into erros, leave data behind or even crash.'),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Delete'),
);
return $form;
}