You are here

config_override_warn.install in Configuration Override Warn 8

Install and update functions for the config_override_warn module.

File

config_override_warn.install
View source
<?php

/**
 * @file
 * Install and update functions for the config_override_warn module.
 */

/**
 * Save the new settings.
 */
function config_override_warn_update_8101() {
  \Drupal::configFactory()
    ->getEditable('config_override_warn.settings')
    ->setData([
    'show_values' => TRUE,
  ])
    ->save();
}

Functions

Namesort descending Description
config_override_warn_update_8101 Save the new settings.