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

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

rklandesverband/yii2fullcalendar
================================

Yii2 fullcalendar Widgets

01.2k↓100%PHP

Since Jul 6Pushed 4y ago1 watchersCompare

[ Source](https://github.com/RoteskreuzNoe/yii2-fullcalendar)[ Packagist](https://packagist.org/packages/rklandesverband/yii2fullcalendar)[ RSS](/packages/rklandesverband-yii2fullcalendar/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

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

[](#yii2-fullcalendar)

JQuery Fullcalendar Yii2 Extension JQuery from: Version 4.0.2 License MIT

JQuery Documentation:

[![Latest Stable Version](https://camo.githubusercontent.com/d6d6197c3bf18c38bdaa945702a2fcca6bce6afdbd33979560ec0f6e0756522e/68747470733a2f2f706f7365722e707567782e6f72672f726b6c616e64657376657262616e642f796969322d66756c6c63616c656e6461722f76657273696f6e)](https://packagist.org/packages/rklandesverband/yii2-fullcalendar)[![Total Downloads](https://camo.githubusercontent.com/435961a142d20842d5712cc19f4afd96ea44247b9f5444e03bd8635e7934336d/68747470733a2f2f706f7365722e707567782e6f72672f726b6c616e64657376657262616e642f796969322d66756c6c63616c656e6461722f646f776e6c6f616473)](https://packagist.org/packages/rklandesverband/yii2-fullcalendar)[![Latest Unstable Version](https://camo.githubusercontent.com/893c1488ee5d3b974c93c151b905df8836954470c4e63e9acd6e92f3703cb988/68747470733a2f2f706f7365722e707567782e6f72672f726b6c616e64657376657262616e642f796969322d66756c6c63616c656e6461722f762f756e737461626c65)](//packagist.org/packages/rklandesverband/yii2-fullcalendar)[![License](https://camo.githubusercontent.com/08c40dc4265f8628f7bc344d3f50ef038c56195c9dd1b2a4590263bf21b7ab9c/68747470733a2f2f706f7365722e707567782e6f72672f726b6c616e64657376657262616e642f796969322d66756c6c63616c656e6461722f6c6963656e7365)](https://packagist.org/packages/rklandesverband/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:

```
  "rklandesverband/yii2-fullcalendar":"1.0.0",
```

or run:

```
$ php composer.phar require rklandesverband/yii2-fullcalendar 1.0.0

```

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;

  ?>
