- A project can run inside DDEV Docker containers if
./.ddev/folder is in project root. - You MUST execute all commands through DDEV when available.
- ALWAYS check if DDEV is available in the current project folder FIRST with
ddev --versionbefore attempting any commands. - Only use DDEV if the
.ddevfolder exists in the current project. - Prioritize running
ddev describeto check service status BEFORE runningddev start.- Use
ddev describeto validate if services are running - Only run
ddev startif services are not running or if explicitly needed
- Use
- Stop services using
ddev stop.
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
| """ | |
| Qualtrics Graphic Uploader | |
| This gist provides classes for uploading graphics to Qualtrics surveys. | |
| It supports uploading from both local files and remote URLs, with built-in | |
| caching to avoid re-uploading the same graphics. | |
| The module implements a singleton pattern for each uploader type to ensure | |
| a single instance per application lifetime. | |
| """ |
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 My\Extension\ViewHelpers; | |
| use Closure; | |
| use My\Extension\PageTitle\ViewHelperPageTitleProvider; | |
| use TYPO3\CMS\Core\Utility\GeneralUtility; | |
| use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; | |
| use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper; | |
| use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic; |
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 Serfhos\RealurlCacheHashGeneration\Cache; | |
| use DmitryDulepov\Realurl\Cache\UrlCacheEntry; | |
| use TYPO3\CMS\Core\Utility\GeneralUtility; | |
| use TYPO3\CMS\Frontend\Page\CacheHashCalculator; | |
| /** | |
| * RealURL Hook: StoreInUrlCache |
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 | |
| // Location: EXT:yourextension/Classes/Install/Updates/MailFormDataUpdate.php | |
| namespace Serfhos\OldMailMigration\Install\Updates; | |
| use TYPO3\CMS\Core\Utility\GeneralUtility; | |
| use TYPO3\CMS\Core\Utility\MailUtility; | |
| /** | |
| * Migrate "mailform" data to new 7.6 ext:form |