lewisjenkins/craft-rrule
最新稳定版本:1.0.0
Composer 安装命令:
composer require lewisjenkins/craft-rrule
包简介
RRULE helpers for Craft CMS (wraps rlanvin/php-rrule).
README 文档
README
A minimal Craft CMS 5 module that exposes the php-rrule library to Twig. This wrapper stays faithful to the original library and does not change its behaviour — it simply makes RRule and RSet available in templates.
Requirements
- PHP 8.2+
- Craft CMS 5+
Installation
composer require lewisjenkins/craft-rrule
Usage (Twig)
The module exposes two helpers on craft.rrule:
craft.rrule.rrule(spec)— create anRRulefrom an array or RFC-style stringcraft.rrule.rset(spec?)— create anRSet; optional multi-line RFC block string
RRULE — simple string example
{% set rr = craft.rrule.rrule('
DTSTART;TZID=America/New_York:20250809T090000
RRULE:FREQ=DAILY;COUNT=3
') %}
{% for d in rr.getOccurrences() %}
{{ d|date('Y-m-d H:i e', d.timezone) }}<br>
{% endfor %}
Expected output
2025-08-09 09:00 America/New_York
2025-08-10 09:00 America/New_York
2025-08-11 09:00 America/New_York
RRULE — array example
{% set rr = craft.rrule.rrule({
'FREQ': 'DAILY',
'COUNT': 3,
'DTSTART': date('2025-08-09 09:00', 'America/New_York')
}) %}
{% for d in rr.getOccurrences() %}
{{ d|date('Y-m-d H:i e', d.timezone) }}<br>
{% endfor %}
Expected output
2025-08-09 09:00 America/New_York
2025-08-10 09:00 America/New_York
2025-08-11 09:00 America/New_York
RSET — multi-line block example
{% set rset = craft.rrule.rset('
DTSTART;TZID=America/New_York:19970901T090000
RRULE:FREQ=DAILY;COUNT=3
EXDATE;TZID=America/New_York:19970902T090000
') %}
{% for d in rset.getOccurrences() %}
{{ d|date('Y-m-d H:i e', d.timezone) }}<br>
{% endfor %}
Expected output
1997-09-01 09:00 America/New_York
1997-09-03 09:00 America/New_York
RSET — array example
{% set rset = craft.rrule.rset() %}
{% do rset.addRRule({
'FREQ': 'DAILY',
'COUNT': 3,
'DTSTART': date('1997-09-01 09:00', 'America/New_York')
}) %}
{% do rset.addExDate(date('1997-09-02 09:00', 'America/New_York')) %}
{% for d in rset.getOccurrences() %}
{{ d|date('Y-m-d H:i e', d.timezone) }}<br>
{% endfor %}
Expected output
1997-09-01 09:00 America/New_York
1997-09-03 09:00 America/New_York
Timezone formatting
Each occurrence (DateTime) retains its own timezone. Always format using the occurrence’s timezone:
{{ d|date('Y-m-d H:i e', d.timezone) }}
Full API & Examples
Refer to the original library for the complete API and many examples:
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-14