Deprecation: #25112 - Deprecate TypoScript property "andWhere"
See forge#25112
Description
The select-property and
has been marked as deprecated.
Impact
A deprecation message is logged for every usage of this property.
Affected installations
All installations or extensions using the select-property and
.
Migration
Use the properties where
and markers
instead.
page.30 = CONTENT
page.30 {
table = tt_content
select {
pidInList = this
orderBy = sorting
where {
dataWrap = sorting>{field:sorting}
}
}
}
page.60 = CONTENT
page.60 {
table = tt_content
select {
pidInList = 73
where = header != ###whatever###
orderBy = ###sortfield###
markers {
whatever.data = GP:first
sortfield.value = sor
sortfield.wrap = |ting
}
}
}
Copied!