Howdy,
While setting up this module, I noticed that I was not getting the extra form elements on my webform edit screen. I opened up your module code and noticed that _sfweb2lead_webform_check_settings() requires all variables to be not empty:
if ( empty ($sfweb2lead_webform_oid) || empty ($sfweb2lead_webform_mapping_settings) || empty ($sfweb2lead_webform_url) ) {
return FALSE;
}
else {
return TRUE;
}
Just thought I'd bring it to your attention...
Thanks!
Comments
Comment #1
chriscalip commentedthanks nick, for the heads up. I added a label paragraph on the config settings page that the webform mapping fields are required. too bad I cannot put in the required * on those mapping fields due to multicrud api.
Comment #2
chriscalip commented