2017-11-30 22:32:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Post-update functions for Locale module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-03-11 20:58:38 +00:00
|
|
|
* Implements hook_removed_post_updates().
|
2017-11-30 22:32:06 +00:00
|
|
|
*/
|
2020-03-11 20:58:38 +00:00
|
|
|
function locale_removed_post_updates() {
|
|
|
|
return [
|
|
|
|
'locale_post_update_clear_cache_for_old_translations' => '9.0.0',
|
|
|
|
];
|
2017-11-30 22:32:06 +00:00
|
|
|
}
|