davidrnk/yii2-recurring-date
Composer 安装命令:
composer require davidrnk/yii2-recurring-date
包简介
A Yii2 extension that allows users to define and handle recurring date intervals for renewals, expirations and scheduling.
关键字:
README 文档
README
A Yii2 extension/widget that provides a simple and intuitive interface to define and manage recurring date patterns. It is designed to simplify the configuration of renewals, expirations, and periodic events, with clean integration into Yii2 forms and internationalization support.
Main Features
- Visual interface to configure recurring periods: no expiration, interval (days/months/years), monthly (day of the month), yearly (day + month), and specific date.
- Handling of edge cases (e.g., days 29/30/31 and February 29) with configurable adjustment policy (
previous|next). - Persistence of the recurrence scheme in a hidden field as JSON ready to be sent to the server.
- Backend function to calculate the next expiration date based on a base date and the configuration.
- Localization (i18n) with translations in English and Spanish.
Installation
Install the extension with Composer:
composer require davidrnk/yii2-recurring-date
Register the asset (if the widget does not do it automatically) and add the widget to your views/forms according to the usage examples.
Usage
The extension can be used with Yii2 models (ActiveForm) or independently.
Usage with model (ActiveForm):
use davidrnk\RecurringDate\Widget\RecurringDate; echo $form->field($model, 'recurrence_config')->widget(RecurringDate::class, [ // options 'options' => ['class' => 'form-control my-custom-class'], 'labels' => [ 'title_modal' => 'Configure recurrence', // you can override other labels ], ]);
Usage without model:
echo davidrnk\RecurringDate\Widget\RecurringDate::widget([ 'name' => 'recurrence', 'value' => json_encode(['type' => 'monthly', 'day' => 1]), 'options' => ['class' => 'form-control'], ]);
The widget renders a read-only text control with a button to open a modal where recurrence is configured. The resulting JSON is saved in a hidden field (input.hidden) and is the content you should store in the database.
JSON Format (persisted)
The widget persists the configuration in JSON format with the following main structure (examples):
- No expiration
{"type": "no_expiration"}
- Interval
{ "type": "interval", "value": 10, "unit": "days" }
- Monthly (day of the month) + optional adjustment
{ "type": "monthly", "day": 31, "adjust": "previous" }
- Yearly (day + month) + optional adjustment
{ "type": "yearly", "day": 29, "month": 2, "adjust": "previous" }
- Specific date
{ "type": "specific_date", "date": "2025-12-31" }
Relevant keys:
type: one ofno_expiration,interval,monthly,yearly,specific_date.value,unit: used byinterval(unit:days|months|years).day: day of the month (1-31).month: month (1-12).date: ISO date forspecific_date.adjust: policy when the day does not exist in the period (values:previous— adjust to the last valid day of the month, ornext— move to the next day).
Calculation of the Next Expiration Date
In the backend, the library provides a function to calculate the resulting date based on a base date and the JSON configuration. In the code the function is called:
use davidrnk\RecurringDate\Core\RecurringDateEngine; $nextDueDate = RecurringDateEngine::calculateExpiration($startDate, $configArray); // returns DateTime instance or null if configuration is invalid
In the documentation and examples of this README, we refer to this date as nextDueDate. If calculateExpiration returns null, the combination of parameters is invalid or could not be calculated.
Quick example:
$start = new \DateTime('2025-01-31'); $cfg = ['type' => 'monthly', 'day' => 31, 'adjust' => 'previous']; $next = RecurringDateEngine::calculateExpiration($start, $cfg); echo $next ? $next->format('Y-m-d') : 'invalid';
Configuration and Customization
The widget exposes several ways to adjust its visual and textual behavior:
options(array): HTML attributes for the visible text field (e.g.,class,style,placeholder).labels(array): you can override texts and labels used in the modal. Examples of keys you can customize:title_modal,type,configure,preview,save,cancel,quantity,unit,month_day,adjust,adjust_previous,adjust_next, etc.
- Translations: the extension includes files in
src/messages/enandsrc/messages/es. The displayed texts are also sent to JavaScript for preview.
Example of label customization:
echo $form->field($model, 'recurrence_config')->widget(RecurringDate::class, [ 'labels' => [ 'title_modal' => 'Schedule repetition', 'adjust_previous' => 'Adjust to the last day of the month', ], ]);
Validations and UX Behavior
- The widget validates on the client side combinations that are clearly invalid (e.g., 31 in months with 30 days, February 31) and blocks saving when the selection is fatal.
- For non-fatal cases (e.g., day >= 29 in monthly or February 29 in yearly), it shows a warning and allows the user to select the
adjustpolicy. - The
adjustvalue is persisted in JSON and is considered byRecurringDateEngine::calculateExpiration.
Internationalization (i18n)
The default language of the extension is English. Translations are included in src/messages/en and src/messages/es. Strings used in views and JavaScript translations are defined and loaded from RecurringDate::getJSTranslations().
If you need to add another language, add a file in src/messages/XX/davidrnk.recurring.php with the required keys.
Tests
Unit tests for PHP are included for the calculation logic (tests/RecurringDateEngineTest.php) and should be executed with:
vendor/bin/phpunit tests/RecurringDateEngineTest.php
Best Practices and Notes
- Save the persisted JSON directly in a text field in the database (e.g.,
recurrence_config), and useRecurringDateEngine::calculateExpirationto obtain the next expiration date when needed. - Decide and document the default
adjustpolicy for your domain (by default the extension usesprevious— clamp to the last valid day). This avoids surprises when calculating next dates. - Review the locale configuration (
Yii::$app->language) to ensure the UI displays the desired translations.
Contributing
Pull requests and issues are welcome. For major changes, first open an issue describing the proposed change.
License
BSD-3-Clause — see LICENSE file.
davidrnk/yii2-recurring-date 适用场景与选型建议
davidrnk/yii2-recurring-date 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 20 次下载、GitHub Stars 达 2, 最近一次更新时间为 2025 年 11 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「date」 「recurring」 「yii2」 「recurrence」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 davidrnk/yii2-recurring-date 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 davidrnk/yii2-recurring-date 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 davidrnk/yii2-recurring-date 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple Laravel 5 service provider for including the Recurly PHP client.
Tools to convert between .NET and PHP date formats
A custom URL rule class for Yii 2 which allows to create translated URL rules
Rich payment solutions for zend framework2. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more
Laravel Eloquent RRULE tools
MaxAl Subscriptions is a flexible plans and subscription management system for Laravel, with the required tools to run your SAAS like services efficiently. It's simple architecture, accompanied by powerful underlying to afford solid platform for your business.
统计信息
- 总下载量: 20
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 21
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2025-11-26