You are here

function webform_steps_update_7300 in Webform steps 7.3

Remove webform_steps_w3.

File

./webform_steps.install, line 6

Code

function webform_steps_update_7300() {
  if (module_exists('webform_steps_w3')) {
    module_disable([
      'webform_steps_w3',
    ], FALSE);
    drupal_uninstall_modules([
      'webform_steps_w3',
    ], FALSE);
  }
}