You are here

structure_sync.install in Structure Sync 8

Same filename and directory in other branches
  1. 2.x structure_sync.install

Function for structure_sync uninstall.

File

structure_sync.install
View source
<?php

/**
 * @file
 * Function for structure_sync uninstall.
 */

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

Functions

Namesort descending Description
structure_sync_uninstall Implements hook_uninstall().