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

1.0 2016-08-17 12:58 UTC

This package is auto-updated.

Last update: 2024-03-11 14:43:20 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/
	]
]) ?>```