You are here

function tome_static_uninstall in Tome 8

Implements hook_uninstall().

File

modules/tome_static/tome_static.install, line 13
Module install and update procedures.

Code

function tome_static_uninstall() {
  \Drupal::service('state')
    ->deleteMultiple([
    StaticGeneratorInterface::STATE_KEY_BUILDING,
    StaticGeneratorInterface::STATE_KEY_URL,
  ]);
}