From 2bea533f98854a65670be3853a576282d749b147 Mon Sep 17 00:00:00 2001 From: aarohiprasad Date: Tue, 4 Jul 2023 20:04:18 +0530 Subject: [PATCH 1/2] Added condition in graphql.install for non empty variable --- graphql.install | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/graphql.install b/graphql.install index dcc9c47bc..53bffe83b 100644 --- a/graphql.install +++ b/graphql.install @@ -37,10 +37,12 @@ function graphql_uninstall(): void { $configFactory = \Drupal::getContainer()->get('config.factory'); $languageTypes = $configFactory->getEditable('language.types'); $negotiation = $languageTypes->get('negotiation'); - foreach (array_keys($negotiation) as $type) { - unset($negotiation[$type]['enabled']['language-graphql']); + if (!empty($negotiation)) { + foreach (array_keys($negotiation) as $type) { + unset($negotiation[$type]['enabled']['language-graphql']); + } + $languageTypes->set('negotiation', $negotiation)->save(); } - $languageTypes->set('negotiation', $negotiation)->save(); } /** From 22369ccbd5e7cc0ebcf50c7ff60d38e8a360b554 Mon Sep 17 00:00:00 2001 From: aarohiprasad Date: Fri, 28 Jul 2023 19:13:03 +0530 Subject: [PATCH 2/2] added check for language module instead --- graphql.install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphql.install b/graphql.install index 53bffe83b..0f5a1abbc 100644 --- a/graphql.install +++ b/graphql.install @@ -36,10 +36,10 @@ function graphql_uninstall(): void { /** @var \Drupal\Core\Config\ConfigFactoryInterface $configFactory */ $configFactory = \Drupal::getContainer()->get('config.factory'); $languageTypes = $configFactory->getEditable('language.types'); - $negotiation = $languageTypes->get('negotiation'); - if (!empty($negotiation)) { + if (!$languageTypes->isNew()) { + $negotiation = $languageTypes->get('negotiation'); foreach (array_keys($negotiation) as $type) { - unset($negotiation[$type]['enabled']['language-graphql']); + unset($negotiation[$type]['enabled']['language-graphql']); } $languageTypes->set('negotiation', $negotiation)->save(); }