You are here

function structure_sync_uninstall in Structure Sync 8

Same name and namespace in other branches
  1. 2.x structure_sync.install \structure_sync_uninstall()

Implements hook_uninstall().

File

./structure_sync.install, line 11
Function for structure_sync uninstall.

Code

function structure_sync_uninstall() {
  Drupal::configFactory()
    ->getEditable('structure_sync.data')
    ->delete();
}