15 lines
359 B
Plaintext
15 lines
359 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();
|
|
}
|