7
|
1 <?php
|
|
2
|
|
3 namespace Sabre\VObject\Property\VCard;
|
|
4
|
|
5 use
|
|
6 Sabre\VObject\DateTimeParser;
|
|
7
|
|
8 /**
|
|
9 * DateTime property
|
|
10 *
|
|
11 * This object encodes DATE-TIME values for vCards.
|
|
12 *
|
|
13 * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
|
|
14 * @author Evert Pot (http://evertpot.com/)
|
|
15 * @license http://sabre.io/license/ Modified BSD License
|
|
16 */
|
|
17 class DateTime extends DateAndOrTime {
|
|
18
|
|
19 /**
|
|
20 * Returns the type of value.
|
|
21 *
|
|
22 * This corresponds to the VALUE= parameter. Every property also has a
|
|
23 * 'default' valueType.
|
|
24 *
|
|
25 * @return string
|
|
26 */
|
|
27 public function getValueType() {
|
|
28
|
|
29 return "DATE-TIME";
|
|
30
|
|
31 }
|
|
32
|
|
33 }
|