1. Go to this page and download the library: Download labomatik/calendar-links library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php
use Labomatik\CalendarLinks\Link;
$from = DateTime::createFromFormat('Y-m-d H:i', '2018-02-01 09:00');
$to = DateTime::createFromFormat('Y-m-d H:i', '2018-02-01 18:00');
$link = Link::create('Sebastian\'s birthday', $from, $to)
->description('Cookies & cocktails!')
->address('rue de fer 125, 5380 Namur')
->attendee(['[email protected]','[email protected]'])
->organizer(['name'=>'Christophe', 'email'=>'[email protected]'])
->eventUrl('http://my.domain.com/eventID')
->method('REQUEST');
// Generate a link to create an event on Google calendar
echo $link->google();
// Generate a link to create an event on Yahoo calendar
echo $link->yahoo();
// Generate a link to create an event on outlook.com calendar
echo $link->webOutlook();
// Generate a data uri for an ics file (for iCal & Outlook)
echo $link->ics();
// Generate a data uri for an ics file with custom ID
echo $link->ics('custom_id');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.