-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_typoscript_setup.txt
More file actions
66 lines (65 loc) · 2.87 KB
/
ext_typoscript_setup.txt
File metadata and controls
66 lines (65 loc) · 2.87 KB
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
config.tx_extbase {
persistence {
updateReferenceIndex = 1
classes {
Pmwebdesign\Cartproductreader\Domain\Model\FileReference {
mapping {
tableName = sys_file_reference
columns {
uid_local.mapOnProperty = originalFileIdentifier
}
}
}
Pmwebdesign\Cartproductreader\Domain\Model\Category {
mapping {
tableName = sys_category
# recordType >
}
}
Pmwebdesign\Cartproductreader\Domain\Model\FeVariant {
mapping {
tableName = tx_cartproducts_domain_model_product_fevariant
# recordType >
}
}
Pmwebdesign\Cartproductreader\Domain\Model\BeVariantAttribute {
mapping {
tableName = tx_cartproducts_domain_model_product_bevariantattribute
# recordType >
}
}
Pmwebdesign\Cartproductreader\Domain\Model\BeVariantAttributeOption {
mapping {
tableName = tx_cartproducts_domain_model_product_bevariantattributeoption
# recordType >
}
}
Pmwebdesign\Cartproductreader\Domain\Model\BeVariant {
mapping {
tableName = tx_cartproducts_domain_model_product_bevariant
# recordType >
}
}
Pmwebdesign\Cartproductreader\Domain\Model\Product {
mapping {
tableName = tx_cartproducts_domain_model_product_product
recordType =
}
}
Pmwebdesign\Cartproductreader\Domain\Model\User {
mapping {
tableName = fe_users
# recordType >
}
}
}
}
objects {
Extcode\CartProducts\Domain\Model\Category.className = Pmwebdesign\Cartproductreader\Domain\Model\Category
Extcode\CartProducts\Domain\Model\Product\FeVariant.className = Pmwebdesign\Cartproductreader\Domain\Model\FeVariant
Extcode\CartProducts\Controller\ProductController.className = Pmwebdesign\Cartproductreader\Controller\ProductController
Extcode\CartProducts\Domain\Model\Product\Product.className = Pmwebdesign\Cartproductreader\Domain\Model\Product
Extcode\CartProducts\Domain\Repository\ProductRepository.className = Pmwebdesign\Cartproductreader\Domain\Repository\ProductRepository
# TYPO3\CMS\Extbase\Domain\Model\FileReference.className = Pmwebdesign\Cartproductreader\Domain\Model\FileReference
}
}