]> git.mxchange.org Git - friendica-addons.git/blob - dav/dav.php
Addon class
[friendica-addons.git] / dav / dav.php
1 <?php
2 /**
3  * Name: Calendar with CalDAV Support
4  * Description: A web-based calendar system with CalDAV-support. Also brings your Friendica-Contacts to your CardDAV-capable mobile phone. Requires PHP >= 5.3.
5  * Version: 0.3.0
6  * Author: Tobias Hößl <https://github.com/CatoTH/>
7  * Status: Unsupported
8  */
9
10 $_v = explode(".", phpversion());
11 if ($_v[0] > 5 || ($_v[0] == 5 && $_v[1] >= 3)) {
12         require(__DIR__ . "/friendica/main.php");
13 }