function help_post_update_help_topics_uninstall

Uninstall the help_topics module if installed.

File

core/modules/help/help.post_update.php, line 95

Code

function help_post_update_help_topics_uninstall() {
  if (\Drupal::moduleHandler()->moduleExists('help_topics')) {
    \Drupal::service('module_installer')->uninstall([
      'help_topics',
    ], FALSE);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.