header_and_footer_scripts/header_and_footer_scripts.install
2017-09-16 01:30:06 +05:00

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