Hallo TYPO3 Freunde,
ich habe gerade eine Mini-Extension mit einem Hook erstellt und Frage mich nun, wie ich diesen Hook nach Hooks anderer Extensions ausführen kann (scriptmerger als Beispiel in diesem Fall).
Habe versucht mit "priority" => "bottom" in der em_conf.php zu arbeiten - aber scheinbar hat das keinerlei Auswirkung.
So wird der Hook gesetzt:
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['contentPostProc-all'][] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('http2_push').'/Classes/Hooks/ContentPostProcessor.php:Ka\\Http2Push\\Hooks\\ContentPostProcessor->renderAll'; $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['contentPostProc-output'][] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('http2_push').'/Classes/Hooks/ContentPostProcessor.php:Ka\\Http2Push\\Hooks\\ContentPostProcessor->renderOutput';
Ich hoffe, dafür gibt es eine Lösung.