-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Replace config.persistence.classes typoscript configuration (#71
) See: https://forge.typo3.org/issues/87623 Releases: master
- Loading branch information
1 parent
ca13a91
commit dfc4767
Showing
2 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
declare(strict_types = 1); | ||
|
||
/* | ||
* This file is part of the package t3g/blog. | ||
* | ||
* For the full copyright and license information, please read the | ||
* LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
return [ | ||
\T3G\AgencyPack\Blog\Domain\Model\Content::class => [ | ||
'tableName' => 'tt_content', | ||
], | ||
\T3G\AgencyPack\Blog\Domain\Model\Post::class => [ | ||
'tableName' => 'pages', | ||
], | ||
\T3G\AgencyPack\Blog\Domain\Model\Category::class => [ | ||
'tableName' => 'sys_category', | ||
], | ||
\T3G\AgencyPack\Blog\Domain\Model\Comment::class => [ | ||
'tableName' => 'tx_blog_domain_model_comment', | ||
'properties' => [ | ||
'post' => [ | ||
'fieldName' => 'parentid' | ||
], | ||
], | ||
], | ||
\T3G\AgencyPack\Blog\Domain\Model\Tag::class => [ | ||
'tableName' => 'tx_blog_domain_model_tag', | ||
], | ||
\T3G\AgencyPack\Blog\Domain\Model\Author::class => [ | ||
'tableName' => 'tx_blog_domain_model_author', | ||
], | ||
]; |
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