function forum_uninstall
Same name in other branches
- 7.x modules/forum/forum.install \forum_uninstall()
- 9 core/modules/forum/forum.install \forum_uninstall()
- 10 core/modules/forum/forum.install \forum_uninstall()
- 11.x core/modules/forum/forum.install \forum_uninstall()
Implements hook_uninstall().
File
-
core/
modules/ forum/ forum.install, line 38
Code
function forum_uninstall() {
if ($field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums')) {
$field_storage->delete();
}
if ($field_storage = FieldStorageConfig::loadByName('node', 'comment_forum')) {
$field_storage->delete();
}
if ($field_storage = FieldStorageConfig::loadByName('taxonomy_term', 'forum_container')) {
$field_storage->delete();
}
// Purge field data now to allow taxonomy and options module to be uninstalled
// if this is the only field remaining.
field_purge_batch(10);
// Allow to delete a forum's node type.
$locked = \Drupal::state()->get('node.type.locked');
unset($locked['forum']);
\Drupal::state()->set('node.type.locked', $locked);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.