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
| #!/usr/bin/env bash | |
| function enable_caching { | |
| ttl="$1" | |
| shift | |
| for dir in "${@}" | |
| do | |
| aws s3 cp \ | |
| --metadata-directive REPLACE \ | |
| --cache-control "max-age=$ttl" \ |
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 Vendor\MyPackage\ViewHelpers\Form; | |
| use TYPO3\Fluid\Core\ViewHelper\Exception; | |
| use TYPO3\Fluid\ViewHelpers\Form\TextfieldViewHelper; | |
| class DatefieldViewHelper extends TextfieldViewHelper { | |
| /** | |
| * @return void |
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 Vendor\MyPackage\Mail; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Configuration\ConfigurationManager; | |
| use TYPO3\Flow\Log\SystemLoggerInterface; | |
| use TYPO3\Flow\Mvc\Routing\Router; | |
| use TYPO3\Flow\Mvc\Routing\RouterInterface; | |
| use TYPO3\Flow\Reflection\ObjectAccess; | |
| use TYPO3\Fluid\View\StandaloneView; |