update_themes_uninstalled($themes)
Implements hook_themes_uninstalled().
If themes are uninstalled, we invalidate the information of available updates.
File
- core/modules/update/update.module, line 256
- Handles updates of Drupal core and contributed projects.
Code
1 2 3 4 | function update_themes_uninstalled( $themes ) { // Clear all update module data. update_storage_clear(); } |
Please login to continue.