Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106249325
PhrictionDocumentStatus.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, Mar 24, 01:58
Size
502 B
Mime Type
text/x-php
Expires
Wed, Mar 26, 01:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25150102
Attached To
rPH Phabricator
PhrictionDocumentStatus.php
View Options
<?php
final
class
PhrictionDocumentStatus
extends
PhrictionConstants
{
const
STATUS_EXISTS
=
0
;
const
STATUS_DELETED
=
1
;
const
STATUS_MOVED
=
2
;
const
STATUS_STUB
=
3
;
public
static
function
getConduitConstant
(
$const
)
{
static
$map
=
array
(
self
::
STATUS_EXISTS
=>
'exists'
,
self
::
STATUS_DELETED
=>
'deleted'
,
self
::
STATUS_MOVED
=>
'moved'
,
self
::
STATUS_STUB
=>
'stubbed'
,
);
return
idx
(
$map
,
$const
,
'unknown'
);
}
}
Event Timeline
Log In to Comment