Skip to content
Snippets Groups Projects
Commit 13b123df authored by Florent Torregrosa's avatar Florent Torregrosa
Browse files

Issue #3481405 by grimreaper, pdureau: [2.0.x] update hooks removed from 1.x should be declared

parent bf53a129
No related branches found
No related tags found
1 merge request!246Issue #3481405 by grimreaper: [2.0.x] update hooks removed from 1.x should be declared
Pipeline #312772 passed
<?php
/**
* @file
* Contains ui_patterns_layouts.install.
*/
declare(strict_types=1);
/**
* Implements hook_update_last_removed().
*/
function ui_patterns_layouts_update_last_removed(): int {
// The update in 1.x which replaced layout_plugin with layout_discovery.
return 8101;
}
<?php
/**
* @file
* Contains ui_patterns_views.install.
*/
declare(strict_types=1);
/**
* Implements hook_update_last_removed().
*/
function ui_patterns_views_update_last_removed(): int {
// The update in 1.x with the try to merge ui_patterns_views_style.
return 9101;
}
<?php
/**
* @file
* Contains ui_patterns.install.
*/
declare(strict_types=1);
/**
* Implements hook_update_last_removed().
*/
function ui_patterns_update_last_removed(): int {
// The update in 1.x which enabled ui_patterns_library.
return 8101;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment