function _webform_share_eval in Webform share 6
Same name and namespace in other branches
- 7 webform_share.module \_webform_share_eval()
Private helper function to assist in getting the information from the webform dump.
2 calls to _webform_share_eval()
- webform_share_components_update_form_submit in ./
webform_share.module - Submit callback to update the node.
- webform_share_nodeapi in ./
webform_share.module - Implements hook_nodeapi(). Sets the default components on a webbform node.
File
- ./
webform_share.module, line 205 - Module to handle importing and exporting of webforms, as well as adding the ability to set content type defaults.
Code
function _webform_share_eval($str) {
eval($str);
return $webform;
}