Initial commit - Typo3 11.5.41

This commit is contained in:
Matteo Gallo
2026-07-03 17:53:31 +02:00
commit 5ca4743197
6811 changed files with 568848 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
declare(strict_types=1);
// This configuration is used for TYPO3 10 and later
// Previous versions use "ext_typoscript_setup.txt" file in root of extension.
return [
PwTeaserTeam\PwTeaser\Domain\Model\Page::class => [
'tableName' => 'pages',
'properties' => [
'navTitle' => ['fieldName' => 'nav_title'],
'authorEmail' => ['fieldName' => 'author_email'],
'tstamp' => ['fieldName' => 'tstamp'],
'creationDate' => ['fieldName' => 'crdate'],
'lastUpdated' => ['fieldName' => 'lastUpdated'],
'starttime' => ['fieldName' => 'starttime'],
'endtime' => ['fieldName' => 'endtime'],
'newUntil' => ['fieldName' => 'newUntil'],
'sorting' => ['fieldName' => 'sorting'],
'l18nConfiguration' => ['fieldName' => 'l18n_cfg'],
]
],
\PwTeaserTeam\PwTeaser\Domain\Model\Content::class => [
'tableName' => 'tt_content',
'properties' => [
'pid' => ['fieldName' => 'pid'],
'colPos' => ['fieldName' => 'colPos'],
'ctype' => ['fieldName' => 'CType'],
'tstamp' => ['fieldName' => 'tstamp'],
'crdate' => ['fieldName' => 'crdate'],
]
]
];