File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 9
9
* LICENSE.txt file that was distributed with this source code.
10
10
*/
11
11
12
+ use TYPO3 \CMS \Install \Attribute \UpgradeWizard ;
13
+
14
+ #[UpgradeWizard(PluginImageFieldWizard::class)]
12
15
class PluginImageFieldWizard extends AbstractUpgradeWizard
13
16
{
14
17
public function getTitle (): string
Original file line number Diff line number Diff line change 9
9
* LICENSE.txt file that was distributed with this source code.
10
10
*/
11
11
12
+ use TYPO3 \CMS \Install \Attribute \UpgradeWizard ;
13
+
14
+ #[UpgradeWizard(PluginListTypeWizard::class)]
12
15
class PluginListTypeWizard extends AbstractUpgradeWizard
13
16
{
14
17
public function getTitle (): string
15
18
{
16
- return 'Generic Gallery: Migrate old plugin list type name ' ;
19
+ return 'Generic Gallery: Migrate old plugin list type name (TYPO3 v6) ' ;
17
20
}
18
21
22
+ /**
23
+ * @deprecated Remove this with TYPO3 14 as this migration is ancient.
24
+ */
19
25
public function executeUpdate (): bool
20
26
{
21
27
$ table = 'tt_content ' ;
Original file line number Diff line number Diff line change 72
72
$ GLOBALS ['TYPO3_CONF_VARS ' ]['SYS ' ]['fal ' ]['registeredCollections ' ]['images ' ] =
73
73
StaticFileCollection::class;
74
74
}
75
-
76
- // Upgrade wizards
77
- $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['ext/install ' ]['update ' ][UpgradeWizard \PluginListTypeWizard::class]
78
- = UpgradeWizard \PluginListTypeWizard::class;
79
- $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['ext/install ' ]['update ' ][UpgradeWizard \PluginImageFieldWizard::class]
80
- = UpgradeWizard \PluginImageFieldWizard::class;
81
75
});
You can’t perform that action at this time.
0 commit comments