From 845bc237caa4d812f4826056ae0c845199dc8aae Mon Sep 17 00:00:00 2001 From: Dave MacFarlane Date: Tue, 5 Dec 2023 10:51:35 -0500 Subject: [PATCH] [dictionary] Remove beta tag from dictionary module (#8916) The "beta" dictionary module was added in LORIS 24, and tested in both 24.1, and 25. When 26 is released, it will be the 4th release including it. It's API is also used by the conflict resolver to get field descriptions. It should no longer be considered beta. This removes the "beta" tag from the description, and adds a "legacy" to the old datadict, which needs to be maintained until the new DQT is released (based on the new dictionary.) --- modules/datadict/php/module.class.inc | 2 +- modules/dictionary/php/module.class.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/datadict/php/module.class.inc b/modules/datadict/php/module.class.inc index 87f902bf4c9..09ee3c57cc6 100644 --- a/modules/datadict/php/module.class.inc +++ b/modules/datadict/php/module.class.inc @@ -55,6 +55,6 @@ class Module extends \Module */ public function getLongName() : string { - return "Data Dictionary"; + return "Data Dictionary (Legacy)"; } } diff --git a/modules/dictionary/php/module.class.inc b/modules/dictionary/php/module.class.inc index 39afd206920..84fc4ef99a2 100644 --- a/modules/dictionary/php/module.class.inc +++ b/modules/dictionary/php/module.class.inc @@ -55,7 +55,7 @@ class Module extends \Module */ public function getLongName() : string { - return "Data Dictionary (Beta)"; + return "Data Dictionary"; } /**