2017 © Pedro Peláez
 

symfony-bundle calendar-bundle

This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.

image

robtec20/calendar-bundle

This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.

  • Thursday, June 1, 2017
  • by robtec20
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 57 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

CalendarBundle - jQuery fullcalendar bundle.

This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application., (*1)

Once installed, this bundle will use event listeners to load events from any bundle in your application., (*2)

Installation

Before installing, please note that this bundle has a dependency on the FOSJsRouting bundle to expose the calendar AJAX event loader route. Please ensure that the FOSJsRouting bundle is installed and configured before continuing., (*3)

Through Composer (Symfony 2.1+):

Add the following lines in your composer.json file:, (*4)

``` js "require": { "adesigns/calendar-bundle": "dev-master" }, (*5)


Run Composer to download and install the bundle: $ php composer.phar update adesigns/calendar-bundle Register the bundle in `app/AppKernel.php`: ``` php // app/AppKernel.php public function registerBundles() { return array( // ... new ADesigns\CalendarBundle\ADesignsCalendarBundle(), ); }

Register the routing in app/config/routing.yml:, (*6)

``` yml, (*7)

app/config/routing.yml

adesigns_calendar: resource: "@ADesignsCalendarBundle/Resources/config/routing.xml", (*8)


Publish the assets: $ php app/console assets:install web Usage ----- Add the required stylesheet and javascripts to your layout: Stylesheet:

, (*9)

Javascript:

, (*10)

Then, in the template where you wish to display the calendar, add the following twig:

{% include 'ADesignsCalendarBundle::calendar.html.twig' %}, (*11)


Adding Events ------------- The best part about this bundle is that you can add events to the calendar from any part of your application. The calendar loads events via AJAX, and dispatches an event to load calendar events from your application. When a request is made to load events for a given start/end time, the bundle dispatches a `calendar.load_events` event. Adding event listeners is an easy 2 step process Create an Event Listener class in your bundle: ``` php // src/Acme/DemoBundle/EventListener/CalendarEventListener.php namespace Acme\DemoBundle\EventListener; use ADesigns\CalendarBundle\Event\CalendarEvent; use ADesigns\CalendarBundle\Entity\EventEntity; use Doctrine\ORM\EntityManager; class CalendarEventListener { private $entityManager; public function __construct(EntityManager $entityManager) { $this->entityManager = $entityManager; } public function loadEvents(CalendarEvent $calendarEvent) { $startDate = $calendarEvent->getStartDatetime(); $endDate = $calendarEvent->getEndDatetime(); // load events using your custom logic here, // for instance, retrieving events from a repository $companyEvents = $this->entityManager->getRepository('AcmeDemoBundle:MyCompanyEvents') ->createQueryBuilder('company_events') ->where('company_events.event_datetime BETWEEN :startDate and :endDate') ->setParameter('startDate', $startDate->format('Y-m-d H:i:s')) ->setParameter('endDate', $endDate->format('Y-m-d H:i:s')) ->getQuery()->getResults(); foreach($companyEvents as $companyEvent) { // create an event with a start/end time, or an all day event if ($companyEvent->getAllDayEvent() === false) { $eventEntity = new EventEntity($companyEvent->getTitle(), $companyEvent->getStartDatetime(), $companyEvent->getEndDatetime()); } else { $eventEntity = new EventEntity($companyEvent->getTitle(), $companyEvent->getStartDatetime(), null, true); } //optional calendar event settings $eventEntity->setAllDay(true); // default is false, set to true if this is an all day event $eventEntity->setBgColor('#FF0000'); //set the background color of the event's label $eventEntity->setFgColor('#FFFFFF'); //set the foreground color of the event's label $eventEntity->setUrl('http://www.google.com'); // url to send user to when event label is clicked $eventEntity->setCssClass('my-custom-class'); // a custom class you may want to apply to event labels //finally, add the event to the CalendarEvent for displaying on the calendar $calendarEvent->addEvent($eventEntity); } } }

Additional properties and customization of each event on the calendar can be found in the Entity/EventEntity class., (*12)

Then, add the listener to your services: ``` xml , (*13)

<services>
    <service id="acme.demobundle.calendar_listener" class="Acme\DemoBundle\EventListener\CalendarEventListener">
        <argument type="service" id="doctrine.orm.entity_manager" />
        <tag name="kernel.event_listener" event="calendar.load_events" method="loadEvents" />
    </service>

</services>

```, (*14)

And that's it! When the ADesignsCalendarBundle::calendar.html.twig template is rendered, any events within the current month/day/year will be pulled from your application., (*15)

The Versions

01/06 2017

dev-master

9999999-dev

This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.

  Sources   Download

MIT

The Requires

 

by Mike Yudin