This file contains 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
.row { | |
text-align: justify; | |
line-height: 0; | |
} | |
.row-item { | |
display: inline-block; | |
width: 310px; | |
min-height: 10px; | |
text-align: left; |
This file contains 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
// Automatically convert date inputs to a required format | |
// Works, but needs a lot of refactoring | |
var dateInputHelper = new DateInputHelper(); | |
function DateInputHelper() { | |
var self = this; | |
self.cursorPosition = null; | |
self.buildDateInput = function($input, separator, minYear, maxYearLimit) { |
This file contains 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
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \; |
This file contains 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
use \TYPO3\CMS\Extbase\Persistence\Generic\Storage\Typo3DbQueryParser; | |
use \TYPO3\CMS\Extbase\Utility\DebuggerUtility; | |
$queryParser = $this->objectManager->get(Typo3DbQueryParser::class); | |
DebuggerUtility::var_dump($queryParser->convertQueryToDoctrineQueryBuilder($query)->getSQL()); | |
DebuggerUtility::var_dump($queryParser->convertQueryToDoctrineQueryBuilder($query)->getParameters()); | |
This file contains 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
// Collapse Container | |
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\B13\Container\Tca\Registry::class)->configureContainer( | |
( | |
new \B13\Container\Tca\ContainerConfiguration( | |
'container-collapse', // CType | |
'Collapse', // label | |
'Description', // description | |
[ | |
[ |