2019-07-31 02:34:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Post update functions for Search module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-03-11 20:58:38 +00:00
|
|
|
* Implements hook_removed_post_updates().
|
2019-07-31 02:34:20 +00:00
|
|
|
*/
|
2020-03-11 20:58:38 +00:00
|
|
|
function search_removed_post_updates() {
|
|
|
|
return [
|
|
|
|
'search_post_update_block_page' => '9.0.0',
|
2022-02-08 12:16:18 +00:00
|
|
|
'search_post_update_reindex_after_diacritics_rule_change' => '10.0.0',
|
2020-03-11 20:58:38 +00:00
|
|
|
];
|
2019-07-31 02:34:20 +00:00
|
|
|
}
|