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
<?php | |
declare(strict_types=1); | |
namespace Vendor\Extension\ExpressionLanguage\FunctionsProvider; | |
use Symfony\Component\ExpressionLanguage\ExpressionFunction; | |
use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface; | |
/** |
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
#!/bin/bash | |
############################################################################################## | |
# searching for similar documentation *.rst files in e.g. | |
# typo3/sysext/core/Documentation/Changelog organized in | |
# different sub-directories | |
# | |
# @license MIT | |
# @author Oliver Hader <oliver@typo3.org> | |
############################################################################################## |
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
[display] | |
#fullscreen=true | |
#viewport=1680x1050 | |
viewport=1280x720 | |
[gource] | |
camera-mode=overview | |
colour-images=true | |
file-idle-time=5 | |
hide=filenames,dirnames,mouse,progress,date |
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
SQL: | |
images int(11) unsigned DEFAULT '0', | |
======================================================= | |
TCA | |
.... | |
'images' => array( | |
'exclude' => 0, | |
'label' => 'images', | |
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig( | |
'images', |