]> git.mxchange.org Git - friendica-addons.git/blobdiff - dav/dav.php
Initial Release of the calendar plugin
[friendica-addons.git] / dav / dav.php
diff --git a/dav/dav.php b/dav/dav.php
new file mode 100644 (file)
index 0000000..8c29e38
--- /dev/null
@@ -0,0 +1,12 @@
+<?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.1
+ * Author: Tobias Hößl <https://github.com/CatoTH/>
+ */
+
+$_v = explode(".", phpversion());
+if ($_v[0] > 5 || ($_v[0] == 5 && $_v[1] >= 3)) {
+       require(__DIR__ . "/main.php");
+}
\ No newline at end of file