config_partial_export.install in Config Partial Export 8
Removes its storage object from the state of site instance.
File
config_partial_export.installView 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
Name | Description |
---|---|
config_partial_export_uninstall | Implements hook_uninstall(). |