You are here

securelogin.install in Secure Login 8

Same filename and directory in other branches
  1. 5 securelogin.install
  2. 6 securelogin.install
  3. 7 securelogin.install

Contains install and update functions for Secure login module.

File

securelogin.install
View source
<?php

/**
 * @file
 * Contains install and update functions for Secure login module.
 */
use Drupal\Core\Cache\Cache;

/**
 * Implements hook_install().
 */
function securelogin_install() {

  // Invalidate all cached HTML output.
  Cache::invalidateTags([
    'rendered',
  ]);
}

Functions

Namesort descending Description
securelogin_install Implements hook_install().