2017 © Pedro Peláez
 

library icalendar

iCalendar is a computer file format which allows Internet users to send meeting requests and tasks to other Internet users

image

makinuk/icalendar

iCalendar is a computer file format which allows Internet users to send meeting requests and tasks to other Internet users

  • Monday, March 9, 2015
  • by makinuk
  • Repository
  • 2 Watchers
  • 3 Stars
  • 3,330 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 15 % Grown

The README.md

icalendar

iCalendar is a computer file format that allows Internet users to send meeting requests and tasks to other Internet users, (*1)

This project follows RFC 5545, (*2)

Composer

composer require makinuk/icalendar>=1.0, (*3)

Example Usage

require_once "../vendor/autoload.php";

$ical = new makinuk\ICalendar\ICalendar();
$event = new makinuk\ICalendar\ICalEvent();

$event->setUId("11223344")
        ->setStartDate(strtotime("+24 hours"))
        ->setEndDate(strtotime("+25 hours"))
        ->setSummary("Summary is here")
        ->setDescription("Description area is here")
        ->setLocation("Istanbul")
        ->setOrganizer(new makinuk\ICalendar\ICalPerson("Mustafa AKIN", "user@domain.com"))
        ->setAlarm(new makinuk\ICalendar\ICalAlarm(0, 1, 10, 0));

$ical->addEvent($event);

//$ical->getCalendarText();
//$ical->show();
$ical->saveToFile(dirname(__FILE__).DIRECTORY_SEPARATOR."simpleEventAdd.ics");

The Versions

09/03 2015

dev-master

9999999-dev http://makinuk.com

iCalendar is a computer file format which allows Internet users to send meeting requests and tasks to other Internet users

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

by Mustafa AKIN

task outlook icalendar meeting alarm google mail

09/03 2015

v1.0.1

1.0.1.0 http://makinuk.com

iCalendar is a computer file format which allows Internet users to send meeting requests and tasks to other Internet users

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

by Mustafa AKIN

task outlook icalendar meeting alarm google mail

09/03 2015

v1.0

1.0.0.0 http://makinuk.com

iCalendar is a computer file format which allows Internet users to send meeting requests and tasks to other Internet users

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

by Mustafa AKIN

task outlook icalendar meeting alarm google mail