PHPackages                             paskuale75/yii2-fullcalendar - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. paskuale75/yii2-fullcalendar

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

paskuale75/yii2-fullcalendar
============================

Yii2 fullcalendar Widgets

01101PHP

Since Sep 11Pushed 6y ago1 watchersCompare

[ Source](https://github.com/paskuale75/yii2-fullcalendar)[ Packagist](https://packagist.org/packages/paskuale75/yii2-fullcalendar)[ RSS](/packages/paskuale75-yii2-fullcalendar/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

yii2-fullcalendar
=================

[](#yii2-fullcalendar)

Installation
============

[](#installation)

Package is although registered at packagist.org - so you can just add one line of code, to let it run!

add the following line to your composer.json require section:

```
  "paskuale75/yii2-fullcalendar":"*",
```

or run:

```
$ php composer.phar require paskuale75/yii2-fullcalendar "*"

```

And ensure, that you have the following plugin installed global:

> php composer.phar global require "fxp/composer-asset-plugin:~1.0"

Changelog
---------

[](#changelog)

29-04-2019 Updated to latest 4.0.2 Stable Version of the library

Usage
=====

[](#usage)

Quickstart Looks like this:

```
  $events = array();
  //Testing
  $Event = new \yii2fullcalendar\models\Event();
  $Event->id = 1;
  $Event->title = 'Testing';
  $Event->start = date('Y-m-d\TH:i:s\Z');
  $Event->nonstandard = [
    'field1' => 'Something I want to be included in object #1',
    'field2' => 'Something I want to be included in object #2',
  ];
  $events[] = $Event;

  $Event = new \yii2fullcalendar\models\Event();
  $Event->id = 2;
  $Event->title = 'Testing';
  $Event->start = date('Y-m-d\TH:i:s\Z',strtotime('tomorrow 6am'));
  $events[] = $Event;

  ?>
