silverstripe-event-calendar
silverstripe-event-calendar copied to clipboard
The Event Calendar module for SilverStripe
Bug fix for exception date formatting in the CMS. The original code assumes the formatting is using php date conventions, however its not, its using the Silverstripe formatting so is...
Typo of the variable name.
Hey, the recursion feature on the module isn't making the events repeat? Is there a way to check an error log to see where the issue is?
Hi @unclecheese. I'm trying to do an SS4 upgrade of your module, based on [this fork](https://github.com/scott-nz/silverstripe-event-calendar). I'm running into an error in one of your module methods that bamboozles me...
Is there any plans to make this compatible with 7.2. I notice there is a Object extends in RecursionReader. Would this be the only amend to get it working with...
If you add an ICS feed, the times of the events are always set to 00:00 This is caused by this line in Calendar.php //Set event start/end to midnight to...
In the `Calendar`'s` RecentEvents` method the sorting is ignored after the `getEventList` method is called. ```php public function RecentEvents($limit = null, $filter = null) { $start_date = sfDate::getInstance(); $end_date =...
This would be a first step as an example to dividing the CalendarDateTime class for interoperability and reusability, to align with SS4 principles. Introducing new super class EventDateTime . See...
My thinking is, data-wise, the CalendarEvent / CalendarDateTime models are reasonably simple and have decent defaults. Perhaps by moving just those to a "event-calendar-core" module or something. This thought came...