Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106066332
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
Sat, Mar 22, 00:48
Size
530 B
Mime Type
text/x-php
Expires
Mon, Mar 24, 00:48 (2 d)
Engine
blob
Format
Raw Data
Handle
24914264
Attached To
rPH Phabricator
PhrictionDocumentStatus.php
View Options
<?php
/**
* @group phriction
*/
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