You are here

demo.install in Demonstration site (Sandbox / Snapshot) 8

Same filename and directory in other branches
  1. 6 demo.install
  2. 7 demo.install

File

demo.install
View source
<?php

/**
 * Implements hook_uninstall().
 */
function demo_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('demo.settings')
    ->clear('demo_reset_last')
    ->save();
  \Drupal::service('config.factory')
    ->getEditable('demo.settings')
    ->clear('demo_dump_cron')
    ->save();
}

Functions

Namesort descending Description
demo_uninstall Implements hook_uninstall().