alfa6661 / yii2-fullcalendar
Yii2 Full Calendar
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/fullcalendar: ~2.4.0
- bower-asset/fullcalendar-scheduler: ~1.0.0
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-11-11 16:09:50 UTC
README
Yii2 Full Calendar
Installation
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.
Usage
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/ ] ]) ?>```