You are here

function loqate_update_8001 in Loqate 8

Same name and namespace in other branches
  1. 2.x loqate.install \loqate_update_8001()

Decoupled Webform so install pca_webform submodule for the moved plugins.

File

./loqate.install, line 14
Contains loqate.install.

Code

function loqate_update_8001() {

  // All sites using this module up until now would have had these plugins.
  \Drupal::service('module_installer')
    ->install([
    'pca_webform',
  ]);
  return t('PCA Webform installed.');
}