Stefan Bürk

Results 44 comments of Stefan Bürk

I would say, should be doable with something like that: ```php $TSConfig = BackendUtility::getPagesTSconfig($pid)['TCEMAIN.'] ?? []; if (!empty($TSConfig['clearCache_disable'])) { $clearCacheEnabled = false; } ``` at least that is what core...

Thanks @georgringer, I had a look. The events added are nice and helps with manipulating "which" tags may or may not be set on frontend when displayed (detail, list). This...

Thanks for the bug report. If I'm not fully wrong, is this not fixed with the merged #342 ? Just mentioning, FontAwesome is removed only in main, not v11. So...

@stefanr Thank you for the issue report. However, I would say, this is not a bug. It is how it is worked and documentented. `{}` are fluid specific chars which...

Can you provide a full testcase showing the issue ? (failing) - can be done as a WIP core patch. TBH - not getting how parts are looking in the...

If I run full core functional testsuite (with your original change and also my adoption) i get 4 failures: ``` $ Build/Scripts/runTests.sh -s functional 1) TYPO3\CMS\Core\Tests\Functional\DataScenarios\Regular\WorkspacesPublish\ActionTest::hideContent Failed asserting that response...

Does your extension have a `ext_emconf.php` in place ? This is quite a hard topic, as "fallback" still needed. Some extensions do not have a `ext_emconf.php` anymore, but functional test...

> @oliverklee @sbuerk should we use `Build/` ? If you ask me, yes. That's also the folder the TYPO3 core uses for these things of tool configurations (with sub-folders per...

> > QueryBuilder may be used in a decorator pattern > > The decorator pattern is precisely the pattern that you don't need protected properties for. Please explain why you...

@derrabus Sorry for the longer delay, that was not intented. Removed the `QueryBuilder` changed for now and added a `test` which contains a custom QueryBuilder class with most of the...