Skip to content

PHP Script to download multiple iCalendar abonnements and merge them into one

Notifications You must be signed in to change notification settings

winkler-winsen/php-icalendar-merge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

php-icalendar-merge

PHP Script to download multiple iCalendar abonnements and merge them into one

basic auth password protection

Comment out line check_auth(); for disabling basic auth.

// Username and password for access
define('AUTH_USER', 'yourUsername');
define('AUTH_PASS', 'yourPassword');

iCalendar imputs

$calendar_urls = [
    'https://example.com/calendar1.ics',
    'https://example.com/calendar2.ics'
];

name of the calendar

$calendar_name = 'My Merged Calendar';

colour of the calendar

Hex colour in RGB, e.g. #FF0000 for Red

$calendar_colour = '#FF0000'; // Red

About

PHP Script to download multiple iCalendar abonnements and merge them into one

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages