phucnguyenvn / yii2-evecalendar
Extend yii2-fullcalendar (by Edofre) by adding ajax CRUD for events with recurring option and so on.
Installs: 98
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- edofre/yii2-fullcalendar: V1.0.4
- kartik-v/yii2-widget-timepicker: ~1.0.3
- simshaun/recurr: ~2.2
This package is auto-updated.
Last update: 2025-03-22 00:03:58 UTC
README
Yii2 calendar and event management is an AJAX based, modern interface calendar. A module which help you easy manage event and schedule and integrate to your application. This modules depends of following extension:
- Yii2-fullcalendar (by Edofre) - use to handle front-end interface, display an events.
- Recurr (by simshaun) - use to handle a repeat events.
- Yii2-widget-timepicker (by kartik-v) - a form widget to input time.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist phucnguyenvn/yii2-evecalendar "*"
or add
"phucnguyenvn/yii2-evecalendar": "*"
to the require section of your composer.json
file.
Migration
php yii migrate --migrationPath=@vendor/phucnguyenvn/yii2-evecalendar/src/migrations
Usage
Configuring to manage Calendar and Event in web interface
Register module
Configure config/web.php as follows
'modules' => [ ................ 'calendar' => [ 'class' => 'phucnguyenvn\yii2evecalendar\Module' ], ................ ],
Configure timeZone
Configure config/web.php as follows
$config = [ 'timezone' => 'Asia/Ho_Chi_Minh', ... ... ]
- Pretty Url's /calendar (only work with pretty URL)