Drush Webform Health
Component type
Categories
Maintenance status
Development status
Downloads
Component created
Component changed
Check the status of webforms using drush. The module currently supports the following commands:
drush webform-email-check
Check that all of the webforms on a website have email addresses associated with them. This command could be used to check a group of websites in bulk if needed:
#!/bin/sh
for x in $(egrep -l "define.*VERSION.*7." $(find . -name 'bootstrap.inc')); do
cd "$(dirname "$x")";
drush wec
cd - > /dev/null
done;