You are here

config_partial_export.install in Config Partial Export 8

Removes its storage object from the state of site instance.

File

config_partial_export.install
View source
<?php

/**
 * @file
 * Removes its storage object from the state of site instance.
 */

/**
 * Implements hook_uninstall().
 */
function config_partial_export_uninstall() {

  // Remove the storage object used by this module.
  \Drupal::state()
    ->delete('config_partial_export_form');
}

Functions