You are here

gin_login.install in Gin Login 8

Handles installation and upgrade tasks.

File

gin_login.install
View source
<?php

/**
 * @file
 * Handles installation and upgrade tasks.
 */

/**
 * Enabling the new config for the default logo and brand image.
 */
function gin_login_update_8101() {

  /** @var \Drupal\Core\Config\Config $config */
  $config = \Drupal::configFactory()
    ->getEditable('gin_login.settings');
  $config
    ->set('logo.use_default', TRUE)
    ->set('brand_image.use_default', TRUE)
    ->save();
}

Functions

Namesort descending Description
gin_login_update_8101 Enabling the new config for the default logo and brand image.