Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92957957
PhutilCalendarUserNode.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 25, 03:47
Size
672 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 03:47 (2 d)
Engine
blob
Format
Raw Data
Handle
22545353
Attached To
rPHU libphutil
PhutilCalendarUserNode.php
View Options
<?php
final
class
PhutilCalendarUserNode
extends
PhutilCalendarNode
{
private
$name
;
private
$uri
;
private
$status
;
const
STATUS_INVITED
=
'invited'
;
const
STATUS_ACCEPTED
=
'accepted'
;
const
STATUS_DECLINED
=
'declined'
;
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
setURI
(
$uri
)
{
$this
->
uri
=
$uri
;
return
$this
;
}
public
function
getURI
()
{
return
$this
->
uri
;
}
public
function
setStatus
(
$status
)
{
$this
->
status
=
$status
;
return
$this
;
}
public
function
getStatus
()
{
return
$this
->
status
;
}
}
Event Timeline
Log In to Comment