contact_storage_export.install in Contact Storage Export 8
Contact Storage Export installation and updates.
File
contact_storage_export.installView source
<?php
/**
* @file
* Contact Storage Export installation and updates.
*/
/**
* Remove the empty malformed contact storage download config if it exists.
*/
function contact_storage_export_update_8001(&$sandbox) {
$config = \Drupal::configFactory()
->getEditable('contact_storage_export.ContactStorageDownload');
if ($config) {
$config
->delete();
}
}
Functions
Name | Description |
---|---|
contact_storage_export_update_8001 | Remove the empty malformed contact storage download config if it exists. |