securelogin.install in Secure Login 8
Same filename and directory in other branches
Contains install and update functions for Secure login module.
File
securelogin.installView 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
Name | Description |
---|---|
securelogin_install | Implements hook_install(). |