mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-11 10:58:48 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
12
dav/dav.php
Normal file
12
dav/dav.php
Normal file
|
@ -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");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue