I needed to integrate a calendar into my application.
This being a CakePHP application, I started looking for a good calendar helper – but found none that I liked enough to integrate. Luckily, I then stumbled upon the excellent fullCalendar project which is everything I wanted:
- Extensible – let me change events easily.
- Provides lazy loading of events.
- Provides for visual differentiation of events based on their type.
- Uses multiple displays (daily, weekly, monthly).
- Lets me, as the developer, store events that are not editable by the user (e.g. Easter dates).
Integration with Cake was relatively straight forward, and I found this series that helped me get started.
FullCalendar is a jQuery plugin. To use it, you’ll need jQuery library itself and a few jQuery plugins. You don’t need to go and find them all over the Internet – they are all bundled with the fullCalendar download.
To set up your cake with fullCalendar you’ll first need to download and unzip fullCalendar’s download package to cake’s /app/webroot/js folder.
Then you’ll want to hook up fullCalendar’s css and javascript files to your page. It’s pretty straightforward actually. You may use the Javascript helper or add the script tags to the view file yourself.
To use the Javascript helper, add it to the $helpers array in your controller (my calendar controller is just called events_controller):
var $name = 'Events';
var $helpers = array('Admin','Time','Javascript');
}
Then link the relevant javascript files in your view. I just add them to the relevant *.ctp file (calendar.ctp in my case) – but you may add them to the layout itself if you want.
<?php
echo $javascript->link('jquery-1.3.2.min.js');
echo $javascript->link('ui.core.js');
echo $javascript->link('ui.resizable.js');
echo $javascript->link('fullcalendar.min.js');
echo $javascript->link('ui.draggable.js');
echo $html->css('fullcalendar');
//Note: to use $html->css as above, the fullcalendar.css
//file must be in your app/webroot/css folder.
?>
<div id="calendar"></div>
The “calendar” div above is the where the fullCalendar will actually be created once you call the fullCalendar function in your document.ready function
3. To display the calendar, you need to call its init method – fullCalendar.
$(document).ready(function() {
$('#calendar').fullCalendar({});
});
</script>
The code above will display the calendar with its default configuration. It will have no events, because none are defined.
If you did everything right you should see something like the screenshot below. This means that you managed to hook up fullCalendar and CakePHP.
And that’s it for integration.
The next post in this series describes how to hook up a database table as an events source for this integration.
The fullCalendar and CakePHP Series:
- Part 1: Set up
- Part 2: Creating an event source
- Part 3: Adding events
- Part 4: Editing events
- Part 5: Dragging and resizing
Popularity: 90% [?]
55 Responses to FullCalendar and CakePHP part 1 – Set Up
Leave a Reply Cancel reply
Recent Comments
- Medovarszki: This post saved my hair from falling out but yeah, I beat my head against the wall now too
- Shehryar: Probably the ebst spring web mvc tutorial I have read, explain everything in great detail. i loved it, this...
- armand: You do not resize the image. You just display it smaller using html tag attributes. It would be nice to...
- COTP: ** Just to clarify, in CakeErrorController.php (the copy in app/Controller/) public function beforeRender() {...
- COTP: For CakePHP 2.0+, you can copy lib/Cake/Controller/CakeErrorC ontroller.php to app/Controller/CakeErrorCon...
- Medovarszki: This post saved my hair from falling out but yeah, I beat my head against the wall now too
Categories
- Android (1)
- appengine (3)
- Be nice to your users (6)
- CakePHP (13)
- General (5)
- Googlemaps (3)
- Java (11)
- javaScript (4)
- jQuery (11)
- Seam (2)
- Security (4)
- Spring MVC (1)
- Spring Webflow (2)
- User Interface (5)
- Wordpress (2)
Archives
- January 2012 (2)
- December 2011 (1)
- July 2011 (2)
- June 2011 (4)
- May 2011 (1)
- December 2010 (3)
- November 2010 (1)
- August 2010 (2)
- July 2010 (2)
- June 2010 (4)
- May 2010 (4)
- April 2010 (5)
- March 2010 (3)


@Marek – I don’t know of live examples you can see. I am using Cake 1.3.6 and Fullcalendar in some projects, but they are not public.
As for the unexpected T_STRING – this is a php error. How did you conclude that these are the lines?
Usually with unexpected T_STRING it has to do with some php parsing – either there’s an un-closed quote somewhere, or your last line
in the file does not contain a ?> , or you have an empty last line, etc etc.
Hi Duck,
Thank you. You were right I made a mistake in copy and paste in my controller. Now I get the response like :
[{"id":"1","title":"cos tam","start":"2011-09-26 17:28","end":"2011-09-26 15:28","allDay":false}]
when calling :
http://localhost/cakephp/events/feed&start=1280617200&end=1317195548
Could you share with me the way I should have used that in the view ? I am doing this
//
but it does not work
Marek
sorry, I have this in my view
//
@Marek – this event feed should only go to the fullcalendar itself – you shouldn’t try and load it in the browser. See here for how to use it
Hi, Duck
Thank you for your help. There was my mistake as pointing to the /events/feed should be in my case /myapp/events/feed. Now I can go further with your tutorial. Thank you very much for your time and help.
Marek