PHP Classes

PHP Webdav Calendar Pusher: Send and receive ICS calendar events via WebDav

Recommend this page to a friend!
  Info   View files Example   View files View files (2)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 184 This week: 1All time: 8,662 This week: 560Up
Version License PHP version Categories
webdavcalendarpusher 1.0.0GNU Lesser Genera...5PHP 5, Time and Date, Web services
Description 

Author

This class can send and receive ICS calendar events via WebDav.

It uses curl to send HTTP requests to a WebDav server to send and receive events of calendars of a given user.

The WebDav URL endpoint, the user name and password and the event details are configurable parameters.

Innovation Award
PHP Programming Innovation award nominee
June 2016
Number 8


Prize: One copy of the Zend Studio
ICS is a file format to store dates, times and other details of events.

WebDav is a protocol extension of HTTP for managing and editing files collaboratively stored in remote Web servers.

This package can send and receive calendar events stored in Web servers using the WebDav.

Manuel Lemos
Picture of Ismail Cakir
Name: Ismail Cakir <contact>
Classes: 1 package by
Country: Turkey Turkey
Age: ???
All time rank: 418774 in Turkey Turkey
Week rank: 416 Up9 in Turkey Turkey Up
Innovation award
Innovation award
Nominee: 1x

Example

<?php
error_reporting
(E_ALL);
include
"webdavCalendarPusher.php";

$wp = new webdavCalendarPusher();
$wp->endpoint("https://mail.example.com/webdav/username/Calendar");
$wp->user("myuser");
$wp->pass("parola");
$wp->location("center office");
$wp->startdate(date("Ymd\THis"));
$wp->enddate(date("Ymd\THis"));
$wp->summary("Test ". date('YmdHis'));
$wp->description("Test x". date('YmdHis'));
$wp->putEvent();
$wp->getEvents();

?>


  Files folder image Files  
File Role Description
Accessible without login Plain text file example.php Example example usage
Plain text file webdavCalendarPusher.php Class webdavCalendarPusher

 Version Control Unique User Downloads Download Rankings  
 0%
Total:184
This week:1
All time:8,662
This week:560Up