Simon Schaufelberger
Simon Schaufelberger
Can you please verify that the code still works as expected as I don't have access to teamwork at the moment
@Thomas--F what do you think about that suggestion?
I've also noticed an extreme performance impact. I even blamed PhpStorm for being slow but then somebody told me that this plugin is the cause of it and after disabling...
any huge project, for example https://github.com/organicmaps/organicmaps/ and then work on it for some hours like create a file, delete it again... and after a while it becomes really slow
I actually wanted to refactor the whole template but go ahead, if you can improve the thing, feel free to make a pr.
this is for example used in news and solr
This is how to migrate: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70819/11/typo3/sysext/core/Classes/Migrations/TcaMigration.php
Code examples: EXT:powermail: - `$typoScriptFrontend->fe_user->setKey('ses', 'powermail', 'value');` - `$typoScriptFrontend->fe_user->getKey('ses', 'powermail');` - `$typoScriptFrontend->fe_user->user['uid']` - `$typoScriptFrontend->fe_user->user['usergroup']` - `$GLOBALS['TSFE']->fe_user = new FrontendUserAuthentication();` - `$typoScriptFrontend->fe_user->setAndSaveSessionData('tx_powermail_cond', $array);` ```php $tsfe = ObjectUtility::getTyposcriptFrontendController(); if (!empty($tsfe->fe_user->user[$propertyName])) { return...
Any extension that accesses typoscript like so: ```php $this->getTypoScriptFrontendController()->tmpl->setup['config.'] ``` real world example: ```php $constant = $GLOBALS['TSFE']->tmpl->setup['plugin.']['tx_ext.']['settings.']; ```
@simonberger You made my day! the `vertical-align: top;` solves my issue but this is a really dirty hack ;) I hope you come up with a proper bug fix. The...