Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96559310
ConpherenceParticipant.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
Sat, Dec 28, 02:38
Size
594 B
Mime Type
text/x-php
Expires
Mon, Dec 30, 02:38 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23206411
Attached To
rPH Phabricator
ConpherenceParticipant.php
View Options
<?php
/**
* @group conpherence
*/
final
class
ConpherenceParticipant
extends
ConpherenceDAO
{
protected
$participantPHID
;
protected
$conpherencePHID
;
protected
$participationStatus
;
protected
$behindTransactionPHID
;
protected
$dateTouched
;
public
function
markUpToDate
()
{
if
(!
$this
->
isUpToDate
())
{
$this
->
setParticipationStatus
(
ConpherenceParticipationStatus
::
UP_TO_DATE
);
$this
->
save
();
}
return
$this
;
}
public
function
isUpToDate
()
{
return
$this
->
getParticipationStatus
()
==
ConpherenceParticipationStatus
::
UP_TO_DATE
;
}
}
Event Timeline
Log In to Comment