Hello,

I've made a long webform in dutch.
Now I also want the webform in english.
Is there a way to duplicate the webform? Making a new webform is taking very long (it a long webform)

Thanks!

Comments

Dennis Cohn’s picture

nodody???

mdolphin’s picture

jmary’s picture

This module save me the task to reproduce the structure of a webform involving 600 fields.

--
Julien MARY

rwyers’s picture

WOW you just saved me a HUGE deal of time and made me a HUGE deal of money being able to just duplicate a webform. thank you so very much EXCELLENT MOD

Furkids’s picture

OMG this just saved me so much time!!
And i learned how to download a module :)
thank you!

jo_as_neo’s picture

Works well in Dupral 7, too. Components aren't cloned, but can be deleted from cloned webform without affecting the first webform.

StephenRobinson’s picture

$from = 1476;
 $to = 16114;
 drupal_set_message('perform from node ' . $from . ' to node '.$to );
 $results = db_query("
 SELECT DISTINCT webform_component.*
 FROM webform_component
 WHERE nid=".$from);
 foreach($results as $result){
 $copy = $result;
 $copy->nid= $to ;
  drupal_set_message('<pre>'.htmlspecialchars(print_r($copy,1)).'</pre>' );
  drupal_write_record('webform_component', $copy);
 }