forked from pixelant/pxa_product_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_typoscript_setup.txt
85 lines (74 loc) · 3.22 KB
/
ext_typoscript_setup.txt
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Mapping
config.tx_extbase {
persistence {
classes {
Pixelant\PxaProductManager\Domain\Model\Image {
mapping {
tableName = sys_file_reference
columns {
pxapm_use_in_listing.mapOnProperty = useInListing
pxapm_main_image.mapOnProperty = mainImage
}
}
}
Pixelant\PxaProductManager\Domain\Model\AttributeFalFile {
mapping {
tableName = sys_file_reference
columns {
pxa_attribute.mapOnProperty = attribute
}
}
}
Pixelant\PxaProductManager\Domain\Model\Category {
mapping {
tableName = sys_category
columns {
pxapm_attributes_sets.mapOnProperty = attributeSets
pxapm_description.mapOnProperty = description
pxapm_image.mapOnProperty = image
pxapm_banner_image.mapOnProperty = bannerImage
pxapm_card_view_template.mapOnProperty = cardViewTemplate
pxapm_single_view_template.mapOnProperty = singleViewTemplate
pxapm_subcategories.mapOnProperty = subCategories
pxapm_tax_rate.mapOnProperty = taxRate
pxapm_slug.mapOnProperty = slug
}
}
}
Pixelant\PxaProductManager\Domain\Model\OrderFormField {
subclasses {
1 = Pixelant\PxaProductManager\Domain\Model\OrderFormFields\InputFormField
2 = Pixelant\PxaProductManager\Domain\Model\OrderFormFields\TextAreaFormField
3 = Pixelant\PxaProductManager\Domain\Model\OrderFormFields\SelectBoxFormField
4 = Pixelant\PxaProductManager\Domain\Model\OrderFormFields\CheckBoxFormField
}
}
Pixelant\PxaProductManager\Domain\Model\OrderFormFields\InputFormField {
mapping {
recordType = 1
tableName = tx_pxaproductmanager_domain_model_orderformfield
}
}
Pixelant\PxaProductManager\Domain\Model\OrderFormFields\TextAreaFormField {
mapping {
recordType = 2
tableName = tx_pxaproductmanager_domain_model_orderformfield
}
}
Pixelant\PxaProductManager\Domain\Model\OrderFormFields\SelectBoxFormField {
mapping {
recordType = 3
tableName = tx_pxaproductmanager_domain_model_orderformfield
}
}
Pixelant\PxaProductManager\Domain\Model\OrderFormFields\CheckBoxFormField {
mapping {
recordType = 4
tableName = tx_pxaproductmanager_domain_model_orderformfield
}
}
}
}
}
module.tx_pxaproductmanager.persistence.updateReferenceIndex = 1
plugin.tx_pxaproductmanager.persistence.updateReferenceIndex = 1