Package Data | |
---|---|
Maintainer Username: | guillermobt |
Maintainer Contact: | shawn.tunney@gmail.com (Shawn Tunney) |
Package Create Date: | 2017-07-03 |
Package Last Update: | 2024-10-21 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-06 03:02:15 |
Package Statistics | |
---|---|
Total Downloads: | 627 |
Monthly Downloads: | 8 |
Daily Downloads: | 1 |
Total Stars: | 2 |
Total Watchers: | 1 |
Total Forks: | 2 |
Total Open Issues: | 0 |
This fork fixes an issue with the Agenda views in which all the events were showing up scheduled at 00:00 hours. Credits for this plugin belong to MaddHatter (https://github.com/maddhatter/laravel-fullcalendar). I decided to fork after timing-out my pull-request to maddhatter :)
For Laravel 4.2: use the laravel-4 branch
This is a simple helper package to make generating http://fullcalendar.io in Laravel apps easier.
Require the package with composer using the following command:
composer require guillermobt/laravel-fullcalendar
Or add the following to your composer.json's require section and composer update
"require": {
"guillermobt/laravel-fullcalendar": "dev-master"
}
Then register the service provider in your app.php
config file:
guillermobt\LaravelFullcalendar\ServiceProvider::class,
And optionally create an alias:
'Calendar' => guillermobt\LaravelFullcalendar\Facades\Calendar::class,
You will also need to include fullcalendar.io's files in your HTML.
event()
:The simpliest way to create an event is to pass the event information to Calendar::event()
:
$event = \Calendar::event(
"Valentine's Day", //event title
true, //full day event?
'2015-02-14', //start time, must be a DateTime object or valid DateTime format (http://bit.ly/1z7QWbg)
'2015-02-14', //end time, must be a DateTime object or valid DateTime format (http://bit.ly/1z7QWbg),
1, //optional event ID
[
'url' => 'http://full-calendar.io'
]
);
Event
InterfaceAlternatively, you can use an existing class and have it implement guillermobt\LaravelFullcalendar\Event
. An example of an Eloquent model that implements the Event
interface:
class EventModel extends Eloquent implements \guillermobt\LaravelFullcalendar\Event
{
protected $dates = ['start', 'end'];
/**
* Get the event's id number
*
* @return int
*/
public function getId() {
return $this->id;
}
/**
* Get the event's title
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Is it an all day event?
*
* @return bool
*/
public function isAllDay()
{
return (bool)$this->all_day;
}
/**
* Get the start time
*
* @return DateTime
*/
public function getStart()
{
return $this->start;
}
/**
* Get the end time
*
* @return DateTime
*/
public function getEnd()
{
return $this->end;
}
}
IdentifiableEvent
InterfaceIf you wish for your existing class to have event IDs, implement \guillermobt\LaravelFullcalendar\IdentifiableEvent
instead. This interface extends \guillermobt\LaravelFullcalendar\Event
to add a getId()
method:
class EventModel extends Eloquent implements \guillermobt\LaravelFullcalendar\IdentifiableEvent
{
// Implement all Event methods ...
/**
* Get the event's ID
*
* @return int|string|null
*/
public function getId();
}
If you want to add additional parameters to your events, there are two options:
Calendar::event()
Pass an array of 'parameter' => 'value'
pairs as the 6th parameter to Calendar::event()
:
$event = \Calendar::event(
"Valentine's Day", //event title
true, //full day event?
'2015-02-14', //start time, must be a DateTime object or valid DateTime format (http://bit.ly/1z7QWbg)
'2015-02-14', //end time, must be a DateTime object or valid DateTime format (http://bit.ly/1z7QWbg),
1, //optional event ID
[
'url' => 'http://full-calendar.io',
//any other full-calendar supported parameters
]
);
getEventOptions
method to your event class<?php
class CalendarEvent extends \Illuminate\Database\Eloquent\Model implements \guillermobt\LaravelFullcalendar\Event
{
//...
/**
* Optional FullCalendar.io settings for this event
*
* @return array
*/
public function getEventOptions()
{
return [
'color' => $this->background_color,
//etc
];
}
//...
}
To create a calendar, in your route or controller, create your event(s), then pass them to Calendar::addEvent()
or Calendar::addEvents()
(to add an array of events). addEvent()
and addEvents()
can be used fluently (chained together). Their second parameter accepts an array of valid FullCalendar Event Object parameters.
$events = [];
$events[] = \Calendar::event(
'Event One', //event title
false, //full day event?
'2015-02-11T0800', //start time (you can also use Carbon instead of DateTime)
'2015-02-12T0800', //end time (you can also use Carbon instead of DateTime)
0 //optionally, you can specify an event ID
);
$events[] = \Calendar::event(
"Valentine's Day", //event title
true, //full day event?
new \DateTime('2015-02-14'), //start time (you can also use Carbon instead of DateTime)
new \DateTime('2015-02-14'), //end time (you can also use Carbon instead of DateTime)
'stringEventId' //optionally, you can specify an event ID
);
$eloquentEvent = EventModel::first(); //EventModel implements guillermobt\LaravelFullcalendar\Event
$calendar = \Calendar::addEvents($events) //add an array with addEvents
->addEvent($eloquentEvent, [ //set custom color fo this event
'color' => '#800',
])->setOptions([ //set fullcalendar options
'firstDay' => 1
])->setCallbacks([ //set fullcalendar callback options (will not be JSON encoded)
'viewRender' => 'function() {alert("Callbacks!");}'
]);
return view('hello', compact('calendar'));
Then to display, add the following code to your View:
<!doctype html>
<html lang="en">
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.2.7/fullcalendar.min.js"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.2.7/fullcalendar.min.css"/>
<style>
/* ... */
</style>
</head>
<body>
{!! $calendar->calendar() !!}
{!! $calendar->script() !!}
</body>
</html>
Note: The output from calendar()
and script()
must be non-escaped, so use {!!
and !!}
(or whatever you've configured your Blade compiler's raw tag directives as).
The script()
can be placed anywhere after calendar()
, and must be after fullcalendar was included.
This will generate (in February 2015):