From 2303a9f2c63177f8665aca70b9f8c36ef9d160ab Mon Sep 17 00:00:00 2001 From: Dave MacFarlane Date: Thu, 12 Oct 2023 12:21:46 -0400 Subject: [PATCH] [dictionary] Remove beta tag from dictionary module 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"; } /**