19 lines
379 B
Plaintext
19 lines
379 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Uninstall functions for header_and_footer_scripts module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_uninstall().
|
|
*/
|
|
function header_and_footer_scripts_uninstall() {
|
|
\Drupal::service('config.factory')
|
|
->getEditable('hfs_body_scripts.settings')
|
|
->delete();
|
|
\Drupal::service('config.factory')
|
|
->getEditable('hfs_footer_scripts.settings')
|
|
->delete();
|
|
}
|