/[drupal]/contributions/modules/delete_all/delete_all.module
ViewVC logotype

Diff of /contributions/modules/delete_all/delete_all.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.2.5, Wed Dec 26 23:20:58 2007 UTC revision 1.1.2.6, Fri Jan 18 19:22:35 2008 UTC
# Line 72  function delete_all_content() { Line 72  function delete_all_content() {
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(

Legend:
Removed from v.1.1.2.5  
changed lines
  Added in v.1.1.2.6

  ViewVC Help
Powered by ViewVC 1.1.2