PHPackages                             philippfrenzel/yii2fullcalendarscheduler - 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. philippfrenzel/yii2fullcalendarscheduler

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

philippfrenzel/yii2fullcalendarscheduler
========================================

Yii2 fullcalendar Widgets

58.2k↓33.3%8[1 PRs](https://github.com/philippfrenzel/yii2fullcalendar-scheduler/pulls)PHP

Since Jul 24Pushed 6y ago1 watchersCompare

[ Source](https://github.com/philippfrenzel/yii2fullcalendar-scheduler)[ Packagist](https://packagist.org/packages/philippfrenzel/yii2fullcalendarscheduler)[ RSS](/packages/philippfrenzel-yii2fullcalendarscheduler/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

yii2fullcalendarscheduler
=========================

[](#yii2fullcalendarscheduler)

JQuery Fullcalendar Scheduler Yii2 Extension JQuery from: Version 2.1.1 License pls. check

JQuery Documentation: Yii2 Extension by

A tiny sample can be found here:

[![Latest Stable Version](https://camo.githubusercontent.com/e3d3d856e1cedb354493ee0dc914d4030b1abe31d0c235fe5c7ca8766e778fe1/68747470733a2f2f706f7365722e707567782e6f72672f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722d7363686564756c65722f762f737461626c652e737667)](https://packagist.org/packages/philippfrenzel/yii2fullcalendarscheduler)[![Build Status](https://camo.githubusercontent.com/ae9b452faf9f81a89d0b01ab2b43b8fd0e52682e5002d703f503e37de5ce2f89/68747470733a2f2f7472617669732d63692e6f72672f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722d7363686564756c65722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/philippfrenzel/yii2fullcalendar-scheduler)[![Code Climate](https://camo.githubusercontent.com/7fdf6a9a75818cdcd38c1c292e862b048b84feefc525ffb4c8f18098c25f4e14/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461722d7363686564756c65722e706e67)](https://codeclimate.com/github/philippfrenzel/yii2fullcalendar-scheduler)[![Version Eye](https://camo.githubusercontent.com/32f86d547d91e4812e5295f07b678dcb6e6b29320c516b1f57687e6d01986a79/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f7068696c6970706672656e7a656c3a7969693266756c6c63616c656e6461727363686564756c65722f62616467652e737667)](https://www.versioneye.com/php/philippfrenzel:yii2fullcalendarscheduler)[![License](https://camo.githubusercontent.com/2a62bce5ed4569ef25051befd7f86b6238f973625c8ff3fde0b7b8869c985a62/68747470733a2f2f706f7365722e707567782e6f72672f7068696c6970706672656e7a656c2f7969693266756c6c63616c656e6461727363686564756c65722f6c6963656e73652e737667)](https://packagist.org/packages/philippfrenzel/yii2fullcalendar-scheduler)

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/yii2fullcalendarscheduler":"*",
```

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

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

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 \yii2fullcalendarscheduler\models\Event();
  $Event->id = 1;
  $Event->title = 'Testing';
  $Event->start = date('Y-m-d\TH:m:s\Z');
  $events[] = $Event;

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

  ?>
