PHPackages                             jaxwifi/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. jaxwifi/yii2-fullcalendar

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

jaxwifi/yii2-fullcalendar
=========================

Yii2 fullcalendar Widgets (philippfrenzel fork)

4.0.6(6y ago)0980MITPHP

Since Aug 30Pushed 6y agoCompare

[ Source](https://github.com/jaxwifi/yii2-fullcalendar)[ Packagist](https://packagist.org/packages/jaxwifi/yii2-fullcalendar)[ Docs](http://www.frenzel.net/)[ RSS](/packages/jaxwifi-yii2-fullcalendar/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (5)Versions (40)Used By (0)

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

[](#yii2-fullcalendar)

This is fork from [philippfrenzel/yii2fullcalendar](https://github.com/philippfrenzel/yii2fullcalendar) with some minor asset changes

JQuery Fullcalendar Yii2 Extension JQuery from:
Version 4.0.4
License MIT

JQuery Documentation: Yii2 Extension by

A tiny sample can be found here:

[![Latest Stable Version](https://camo.githubusercontent.com/91a7397d2f80b14482dccfb0b7180300743e207a16f4ba55dc6e87d4f9230157/68747470733a2f2f706f7365722e707567782e6f72672f6a6178776966692f796969322d66756c6c63616c656e6461722f762f737461626c652e737667)](https://packagist.org/packages/jaxwifi/yii2-fullcalendar)[![Build Status](https://camo.githubusercontent.com/91df50bb3af204290eeb4e67ffdc26c3fdff5e7d619ae3db17b467378567bb9a/68747470733a2f2f7472617669732d63692e6f72672f6a6178776966692f796969322d66756c6c63616c656e6461722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/jaxwifi/yii2-fullcalendar)[![License](https://camo.githubusercontent.com/837ba1ede216537b6fdc5ba0ca03d3a9c02973f5c456bb41b5ac32404893c0ef/68747470733a2f2f706f7365722e707567782e6f72672f6a6178776966692f796969322d66756c6c63616c656e6461722f6c6963656e73652e737667)](https://packagist.org/packages/jaxwifi/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:

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

or run:

```
$ php composer.phar require jaxwifi/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)

04-05-2019 Updated to latest 4.0.4 Version with asset dependency fixes
04-05-2019 Updated to latest 4.0.3 Version with asset fixes
17-04-2019 Updated to latest 4.0.2 Stable Version of the library
19-01-2017 Updated to include non-standard fields
29-11-2014 Updated to latest 2.2.3 Version of the library

Usage
=====

[](#usage)

Quickstart Looks like this:

```
  $events = array();
  //Testing
  $Event = new \yii2-fullcalendar\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 \yii2-fullcalendar\models\Event();
  $Event->id = 2;
  $Event->title = 'Testing';
  $Event->start = date('Y-m-d\TH:i:s\Z',strtotime('tomorrow 6am'));
  $events[] = $Event;

  ?>
