- ...
- Save As Dialog Box does not get focus in Ubuntu 22.04
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1968887 \
| lib.parseFunc { | |
| tags.a.stdWrap { | |
| prepend = COA | |
| prepend { | |
| 10 = LOAD_REGISTER | |
| 10.linktype = TEXT | |
| 10.linktype { | |
| data = parameters:href | |
| replacement { | |
| 10 { |
| # Simple change of file extension | |
| mmv "*.ctp" "#1.php" | |
| # Recursively renaming all `.ts` files to `.typoscript` | |
| # ; matching subdirectories | |
| # * matching the filename | |
| mmv ";*.ts" "#1#2.typoscript" |
| <?php | |
| $GLOBALS['TCA']['xxx']['columns']['xxx'] = [ | |
| // RTE: https://docs.typo3.org/m/typo3/reference-tca/10.4/en-us/ColumnsConfig/Type/textDefault.html | |
| 'config' => [ | |
| 'type' => 'text', | |
| 'enableRichtext' => true, | |
| 'cols' => 40, | |
| 'rows' => 6, | |
| 'eval' => 'trim', |
| <?php | |
| namespace Me\MyExtension\Command; | |
| use Symfony\Component\Console\Command\Command; | |
| use TYPO3\CMS\Core\Core\SystemEnvironmentBuilder; | |
| use TYPO3\CMS\Core\Http\ServerRequest; | |
| use TYPO3\CMS\Core\Site\SiteFinder; | |
| use TYPO3\CMS\Core\Utility\GeneralUtility; |
| #!/bin/bash | |
| PID="$1" | |
| FILE="powermail-$PID.csv" | |
| if [[ -z "$PID" ]]; then | |
| echo "Please specify pid!"; | |
| exit; | |
| fi |
| #!/bin/bash | |
| URLS=( | |
| https://www.example.net/ | |
| https://www.example.com/ | |
| ) | |
| DEPTH=5 | |
| ALLOWED_DOMAINS=www.example.net,www.example.com | |
| EXCLUDE=typo3conf,fileadmin,typo3temp,uploads |
| function git-php-cs-fixer() { | |
| files=$(git ls-files \*.php) | |
| for file in $files | |
| do | |
| php-cs-fixer fix --rules=@PSR12 -- $file | |
| done | |
| } |
| -- Updates tt_content.tx_mask_items with the number of child elements that refer to this record. | |
| UPDATE tt_content parent | |
| INNER JOIN (SELECT count(*) as count, tx_mask_items_parent FROM tt_content GROUP BY tx_mask_items_parent) children | |
| ON children.tx_mask_items_parent = parent.uid AND parent.CType = 'mask_accordion' | |
| SET parent.tx_mask_items=children.count |
| --- a/typo3/sysext/backend/Classes/Form/FormDataProvider/PageTsConfigMerged.php 2020-10-26 14:41:48.000000000 +0100 | |
| +++ b/typo3/sysext/backend/Classes/Form/FormDataProvider/PageTsConfigMerged.php 2020-10-26 14:56:45.000000000 +0100 | |
| @@ -53,6 +53,21 @@ | |
| if (!empty($typeSpecificConfiguration[$type . '.']) && is_array($typeSpecificConfiguration[$type . '.'])) { | |
| ArrayUtility::mergeRecursiveWithOverrule($newFieldConfiguration, $typeSpecificConfiguration[$type . '.']); | |
| } | |
| + // hack for gridelements begins | |
| + if ($type === 'gridelements_pi1') { | |
| + if (!empty($fullFieldConfiguration['types.']['gridelements_pi1.']) && | |
| + is_array($fullFieldConfiguration['types.']['gridelements_pi1.']) && |