You are here

function webform_captcha_entity_insert in Webform Captcha 7

Implements hook_entity_insert().

File

./webform_captcha.module, line 6

Code

function webform_captcha_entity_insert($entity, $type) {
  if (variable_get('webform_captcha_enabled_by_default', 0)) {
    _webform_captcha__set_webform_captcha('default', $entity, $type);
  }
}