You are here

function uiplog_update_8101 in User IP Log 8

Same name and namespace in other branches
  1. 9.1.x uiplog.install \uiplog_update_8101()

Add default value for uiplog_user_delete_log to config.

File

./uiplog.install, line 59
Install, update and uninstall functions for the uiplog module.

Code

function uiplog_update_8101() {
  Drupal::configFactory()
    ->getEditable('uiplog.settings')
    ->set('uiplog_user_delete_log', 1)
    ->save();
}