Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_jobs
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TYPO3
sg_jobs
Commits
dde755a2
Commit
dde755a2
authored
4 years ago
by
Kevin Ditscheid
Browse files
Options
Downloads
Patches
Plain Diff
[TASK] Relocated extbase persistence configuration to new Classes.php
parent
c6ef364c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!23
Feature upgrade to typo3 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Configuration/Extbase/Persistence/Classes.php
+16
-0
16 additions, 0 deletions
Configuration/Extbase/Persistence/Classes.php
Configuration/TypoScript/Common/setup.typoscript
+2
-0
2 additions, 0 deletions
Configuration/TypoScript/Common/setup.typoscript
with
18 additions
and
0 deletions
Configuration/Extbase/Persistence/Classes.php
0 → 100644
+
16
−
0
View file @
dde755a2
<?php
declare
(
strict_types
=
1
);
// if you need to change this, keep in mind the changes need to be done in
// Configuration/TypoScript/Common/setup.typoscript for TYPO3 9, too
return
[
\SGalinski\SgJobs\Domain\Model\FileReference
::
class
=>
[
'tableName'
=>
'sys_file_reference'
],
\SGalinski\SgJobs\Domain\Model\JobApplication
::
class
=>
[
'tableName'
=>
'tx_sgjobs_domain_model_job_application'
],
\SGalinski\SgJobs\Domain\Model\ExperienceLevel
::
class
=>
[
'tableName'
=>
'tx_sgjobs_domain_model_experience_level'
]
];
This diff is collapsed.
Click to expand it.
Configuration/TypoScript/Common/setup.typoscript
+
2
−
0
View file @
dde755a2
config.tx_extbase {
persistence {
# @deprecated This configuration does not work in TYPO3 10 at all, you need to also change
# Configuration/Extbase/Persistence/Classes.php
classes {
SGalinski\SgJobs\Domain\Model\FileReference {
mapping {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment