Skip to content
Snippets Groups Projects
Commit 41e42ce5 authored by Liam Morland's avatar Liam Morland Committed by Lily Yan
Browse files

Coding standards: Put hook_update_N() at end of install file

parent 925c34c2
No related branches found
No related tags found
1 merge request!193ISTWCMS-5252: Set all Webforms to use the access denied page
......@@ -304,6 +304,17 @@ function _uw_cfg_common_create_term($taxonomy_name, $vocab_machine_name, $weight
return $new_term->id();
}
/**
* Implements hook_update_dependencies().
*/
function uw_cfg_common_update_dependencies() {
$dependencies['uw_cfg_common'][8103] = [
'uw_sites_all' => 8105,
];
return $dependencies;
}
/**
* Implements hook_update_N().
*/
......@@ -554,14 +565,3 @@ function uw_cfg_common_update_9101() {
}
}
}
/**
* Implements hook_update_dependencies().
*/
function uw_cfg_common_update_dependencies() {
$dependencies['uw_cfg_common'][8103] = [
'uw_sites_all' => 8105,
];
return $dependencies;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment