Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rertieve JSON encode in "calendar-settings.js" #57

Open
osshelouis opened this issue Apr 28, 2017 · 0 comments
Open

Rertieve JSON encode in "calendar-settings.js" #57

osshelouis opened this issue Apr 28, 2017 · 0 comments

Comments

@osshelouis
Copy link

This is my CalendarController.php, $response has stored the JSON file of my events.
`<?php

namespace ADesigns\CalendarBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;

use ADesigns\CalendarBundle\Event\CalendarEvent;

class CalendarController extends Controller
{
/**
* Dispatch a CalendarEvent and return a JSON Response of any events returned.
*
* @param Request $request
* @return Response
*/
public function loadCalendarAction(Request $request)
{
$startDatetime = new \DateTime();
$startDatetime->setTimestamp($request->get('start'));

    $endDatetime = new \DateTime();
    $endDatetime->setTimestamp($request->get('end'));
    
    $events = $this->container->get('event_dispatcher')->dispatch(CalendarEvent::CONFIGURE, new CalendarEvent($startDatetime, $endDatetime, $request))->getEvents();
    
    $response = new \Symfony\Component\HttpFoundation\Response();
    $response->headers->set('Content-Type', 'application/json');
    
    
    $return_events = array();
   
    foreach($events as $event) {
        $return_events[] = $event->toArray();    
    }
   
    
    $response->setContent(json_encode($return_events));
    
    
    return $response;
}

}
Im dont know how you retrieve the JSON encode file on the js file$(function () {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();

$('#calendar-holder').fullCalendar({
    header: {
        left: 'prev, next',
        center: 'title',
        right: 'month,'
    },
    lazyFetching: true,
    timeFormat: {
        // for agendaWeek and agendaDay
        agenda: 'h:mmt',    // 5:00 - 6:30

        // for all other views
        '': 'h:mmt'         // 7p
    },
    eventSources: [
        {
            url: Routing.generate('fullcalendar_loader'),
            type: 'GET'
             data: {
            filter: 'my_custom_filter_param'
        },
        error: function() {
           //alert('There was an error while fetching Google Calendar!');
        }
        }
    ]
    
    
    
});

});`

Any help would be appreciated, Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant