lewisjenkins / craft-rrule
RRULE helpers for Craft CMS (wraps rlanvin/php-rrule).
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: ^8.2
- craftcms/cms: ^5.0
- rlanvin/php-rrule: ^2.3
This package is not auto-updated.
Last update: 2025-08-15 08:19:48 UTC
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 anRRule
from 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: