PHPackages                             kilasbff/yii2fullcalendar - 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. kilasbff/yii2fullcalendar

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

kilasbff/yii2fullcalendar
=========================

Yii2 fullcalendar Widgets

v1.0.1(10y ago)03MITPHPPHP &gt;=5.4.0

Since Aug 30Pushed 10y ago1 watchersCompare

[ Source](https://github.com/kilasbff/yii2fullcalendar)[ Packagist](https://packagist.org/packages/kilasbff/yii2fullcalendar)[ Docs](http://www.frenzel.net/)[ RSS](/packages/kilasbff-yii2fullcalendar/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (4)Versions (4)Used By (0)

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

[](#yii2fullcalendar)

JQuery Fullcalendar Yii2 Extension JQuery from: Version 2.1.1 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)[![Version Eye](https://camo.githubusercontent.com/7393830cde999fd169b0324b85477153daf7576422e47ec5cf235042f6ded70f/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f7068696c6970706672656e7a656c3a7969693266756c6c63616c656e6461722f62616467652e737667)](https://www.versioneye.com/php/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":"*",
```

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

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

Changelog
---------

[](#changelog)

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:m:s\Z');
  $events[] = $Event;

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

  ?>
