function gutenberg_uninstall in Gutenberg 8.2
Same name and namespace in other branches
- 8 gutenberg.install \gutenberg_uninstall()
Implements hook_uninstall().
File
- ./
gutenberg.install, line 143 - Install, update and uninstall functions for the gutenberg module.
Code
function gutenberg_uninstall() {
// Delete text format settings.
Drupal::configFactory()
->getEditable('filter.format.gutenberg')
->delete();
}