You are here

function extlink_update_8102 in External Links 8

Add extlink_exclude_admin_routes to the default configuration.

File

./extlink.install, line 30
Install hook for the External Links module.

Code

function extlink_update_8102() {
  \Drupal::configFactory()
    ->getEditable('extlink.settings')
    ->set('extlink_exclude_admin_routes', FALSE)
    ->save();
}