Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1821379
Date.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
848 B
Subscribers
None
Date.php
View Options
<?php
namespace
Sabre\VObject\Property\VCard
;
use
Sabre\VObject\DateTimeParser
;
/**
* Date property
*
* This object encodes vCard DATE values.
*
* @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class
Date
extends
DateAndOrTime
{
/**
* Returns the type of value.
*
* This corresponds to the VALUE= parameter. Every property also has a
* 'default' valueType.
*
* @return string
*/
public
function
getValueType
()
{
return
"DATE"
;
}
/**
* Sets the property as a DateTime object.
*
* @param \DateTime $dt
* @return void
*/
public
function
setDateTime
(
\DateTime
$dt
)
{
$this
->
value
=
$dt
->
format
(
'Ymd'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Dec 23, 8:42 PM (57 m, 20 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
916461
Default Alt Text
Date.php (848 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment