- Issue created by @nick.murza
- First commit to issue fork.
- 🇬🇧United Kingdom dieppon
I have solved the issues that 'Upgrade status' points out.
- remove twig deprecatred function 'spaceless' (13 minutes ago)
- Use renderInIsolation() instead of renderPlain()
- 🇺🇸United States kthull Fort Wayne, Indiana
This still needs the info.yml core version update.
- 🇬🇧United Kingdom dieppon
2.0.x-dev already has it.
https://git.drupalcode.org/issue/addtoany-3482074/-/blob/2.0.x/addtoany....
- 🇫🇷France reweb /dev/random
Not working on a fresh drupal 11 install.
I've attached the logs.
- 🇮🇳India rshekhar
Modify these two functions and it will work for Druapl 11.
path to the file:- addtoany\src\Form\AddToAnySettingsForm.phppublic function __construct( ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager, ModuleHandlerInterface $module_handler, ExtensionList $module_extension_list, EntityTypeBundleInfoInterface $entity_type_bundle_info ) { parent::__construct($config_factory, $typed_config_manager); $this->moduleHandler = $module_handler; $this->moduleExtensionList = $module_extension_list; $this->entityTypeBundleInfo = $entity_type_bundle_info; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container) { return new static( $container->get('config.factory'), $container->get('config.typed'), $container->get('module_handler'), $container->get('extension.list.module'), $container->get('entity_type.bundle.info') ); }