PHPackages                             jonggialdo/yii2fullcalendarfork - 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. jonggialdo/yii2fullcalendarfork

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

jonggialdo/yii2fullcalendarfork
===============================

4.0.2(7y ago)01MITPHP

Since Aug 30Pushed 5y agoCompare

[ Source](https://github.com/jonggialdo/yii2fullcalendarfork)[ Packagist](https://packagist.org/packages/jonggialdo/yii2fullcalendarfork)[ Docs](http://www.frenzel.net/)[ RSS](/packages/jonggialdo-yii2fullcalendarfork/feed)WikiDiscussions master Synced today

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

yii2fullcalendar
================

[](#yii2fullcalendar)

JQuery Fullcalendar Yii2 Extension JQuery from: Version 4.0.2 License MIT

JQuery Documentation: Yii2 Extension by

A tiny sample can be found here:

[![Latest Stable Version](https://camo.githubusercontent.com/1139b4c3bbc4bc4d8bbf3f206c8f088174015ee89ece639e60be89d0cc192f23/68747470733a2f2f706f7365722e707567782e6f72672f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722f762f737461626c652e737667)](https://packagist.org/packages/philippfrenzel/yii2fullcalendar)[![Build Status](https://camo.githubusercontent.com/db9f0db781183d50e12e0986774008932d869807225f25def7e2098a2b4c1717/68747470733a2f2f7472617669732d63692e6f72672f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/philippfrenzel/yii2fullcalendar)[![Code Climate](https://camo.githubusercontent.com/06b1477a9a5160a39cd428f0d8272b91b17b37abeda9a10abdb0da916c608a56/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722e706e67)](https://codeclimate.com/github/philippfrenzel/yii2fullcalendar)[![License](https://camo.githubusercontent.com/48e3b134de8bc6379a57729fb65c0c69ba43fc4fa81b9bafdfd390f8419b8632/68747470733a2f2f706f7365722e707567782e6f72672f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722f6c6963656e73652e737667)](https://packagist.org/packages/philippfrenzel/yii2fullcalendar)

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:

```
  "philippfrenzel/yii2fullcalendar":"*",
```

or run:

```
$ php composer.phar require philippfrenzel/yii2fullcalendar "*"

```

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

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

Changelog
---------

[](#changelog)

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 \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;

  ?>
