tome_static.install in Tome 8
Module install and update procedures.
File
modules/tome_static/tome_static.installView source
<?php
/**
 * @file
 * Module install and update procedures.
 */
use Drupal\tome_static\StaticGeneratorInterface;
/**
 * Implements hook_uninstall().
 */
function tome_static_uninstall() {
  \Drupal::service('state')
    ->deleteMultiple([
    StaticGeneratorInterface::STATE_KEY_BUILDING,
    StaticGeneratorInterface::STATE_KEY_URL,
  ]);
}Functions
| Name   | Description | 
|---|---|
| tome_static_uninstall | Implements hook_uninstall(). | 
