#typo3 #tx-news
#typo3 #tx-новости
Вопрос:
Как мы можем показывать новости с выбранной даты, например index.php?id=6amp;dateselected=13.04.2019
plugin.tx_news.settings.timeRestriction= {GP:dateselected}
plugin.tx_news.settings.timeRestrictionHigh= {GP:dateselected} 24 hour
не работает, но этот код работает
plugin.tx_news.settings.timeRestriction= 13.04.2019
plugin.tx_news.settings.timeRestrictionHigh= 13.04.2019 24 hour
Ответ №1:
Для plugin.tx_news.settings.timeRestriction= {GP:dateselected}
или чего-то подобного вам нужна stdWrap
функциональность.
Затем вам нужно: plugin.tx_news.settings.timeRestriction.insertData = 1
Или вы могли бы использовать plugin.tx_news.settings.timeRestriction.data
Вам необходимо активировать stdWrap
для этих полей:
plugin.tx_news {
settings {
useStdWrap = timeRestriction,timeRestrictionHigh
timeRestriction.data = GP:dateselected
timeRestrictionHigh = {GP:dateselected} 24hour
timeRestrictionHigh.stdWrap.insertData = 1
}
}