- Issue created by @geek-merlin
- 🇦🇺Australia dpi Perth, Australia
MR welcome. Thanks for the doc, I think thats critical to this issue.
Tests not required for this change.
The 32 char limit for module name in HucCompilerPass is wrong. It should be 50 (or none at all).
preg_match_all('/^Drupal\\\\(?<moduleName>[a-z_0-9]{1,32})\\\\.*$/m', $className, $matches, PREG_SET_ORDER);
$moduleName = $matches[0]['moduleName'] ?? throw new \Exception(sprintf('Could not determine module name from class %s', $className));
https://www.drupal.org/node/2014073 →
Have a module with >32 char name and implement a hux hook.
In HuxCompilerPass.php line 77:
Could not determine module name from class Drupal\translation_bliss_config_language_select\Hooks\ConfigLanguageSelectorHooks
Fix it.
Active
1.7
Code
MR welcome. Thanks for the doc, I think thats critical to this issue.
Tests not required for this change.