function help_topics_themes_uninstalled in Drupal 8
Same name and namespace in other branches
- 9 core/modules/help_topics/help_topics.module \help_topics_themes_uninstalled()
Implements hook_themes_uninstalled().
File
- core/
modules/ help_topics/ help_topics.module, line 80 - Displays help topics provided by modules and themes.
Code
function help_topics_themes_uninstalled(array $themes) {
// Use the same code as module uninstall to ensure that theme help is removed
// when a theme is uninstalled.
help_topics_modules_uninstalled([]);
}