You are here

function webform_steps_install in Webform steps 7.2

Implements hook_install().

File

./webform_steps.install, line 6

Code

function webform_steps_install() {
  if (!function_exists('webform_page_labels')) {

    // We are on webform3 - we must enable the shim.
    module_enable(array(
      'webform_steps_w3',
    ), FALSE);
  }
}