-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_localconf.php
27 lines (18 loc) · 1.72 KB
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
defined('TYPO3_MODE') || die();
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_CategoryToPagesUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\CategoryToPagesUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_CategoryToSingleViewPagesUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\CategoryToSingleViewPageUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_CategoryToProductTypeUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\CategoryToProductTypeUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_AttributeSetAttributeMmUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\AttributeSetAttributeMmUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_ProductTypeFromCategoryUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\ProductTypeFromCategoryUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_ProductAccessoriesProductMmUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\ProductAccessoriesProductMmUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_ProductSubProductsProductMmUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\ProductSubProductsProductMmUpdateWizard::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update']['productmanager_ProductRelatedProductsProductMmUpdateWizard']
= Pixelant\PxaProductManagerUpgrade\Updates\ProductRelatedProductsProductMmUpdateWizard::class;