You are here

function simplesamlphp_auth_update_8301 in simpleSAMLphp Authentication 8.3

Provide a default value for the new login_link_show configuration option.

File

./simplesamlphp_auth.install, line 103
The install file for the simplesamlphp_auth module.

Code

function simplesamlphp_auth_update_8301() {
  \Drupal::configFactory()
    ->getEditable('simplesamlphp_auth.settings')
    ->set('login_link_show', TRUE)
    ->save(TRUE);
}