function system_post_update_sdc_uninstall

Uninstall the sdc module if installed.

File

core/modules/system/system.post_update.php, line 83

Code

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

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