- Merge request !14[#3548579] fix: Dependency on Help module causing crash → (Open) created by vengador
Rebuilding the cache (with drush) for on a site that has disabled Help module causes error:
In EntityResolverManager.php line 135:
Class "\Drupal\help\Controller\HelpController" does not exist
This is due to the following route added in 2.1 version (it was not happening in 2.0):
taxonomy_import.help:
path: '/admin/config/content/taxonomy_import'
defaults:
_controller: '\Drupal\help\Controller\HelpController::helpPage'
_route: 'help.page'
name: 'taxonomy_import'
_title: 'Taxonomy Import'
requirements:
_permission: 'administer taxonomy import'
options:
_admin_route: TRUE
1. Disable the help module
2. Clear the cache.
Add proper depencencies in .info.yml file:
dependencies:
- drupal:taxonomy
- drupal:help
and/or refactor module's routing definition to include taxonomy_import.help only if help module is enabled.
N/A
N/A
N/A
N/A
Active
2.1
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.