header_and_footer_scripts/header_and_footer_scripts.install
2017-09-18 11:41:56 +05:00

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();
}