update_storage_clear()
Invalidates stored data relating to update status.
File
- core/modules/update/update.module, line 641
- Handles updates of Drupal core and contributed projects.
Code
1 2 3 4 | function update_storage_clear() { \Drupal::keyValueExpirable( 'update' )->deleteAll(); \Drupal::keyValueExpirable( 'update_available_release' )->deleteAll(); } |
Please login to continue.