paolomanca / yii2-fullcalendar
Widget for Yii Framework 2.0 to use FullCalendar
Package info
github.com/paolomanca/yii2-fullcalendar-widget
Language:JavaScript
Type:yii2-extension
pkg:composer/paolomanca/yii2-fullcalendar
v2.2.3.3
2014-12-12 17:02 UTC
Requires
This package is not auto-updated.
Last update: 2026-02-24 10:56:41 UTC
README
Widget for Yii Framework 2.0 to use FullCalendar (version 2.2.3), based on yii2-talma-fullcalendar-widget
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist paolomanca/yii2-fullcalendar "*"
or add
"paolomanca/yii2-fullcalendar": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?= \talma\widgets\FullCalendar::widget([ 'googleCalendar' => true, // If the plugin displays a Google Calendar. Default false 'loading' => 'Carregando...', // Text for loading alert. Default 'Loading...' 'config' => [ // put your options and callbacks here // see http://arshaw.com/fullcalendar/docs/ 'lang' => 'pt-br', // optional, if empty get app language ... ], ]); ?>