alfa6661/yii2-fullcalendar

Yii2 Full Calendar

安装次数: 0

依赖: 0

建议者: 0

安全: 0

星星: 0

观察者: 2

分支: 0

公开问题: 0

类型:yii2-extension

1.0 2016-08-17 12:58 UTC

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/
	]
]) ?>```