2018-12-18 09:43:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
Issue #2811663 by Gnanagowthaman sankar, naveenvalecha, DanielVeza, andypost, sergiogsanchez, Neslee Canil Pinto, lomasr, ravi.shankar, thalles, jhodgdon, xjm, jrockowitz, Gábor Hojtsy, benjifisher, AaronMcHale, webchick: Rename Action module to Actions UI in the UI and in comments
2023-02-26 20:35:11 +00:00
|
|
|
* Post update functions for Actions UI module.
|
2018-12-18 09:43:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2022-02-08 12:16:18 +00:00
|
|
|
* Implements hook_removed_post_updates().
|
2018-12-18 09:43:20 +00:00
|
|
|
*/
|
2022-02-08 12:16:18 +00:00
|
|
|
function action_removed_post_updates() {
|
|
|
|
return [
|
|
|
|
'action_post_update_move_plugins' => '10.0.0',
|
|
|
|
'action_post_update_remove_settings' => '10.0.0',
|
2018-12-18 09:43:20 +00:00
|
|
|
];
|
2020-01-31 10:34:02 +00:00
|
|
|
}
|