alfa6661 / yii2-fullcalendar
Yii2 Full Calendar
1.0
2016-08-17 12:58 UTC
Requires
- bower-asset/fullcalendar: ~2.4.0
- bower-asset/fullcalendar-scheduler: ~1.0.0
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-09-11 15:49:22 UTC
README
Yii2 Full Calendar
安装
安装此扩展的首选方式是通过 composer.
运行以下命令之一
php composer.phar require --prefer-dist alfa6661/yii2-fullcalendar "*"
或
"alfa6661/yii2-fullcalendar": "*"
将以下内容添加到您的 composer.json
文件的 require 部分中。
使用方法
扩展安装完成后,只需在您的代码中使用它即可
<?= alfa6661\widgets\FullCalendar::widget([ 'options' => [ 'id' => 'calendar', ], 'clientOptions' => [ // the options for the underlying FullCalendar plugin // see: http://fullcalendar.io/docs/ ] ]) ?>```