demo.install in Demonstration site (Sandbox / Snapshot) 8
Same filename and directory in other branches
File
demo.installView 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
Name | Description |
---|---|
demo_uninstall | Implements hook_uninstall(). |