| 72 |
'#title' => t('Method'), |
'#title' => t('Method'), |
| 73 |
'#options' => array('normal' => t('Normal'), 'quick' => t('Quick')), |
'#options' => array('normal' => t('Normal'), 'quick' => t('Quick')), |
| 74 |
'#default_value' => 'normal', |
'#default_value' => 'normal', |
| 75 |
'#description' => t('Normal node delete calls node_delete() on every node in the database. If you have only a few hundred nodes, this can take a very long time. Use the quick node delete method to get around this problem. This method deletes directly from the database, skipping the extra php processing. The downside is that it can miss related tables that are normally handled by module hook_delete\'s.'), |
'#description' => t('Normal node delete calls node_delete() on every node in the database. If you have only a few hundred nodes, this can take a very long time. Use the quick node delete method to get around this problem. This method deletes directly from the database, skipping the extra php processing. It does a pretty good job; the only downside is that it experimental and can miss related tables that are normally handled by module hook_delete\'s, although it does try to catch these, and in actuality may not miss anything.'), |
| 76 |
), |
), |
| 77 |
); |
); |
| 78 |
$form['confirm'] = array( |
$form['confirm'] = array( |