lav45 / yii2-fullcalendar
Widget for Yii Framework 2.0 to use FullCalendar
Package info
github.com/LAV45/yii2-fullcalendar
Type:yii2-extension
pkg:composer/lav45/yii2-fullcalendar
1.1.1
2017-02-10 20:17 UTC
Requires
- bower-asset/fullcalendar: 3.*
- yiisoft/yii2: 2.0.*
This package is auto-updated.
Last update: 2026-03-13 02:55:46 UTC
README
Widget for Yii Framework 2.0 to use FullCalendar
Installation
The preferred way to install this extension is through composer.
Either run
~$ composer require lav45/yii2-fullcalendar
or add
"lav45/yii2-fullcalendar": "~1.0"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
use lav45\widget\FullCalendar; <?= FullCalendar::widget([ 'googleCalendar' => true, // If the plugin displays a Google Calendar. Default false 'clientOptions' => [ // put your options and callbacks here // see http://fullcalendar.io/docs/ 'lang' => 'pt-br', // optional, if empty get app language ], ]); ?>