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
| # Scan for LLL keys that are not being directly accessed (anymore) | |
| # Called like this: t3-lll-scan packages/my_ext/*.xlf | |
| t3-lll-scan() { | |
| files=$(git ls-files $1) | |
| for file in $files | |
| do | |
| echo "Processing file: $file" | |
| labels=$(sed -n -e 's/^\s\+<trans-unit id="\([^"]\+\)".\+$/\1/p' $file) | |
| for label in $labels | |
| do |
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
| editor: | |
| config: | |
| disallowedContent: { | |
| 'h3 h4 h5': { | |
| classes: 'ce-align-left,ce-align-right,ce-align-center' | |
| } | |
| } |
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
| RUN apt-get update && apt-get install -y \ | |
| libfreetype6-dev \ | |
| libjpeg62-turbo-dev \ | |
| libpng-dev \ | |
| libwebp-dev \ | |
| && docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp | |
| RUN apt-get install -y \ | |
| graphicsmagick \ | |
| webp |
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 | |
| namespace Me\MyExtension\Domain\Repository; | |
| use TYPO3\CMS\Extbase\Persistence\Repository; | |
| class CategoryRepository extends Repository | |
| { | |
| public function createQuery() | |
| { |
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
| SELECT | |
| uid, pid, list_type, | |
| ExtractValue(`tt_content`.`pi_flexform`, '//T3FlexForms/data/sheet[@index="sDEF"]/language/field[@index="settings.category"]/value') category, | |
| ExtractValue(`tt_content`.`pi_flexform`, '//T3FlexForms/data/sheet[@index="sDEF"]/language/field[@index="settings.special"]/value') special | |
| FROM tt_content | |
| WHERE | |
| CType='list' AND | |
| list_type='xxx' AND | |
| ExtractValue(`tt_content`.`pi_flexform`, '//T3FlexForms/data/sheet[@index="sDEF"]/language/field[@index="settings.category"]/value') = ''; |
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
| /* Hide all cell properties fields except 'width' */ | |
| .ck-table-cell-properties-form .ck-table-form__border-row, | |
| .ck-table-cell-properties-form .ck-table-form__background-row, | |
| .ck-table-cell-properties-form .ck-table-form__alignment-row, | |
| .ck-table-cell-properties-form .ck-table-form__dimensions-row .ck-table-form__dimensions-row__height, | |
| .ck-table-cell-properties-form .ck-table-form__dimensions-row .ck-table-form__dimension-operator, | |
| .ck-table-cell-properties-form .ck-table-cell-properties-form__padding-row, | |
| .ck-table-cell-properties-form .ck-table-cell-properties-form__alignment-row | |
| { | |
| display: none !important; |
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 | |
| declare(strict_types=1); | |
| namespace Vendor\MyExtension\Updates; | |
| use TYPO3\CMS\Install\Updates\PopulatePageSlugs; | |
| use TYPO3\CMS\Install\Updates\RepeatableInterface; | |
| class PopulateProjectSlugs extends PopulatePageSlugs implements RepeatableInterface |
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
| TYPO3: | |
| CMS: | |
| Form: | |
| prototypes: | |
| standard: | |
| formElementsDefinition: | |
| Form: | |
| renderingOptions: | |
| translation: | |
| translationFiles: |
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
| <h2>{header -> f:format.html(parseFuncTSPath:'lib.parseFunc_header')}</h2> |
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
| --- Resources/Private/Partials/Permission/Groupname.html 2021-12-10 17:15:46.000000000 +0100 | |
| +++ Resources/Private/Partials/Permission/Groupname.html 2021-12-10 17:16:52.000000000 +0100 | |
| @@ -21,7 +21,7 @@ | |
| <f:comment> | |
| A group name can be resolved | |
| </f:comment> | |
| - {groupname -> f:format.crop(maxCharacters:20)} | |
| + {groupname -> f:format.crop(maxCharacters:40)} | |
| </f:then> | |
| <f:else> |