Change prefix with the module name to avoid conflicts

This commit is contained in:
samiahmedsiddiqui
2018-10-08 18:44:50 +05:00
parent d5b078b3f9
commit b94d2b1c72
10 changed files with 83 additions and 42 deletions

View File

@@ -9,13 +9,54 @@
* Implements hook_uninstall().
*/
function header_and_footer_scripts_uninstall() {
\Drupal::service('config.factory')
->getEditable('header_and_footer_scripts.header.settings')
->delete();
\Drupal::service('config.factory')
->getEditable('header_and_footer_scripts.body.settings')
->delete();
\Drupal::service('config.factory')
->getEditable('header_and_footer_scripts.footer.settings')
->delete();
}
/**
* Implements hook_update_N().
*
* Adding new configuration variables and updating current configuration
* in it to avoid conflict with any other module.
*/
function header_and_footer_scripts_update_8201() {
$body_section = \Drupal::config('hfs_body_scripts.settings')->get();
$footer_section = \Drupal::config('hfs_footer_scripts.settings')->get();
if (isset($body_section['styles'])) {
\Drupal::configFactory()
->getEditable('header_and_footer_scripts.body.settings')
->set('styles', $body_section['styles'])
->save();
}
if (isset($body_section['scripts'])) {
\Drupal::configFactory()
->getEditable('header_and_footer_scripts.body.settings')
->set('scripts', $body_section['scripts'])
->save();
}
\Drupal::service('config.factory')
->getEditable('hfs_body_scripts.settings')
->delete();
if (isset($footer_section['styles'])) {
\Drupal::configFactory()
->getEditable('header_and_footer_scripts.footer.settings')
->set('styles', $footer_section['styles'])
->save();
}
if (isset($footer_section['scripts'])) {
\Drupal::configFactory()
->getEditable('header_and_footer_scripts.footer.settings')
->set('scripts', $footer_section['scripts'])
->save();
}
\Drupal::service('config.factory')
->getEditable('hfs_footer_scripts.settings')
->delete();
\Drupal::service('config.factory')
->getEditable('hfs_header_scripts.settings')
->delete();
}