diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-08-09 17:32:45 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-08-09 17:34:19 +0200 |
commit | 6e922035e1cb7b6f99f32c60dcc5eca8c3d52e7c (patch) | |
tree | e78b2cefcc3d086a9815566d821642d1a6233a6f /3rdparty/Sabre/VObject/Element | |
parent | 4e85848c927896b4d9084fd9019478baaee4507b (diff) | |
download | nextcloud-server-6e922035e1cb7b6f99f32c60dcc5eca8c3d52e7c.tar.gz nextcloud-server-6e922035e1cb7b6f99f32c60dcc5eca8c3d52e7c.zip |
add SabreDav 1.6.4
Diffstat (limited to '3rdparty/Sabre/VObject/Element')
-rwxr-xr-x | 3rdparty/Sabre/VObject/Element/DateTime.php | 37 | ||||
-rwxr-xr-x | 3rdparty/Sabre/VObject/Element/MultiDateTime.php | 17 |
2 files changed, 54 insertions, 0 deletions
diff --git a/3rdparty/Sabre/VObject/Element/DateTime.php b/3rdparty/Sabre/VObject/Element/DateTime.php new file mode 100755 index 00000000000..5e5eb7ab6f2 --- /dev/null +++ b/3rdparty/Sabre/VObject/Element/DateTime.php @@ -0,0 +1,37 @@ +<?php + +/** + * DateTime property + * + * this class got renamed to Sabre_VObject_Property_DateTime + * + * @package Sabre + * @subpackage VObject + * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + * @deprecated + */ +class Sabre_VObject_Element_DateTime extends Sabre_VObject_Property_DateTime { + + /** + * Local 'floating' time + */ + const LOCAL = 1; + + /** + * UTC-based time + */ + const UTC = 2; + + /** + * Local time plus timezone + */ + const LOCALTZ = 3; + + /** + * Only a date, time is ignored + */ + const DATE = 4; + +} diff --git a/3rdparty/Sabre/VObject/Element/MultiDateTime.php b/3rdparty/Sabre/VObject/Element/MultiDateTime.php new file mode 100755 index 00000000000..8a12ced94a8 --- /dev/null +++ b/3rdparty/Sabre/VObject/Element/MultiDateTime.php @@ -0,0 +1,17 @@ +<?php + +/** + * Multi-DateTime property + * + * This class got renamed to Sabre_VObject_Property_MultiDateTime + * + * @package Sabre + * @subpackage VObject + * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + * @deprecated + */ +class Sabre_VObject_Element_MultiDateTime extends Sabre_VObject_Property_MultiDateTime { + +} |