CalendarBundle
CalendarBundle copied to clipboard
Provides event calendar for your Symfony project. Compatible with API like Google Calendar.
Is there a way to output the event data as ICS or iCal? That would allow the data from this bundle to be integrate with Google Calendars and other calendars.
Hi, tattali, great bundle! I put together a demo using the CRUD example (Booking.php), wrapped it in a bootstrap admin theme, and it's available now at https://calendar-bundle-demo.herokuapp.com/ The source code...
Hi, After profiling my code, I found a performance issue in this function : ``` public function addEvent(Event $event): self { if (!\in_array($event, $this->events, true)) { $this->events[] = $event; }...
Timezone param is sent when timezone is specified, but it was not passed to calendar event. Datetimes returned from event entity were formatted as in UTC timezone, but actually they...
Perhaps this is a none issue, but for me it was surprising the documentation did not mention it. If you have a Symphony app with a firewall or login/security system...
It'll be out in less than 2 months. The AssetMapper component is a gamechanger. I'm working on a demo now (still stuck at getting fullcalendar to work without the bundle,...
One of the goals of this bundle could be to be able to customize fullcalendar without ever writing javascript. That is, to replace the section https://github.com/tattali/CalendarBundle#basic-functionalities with some twig calls....
The documentation describes installing the bundle with WebpackEncore, we should also document how to install with AssetMapper, which is now the Symfony preferred way. Of course, we can't do that...
Will fix the deprecation ```deprecation The "Symfony\Component\HttpKernel\DependencyInjection\Extension" class is considered internal since Symfony 7.1, to be deprecated in 8.1; use Symfony\Component\DependencyInjection\Extension\Extension instead. It may change without further notice. You should...
I'm getting this error when installing in a Symfony 7 application ``` [KO] Script cache:clear returned with error code 1 !! !! In DefinitionErrorExceptionPass.php line 48: !! !! Cannot autowire...