Contains a uid pointing to the sys_language
table and indicates which language the record is in.
0
means default language. -1
means this record should be used for all languages.
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
OS Information: Darwin Sebastians-MacBook-Pro.local 20.3.0 Darwin Kernel Version 20.3.0: Thu Jan 21 00:07:06 PST 2021; root:xnu-7195.81.3~1/RELEASE_X86_64 x86_64 | |
DDEV-Local version v1.17.1 | |
architecture amd64 | |
db drud/ddev-dbserver-mariadb-10.3:v1.17.0 | |
dba phpmyadmin:5 | |
ddev-ssh-agent drud/ddev-ssh-agent:v1.17.0 | |
docker 20.10.5 | |
docker-compose 1.29.0 | |
os darwin | |
router drud/ddev-router:v1.17.0 |
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
test |
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 | |
// this mitigates the core bug #92863 and is taken from https://github.com/TYPO3/TYPO3.CMS/commit/db0d7549647ed5326f4affc84b907dd0e397c844 | |
// this file can be removed entirely after updating to TYPO3 10.4.11 | |
$GLOBALS['TCA']['sys_file_metadata']['columns']['l10n_parent']['config'] = [ | |
'type' => 'group', | |
'internal_type' => 'db', | |
'allowed' => 'sys_file_metadata', | |
'size' => 1, |
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
=================================================================== | |
--- public/typo3conf/ext/news/Classes/Service/SlugService.php | |
+++ public/typo3conf/ext/news/Classes/Service/SlugService.php | |
@@ -221,60 +221,50 @@ | |
$queryBuilder = $connection->createQueryBuilder(); | |
// Get entries to update | |
+ $execTimeParameter = $queryBuilder->createNamedParameter($GLOBALS['EXEC_TIME'], \PDO::PARAM_INT); | |
+ $emptyStringParameter = $queryBuilder->createNamedParameter('', \PDO::PARAM_STR); | |
$statement = $queryBuilder |
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
--- a/typo3/sysext/backend/Classes/Utility/BackendUtility.php | |
+++ b/typo3/sysext/backend/Classes/Utility/BackendUtility.php | |
@@ -2989,6 +2989,31 @@ | |
} | |
/** | |
+ * Creates a link to create a record translation on demand and directly edit it | |
+ * | |
+ * @param string $table | |
+ * @param int $defaultLanguageRecordUid |
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
document.querySelector('#desktop-navigation-header').remove(); | |
document.querySelector('.wXPTD').style.paddingTop = '0'; | |
document.querySelector('._28ubt').style.gridTemplateColumns = 'auto 0'; | |
document.querySelector('._28ubt').style.gridTemplateRows = 'auto 0'; | |
document.querySelector('._28ubt').style.height = '100vh'; |
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
DOMTokenList.prototype.getFullModifierClassName = function (modifier) { | |
if (this.length === 0) { | |
return ''; | |
} | |
return this.item(0) + '--' + modifier; | |
}; | |
DOMTokenList.prototype.addModifier = function (modifier) { | |
this.add(this.getFullModifierClassName(modifier)); | |
}; |
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 MyVendor\MyExtension\Utility; | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
use TYPO3\CMS\Extbase\Utility\LocalizationUtility; | |
/** | |
* Class MediaWallUtility | |
* | |
* @package MyVendor\MyExtension\Utility |
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
#!/bin/bash | |
# Creator: Phil Cook | |
# Email: [email protected] | |
# Twitter: @p_cook | |
brew_prefix=$(brew --prefix | sed 's#/#\\\/#g') | |
brew_array=("5.6","7.0","7.1","7.2") | |
php_array=("[email protected]" "[email protected]" "[email protected]" "[email protected]") | |
valet_support_php_version_array=("[email protected]" "[email protected]" "[email protected]" "[email protected]") | |
php_installed_array=() |