friendica-addons/dav/dav.php

14 lines
437 B
PHP
Raw Normal View History

2012-06-03 20:19:28 +02:00
<?php
/**
* Name: Calendar with CalDAV Support
* Description: A web-based calendar system with CalDAV-support. Also brings your Friendica-Contacts to your CardDAV-capable mobile phone. Requires PHP >= 5.3.
* Version: 0.3.0
2012-06-03 20:19:28 +02:00
* Author: Tobias Hößl <https://github.com/CatoTH/>
2017-11-03 07:09:35 +01:00
* Status: Unsupported
2012-06-03 20:19:28 +02:00
*/
$_v = explode(".", phpversion());
if ($_v[0] > 5 || ($_v[0] == 5 && $_v[1] >= 3)) {
require(__DIR__ . "/friendica/main.php");
2017-11-03 07:09:35 +01:00
}