Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93790779
DifferentialLegacyQuery.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
Sun, Dec 1, 13:02
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Dec 3, 13:02 (2 d)
Engine
blob
Format
Raw Data
Handle
22703158
Attached To
rPH Phabricator
DifferentialLegacyQuery.php
View Options
<?php
final
class
DifferentialLegacyQuery
extends
Phobject
{
const
STATUS_ANY
=
'status-any'
;
const
STATUS_OPEN
=
'status-open'
;
const
STATUS_ACCEPTED
=
'status-accepted'
;
const
STATUS_NEEDS_REVIEW
=
'status-needs-review'
;
const
STATUS_NEEDS_REVISION
=
'status-needs-revision'
;
const
STATUS_CLOSED
=
'status-closed'
;
const
STATUS_ABANDONED
=
'status-abandoned'
;
public
static
function
getAllConstants
()
{
return
array_keys
(
self
::
getMap
());
}
public
static
function
getModernValues
(
$status
)
{
if
(
$status
===
self
::
STATUS_ANY
)
{
return
null
;
}
$map
=
self
::
getMap
();
if
(!
isset
(
$map
[
$status
]))
{
throw
new
Exception
(
pht
(
'Unknown revision status filter constant "%s".'
,
$status
));
}
<<<<<<<
HEAD
$values
=
array
();
foreach
(
$map
[
$status
]
as
$status_constant
)
{
$status_object
=
DifferentialRevisionStatus
::
newForStatus
(
$status_constant
);
$legacy_key
=
$status_object
->
getLegacyKey
();
if
(
$legacy_key
!==
null
)
{
$values
[]
=
$legacy_key
;
}
}
return
$values
;
=======
return
$map
[
$status
];
>>>>>>>
upstream
/
stable
}
private
static
function
getMap
()
{
$all
=
array
(
DifferentialRevisionStatus
::
NEEDS_REVIEW
,
DifferentialRevisionStatus
::
NEEDS_REVISION
,
DifferentialRevisionStatus
::
CHANGES_PLANNED
,
DifferentialRevisionStatus
::
ACCEPTED
,
DifferentialRevisionStatus
::
PUBLISHED
,
DifferentialRevisionStatus
::
ABANDONED
,
);
$open
=
array
();
$closed
=
array
();
foreach
(
$all
as
$status
)
{
$status_object
=
DifferentialRevisionStatus
::
newForStatus
(
$status
);
if
(
$status_object
->
isClosedStatus
())
{
$closed
[]
=
$status_object
->
getKey
();
}
else
{
$open
[]
=
$status_object
->
getKey
();
}
}
return
array
(
self
::
STATUS_ANY
=>
$all
,
self
::
STATUS_OPEN
=>
$open
,
self
::
STATUS_ACCEPTED
=>
array
(
DifferentialRevisionStatus
::
ACCEPTED
,
),
self
::
STATUS_NEEDS_REVIEW
=>
array
(
DifferentialRevisionStatus
::
NEEDS_REVIEW
,
),
self
::
STATUS_NEEDS_REVISION
=>
array
(
DifferentialRevisionStatus
::
NEEDS_REVISION
,
),
self
::
STATUS_CLOSED
=>
$closed
,
self
::
STATUS_ABANDONED
=>
array
(
DifferentialRevisionStatus
::
ABANDONED
,
),
);
}
}
Event Timeline
Log In to Comment