$GLOBALS['TYPO3_CONF_VARS']['LOG']['TYPO3']['CMS']['Redirects'] => [
'Service' => [
'RedirectService' => [
'writerConfiguration' => [
\TYPO3\CMS\Core\Log\LogLevel::DEBUG => [
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
'logFileInfix' => 'core-redirect-service'
],
],
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This menu is considered to be 'clever' due to the fact that it's sliding accross the entire page tree: | |
| # | |
| # * Previous link: if there's no previous sibling page, we're linking to the parent page instead | |
| # * Next link: | |
| # * if there's no child page, we're linking to the next sibling page | |
| # * if that's not available, we're linking to the next sibling page of the parent page | |
| # * if that's not available, we're linking to the next sibling page of the grandparent page | |
| temp.browseMenuItem = HMENU | |
| temp.browseMenuItem.special = browse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| renderables: | |
| - | |
| type: Page | |
| identifier: page | |
| label: Form | |
| renderables: | |
| - | |
| defaultValue: '' | |
| type: Text | |
| identifier: name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $tt = GeneralUtility::makeInstance(\TYPO3\CMS\Core\TimeTracker\TimeTracker::class); | |
| $tt->start(); | |
| // Expensive operation here | |
| $tt->finish(); | |
| // Print the runtime between start and finish in milliseconds. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| TYPO3 12+ | |
| Registration in Services.yaml | |
| See https://docs.typo3.org/m/typo3/reference-coreapi/12.4/en-us/ApiOverview/Events/Events/Backend/ModifyPageLayoutContentEvent.html | |
| */ | |
| declare(strict_types=1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* This modifies the outer part of the CKeditor */ | |
| /*********** TYPO3 12 + 13 ******************/ | |
| :root { | |
| /* Bigger preview panels in RTEs styles dropdown! */ | |
| --ck-style-panel-button-width: 200px !important; | |
| --ck-style-panel-button-height: 100px !important; | |
| } | |
| /* Broader dropdowns */ | |
| .ck.ck-dropdown.ck-style-dropdown .ck-button.ck-dropdown__button .ck-button__label { width: 18em; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Berechnung und Zuweisung zu neuer Variable: | |
| ✗ {imageWidth / 2.24 -> f:variable(name: 'imageHeight')} | |
| ✓ {f:variable(name:'imageHeight', value:'{imageWidth / 2.71}')} | |
| Casting | |
| ✗ {imageHeight as integer -> f:variable(name:'imageHeight')} | |
| ✓ {f:variable(name:'imageHeight',value:'{imageHeight as integer}')} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| t3version() { | |
| [[ -z "$1" ]] && echo "Specify new version parameter!" && return | |
| extEmconf=$(git ls-files *ext_emconf.php) | |
| if [ ! -z "$extEmconf" ]; then | |
| sed -i "s/'version'\(\s*\)=>\(\s*\)'\(.*\)',/'version'\1=>\2'$1',/" $extEmconf | |
| git add $extEmconf | |
| echo "Updated version in all ext_emconf.php's" | |
| fi | |
| packageJson=$(git ls-files *package.json) | |
| if [ ! -z "$packageJson" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| public function myAction() | |
| { | |
| $contentElement = $this->configurationManager->getContentObject()->data; | |
| $this->view->assign('record', $contentElement); | |
| } |