1 block_example.install | block_example_uninstall() |
Implements hook_uninstall().
Related topics
File
- modules/
examples/ block_example/ block_example.install, line 12 - Install, update and uninstall functions for the block_example module.
Code
function block_example_uninstall() {
$config = config('block_example.settings');
$config->set('block_example_string', 'Some example content.');
$config->save();
}