A PHP Script that parses an ICS file from SOCS, in a readable format to display elsewhere.
- Super easy to use.
- Once you've included it in your composer package, just one line of code will get you a PHP array of Event Objects.
- Compatible with Wordpress transients, if you use Wordpress.
- Compatible with Laravel Caching, if you use Laravel.
- Actively managed - if you have a feature or idea request, please let me know, or even better - submit a pull request.
This project requires PHP 7. I'm too lazy to write for PHP5.6 these days. Get with the program!
composer install fredbradley/socs-calendar-ics-parser
This is written to work with Wordpress and even has Wordpress Caching (set_transient
) functionality built in, to speed up page load times.
If you want to see an example of a widget that uses this code, please see this piece of code in my 'cranleigh-socs' plugin. If you like you can install the entire Cranleigh SOCS Plugin, but be aware it's written in Bootstrap 3 with HTML markup specifically for our sites.
If you want some help customising it, I'd be happy to help.
minNumEvents
(default: 5)ignoreCache
(default: false) Set totrue
if you don't want get the object from the cache.cacheName
(default: 'calendar-cache') if you have more than one instance of this, you should probably give each instance a unique cache name, so they don't overwrite each otherweeksAhead
(default: 15) how many weeks ahead to you want to get the events for
$ics_url = "<YOUR URL FOR YOUR ICS HERE>";
$calendar = new \FredBradley\SOCSICSParser\CalendarEvents( $ics_url );
$ics_url = "<YOUR URL FOR YOUR ICS HERE>";
$options = [
'minNumEvents' => 10,
'cacheName' => 'my-music-calendar'
];
$calendar = new \FredBradley\SOCSICSParser\CalendarEvents( $ics_url, $options );