Yii2 Full Calendar
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist alfa6661/yii2-fullcalendar "*"
or add
"alfa6661/yii2-fullcalendar": "*"
to the require section of your composer.json
file.
Once the extension is installed, simply use it in your code by :
<?= alfa6661\widgets\FullCalendar::widget([
'options' => [
'id' => 'calendar',
],
'clientOptions' => [
// the options for the underlying FullCalendar plugin
// see: http://fullcalendar.io/docs/
]
]) ?>```