Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99983127
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, Jan 27, 14:19
Size
530 B
Mime Type
text/x-php
Expires
Wed, Jan 29, 14:19 (2 d)
Engine
blob
Format
Raw Data
Handle
23831959
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