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