function webform_steps_update_7200 in Webform steps 7.3
Same name and namespace in other branches
- 7.2 webform_steps.install \webform_steps_update_7200()
Enable webform_steps_w3.
File
- ./
webform_steps.install, line 16
Code
function webform_steps_update_7200() {
// Enable webform_steps_w3 if webform4 is not available.
if (!function_exists('template_preprocess_webform_progressbar')) {
module_enable(array(
'webform_steps_w3',
), FALSE);
variable_set('webform_progressbar_style', array(
'progressbar_bar',
'progressbar_pagebreak_labels',
));
}
}