diff --git a/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.install b/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.install index db02670cd236cc3d5a5066f997285d988158e1b7..f3df9bfc6e1f7150572d1d73b623ef637a62733c 100644 --- a/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.install +++ b/core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.install @@ -18,6 +18,59 @@ function demo_umami_content_module_preinstall($module) { } } +/** + * Implements hook_install(). + */ +function demo_umami_content_install($is_syncing) { + if (!$is_syncing) { + $query = \Drupal::entityQuery('node')->accessCheck(TRUE); + $nids = $query->execute(); + + if (empty($nids)) { + return; + } + + // Sort node IDs in descending order + rsort($nids); + + $nodes = \Drupal::entityTypeManager()->getStorage('node')->loadMultiple($nids); + + // Use a counter to determine the "days ago" offset + $counter = 1; + + foreach ($nodes as $node) { + // Get all translation languages for the node + $languages = $node->getTranslationLanguages(); + foreach ($languages as $language) { + // Load the translated version of the node. + $translatedNode = $node->getTranslation($language->getId()); + try { + // Use the counter to calculate "days ago". + $timestamp = strtotime("-{$counter} days"); + + // Set the created and updated time for the translated node. + $translatedNode->setCreatedTime($timestamp); + $translatedNode->setChangedTime($timestamp); + + // Check if the translation is the default language. + // If not, mark the translation as changed. + if (!$translatedNode->isDefaultTranslation()) { + $translatedNode->setNewRevision(FALSE); + $translatedNode->isDefaultRevision(FALSE); + $translatedNode->setRevisionTranslationAffected(TRUE); + } + $translatedNode->save(); + } + catch (\Exception $e) { + \Drupal::logger('system')->error($e->getMessage()); + } + } + // Increment the counter for the next node + $counter++; + } + } +} + /** * Implements hook_uninstall(). */ diff --git a/core/profiles/demo_umami/tests/src/Functional/UmamiMultilingualInstallTest.php b/core/profiles/demo_umami/tests/src/Functional/UmamiMultilingualInstallTest.php index b01f7d68c1ba07b207535528062da0a3720e5ba9..30ef88da32a964648fe2abc21ff5d68b7048dff4 100644 --- a/core/profiles/demo_umami/tests/src/Functional/UmamiMultilingualInstallTest.php +++ b/core/profiles/demo_umami/tests/src/Functional/UmamiMultilingualInstallTest.php @@ -29,7 +29,7 @@ class UmamiMultilingualInstallTest extends InstallerTestBase { public function testUmami(): void { $this->drupalGet(''); // cSpell:disable-next-line - $this->assertSession()->pageTextContains('Quiche mediterráneo profundo'); + $this->assertSession()->pageTextContains('Crema catalana'); } /**