Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
drupal/melt_modal / melt_modal.install
Size: Mime:
<?php

/**
 * Add request path to the default configuratio.
 */
function melt_modal_update_8001() {
  $config_factory = \Drupal::configFactory();
  $config = $config_factory->getEditable('melt_modal.modal');
  $config->set('request_path', []);
  $config->save(TRUE);
}