Skip to content

Commit

Permalink
Merge branch 'develop' into feature/SD-22-customised-options
Browse files Browse the repository at this point in the history
  • Loading branch information
yeniatencio authored Nov 13, 2024
2 parents 783369c + 4dbcef4 commit d6325e1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion modules/tide_landing_page/tide_landing_page.install
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ function tide_landing_page_install() {
*/
function tide_landing_page_update_dependencies() {
$dependencies = [];
$dependencies['tide_landing_page'][10102] = ['tide_core' => 10005];
$dependencies['tide_landing_page'][10101] = ['tide_core' => 10005];
$dependencies['tide_landing_page'][10106] = ['tide_core' => 10009];

return $dependencies;
}
Expand Down
2 changes: 1 addition & 1 deletion modules/tide_site/tide_site.install
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function tide_site_install() {
*/
function tide_site_update_10001() {
\Drupal::moduleHandler()->loadInclude('tide_core', 'inc', 'includes/helpers');
$config_location = [\Drupal::service('extension.list.module')->getPath('tide_site') . '/config/install'];
$config_location = [\Drupal::service('extension.list.module')->getPath('tide_core') . '/config/install'];

$configs = [
'field.storage.taxonomy_term.field_additional_comment' => 'field_storage_config',
Expand Down
10 changes: 10 additions & 0 deletions tide_core.install
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ function tide_core_install() {
$tideCoreOperation->alterParagraphsLibrary();
}

/**
* Implements hook_update_dependencies().
*/
function tide_core_update_dependencies() {
$dependencies = [];
$dependencies['tide_core'][10007] = ['bay_platform_dependencies' => 10003];

return $dependencies;
}

/**
* Increase character limit of URLs.
*/
Expand Down

0 comments on commit d6325e1

Please sign in to comment.