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
| # File EXT:your_ext/Configuration/Yaml/MyCustomActionBackend.yaml | |
| TYPO3: | |
| CMS: | |
| Form: | |
| prototypes: | |
| # add our finisher to the 'standard' form prototype | |
| standard: | |
| formElementsDefinition: | |
| Form: | |
| formEditor: |
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
| git branch --format="%(refname:lstrip=2)" --merged | xargs git branch -d |
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
| Index: cms/typo3/sysext/backend/Classes/Form/FormDataProvider/TcaSelectItems.php | |
| IDEA additional info: | |
| Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
| <+>UTF-8 | |
| =================================================================== | |
| --- cms/typo3/sysext/backend/Classes/Form/FormDataProvider/TcaSelectItems.php (revision ) | |
| +++ cms/typo3/sysext/backend/Classes/Form/FormDataProvider/TcaSelectItems.php (revision ) | |
| @@ -43,6 +43,11 @@ | |
| continue; | |
| } |
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
| SQL: | |
| images int(11) unsigned DEFAULT '0', | |
| ======================================================= | |
| TCA | |
| .... | |
| 'images' => array( | |
| 'exclude' => 0, | |
| 'label' => 'images', | |
| 'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig( | |
| 'images', |
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
| $ git remote rm origin | |
| $ git remote add origin [email protected]:aplikacjainfo/proj1.git | |
| $ git config master.remote origin | |
| $ git config master.merge refs/heads/master |
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
| /* | |
| * Modifies a string to remove all non ASCII characters and spaces. | |
| * Try slugify("é&asd_æô") for example | |
| */ | |
| function slugify($text) | |
| { | |
| // replace non letter or digits by - | |
| $text = preg_replace('~[^\\pL\d]+~u', '-', $text); | |
| // trim | |
| $text = trim($text, '-'); |
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
| <f:comment> | |
| <f:render partial="Pictureblock" arguments="{imageObject: imageObject, | |
| class: 'bla', | |
| default: {maxWidth: settings.maxImgWidth, maxHeight: settings.maxImgHeight}, | |
| desktop: {maxWidth: 1000, maxHeight: 1000}, | |
| tablet: {maxWidth: 1000, maxHeight: 1000}, | |
| mobile: {maxWidth: 1000, maxHeight: 1000}}" /> | |
| </f:comment> | |
| <f:if condition="{imageObject}"> |