我创建了一个具有以下结构的自定义Eventcalendar:
- 活动1(Modx-Ressource 1)
- 活动2(Modx-Ressource 2)
这意味着Modx-Ressource有一些关于事件的信息(如Ticketprice,Description,Title ...)和存储在Migx-TV中的多个Eventdates / -times。
到目前为止工作...但我尝试制作一个输出,我可以按日期,限制等排序......也许输出看起来像这样:
我怎样才能完成这项工作?抱歉我的英语不好。
答案 0 :(得分:0)
使用MIGX getImageList
摘要,您可以对其进行排序和过滤:
[[!getImageList?
&tvname=`YourEventsTV`
&tpl=`YourEventTpl`
&sort=`[{"sortby":"your_event_start_date","sortdir":"asc"}]`
&where=`{"your_event_limit:>=":"100"}`
]]
添加sort子句或where子句(两者都使用JSON字符串)。 MODX手册提供了有关all the options available的更多信息。