You are here

function yamlform_update_8030 in YAML Form 8

Issue #2773325: Remove captcha formatting.

File

includes/yamlform.update.inc, line 697
YAML Form module update hooks.

Code

function yamlform_update_8030(&$sandbox) {

  // Update 'yamlform.settings' configuration.
  $settings_config = \Drupal::configFactory()
    ->getEditable('yamlform.settings');
  $settings_config
    ->clear('format.captcha');
  $settings_config
    ->save();
}