PHPackages                             romanmaroder/yii2fullcalendar6 - 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. romanmaroder/yii2fullcalendar6

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

romanmaroder/yii2fullcalendar6
==============================

Yii2 fullcalendar Widgets

1(2y ago)068MITPHP

Since Nov 28Pushed 2y ago1 watchersCompare

[ Source](https://github.com/romanmaroder/yii2fullcalendar6)[ Packagist](https://packagist.org/packages/romanmaroder/yii2fullcalendar6)[ RSS](/packages/romanmaroder-yii2fullcalendar6/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

yii2fullcalendar6
=================

[](#yii2fullcalendar6)

Fullcalendar Yii2 Extension JQuery from: Version 6.1.9 License MIT

JQuery Documentation:

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:

```
  "romanmaroder/yii2fullcalendar6":"*",
```

or run:

```
$ php composer.phar require romanmaroder/yii2fullcalendar6 "*"

```

Usage
=====

[](#usage)

Quickstart Looks like this:

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

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

  ?>
