We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to have Dependency Injection for the hook objects called in \Cobweb\Linkhandler\TypolinkHandler::generateLink
// Call registered hooks if (is_array($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['linkhandler']['generateLink'])) { foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['linkhandler']['generateLink'] as $className) { $linkParameterProcessor = GeneralUtility::makeInstance($className); if ($linkParameterProcessor instanceof ProcessLinkParametersInterface) { $linkParameterProcessor->process($this); } } }
So maybe we could use the ObjectManager to get the hook objects?
I'd be glad to make a pull request.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice to have Dependency Injection for the hook objects called in \Cobweb\Linkhandler\TypolinkHandler::generateLink
So maybe we could use the ObjectManager to get the hook objects?
I'd be glad to make a pull request.
The text was updated successfully, but these errors were encountered: