Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2891235
ConduitProjectListParameterType.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
875 B
Referenced Files
None
Subscribers
None
ConduitProjectListParameterType.php
View Options
<?php
final
class
ConduitProjectListParameterType
extends
ConduitListParameterType
{
protected
function
getParameterValue
(
array
$request
,
$key
,
$strict
)
{
$list
=
parent
::
getParameterValue
(
$request
,
$key
,
$strict
)
;
$list
=
$this
->
parseStringList
(
$request
,
$key
,
$list
,
$strict
)
;
return
id
(
new
PhabricatorProjectPHIDResolver
(
)
)
->
setViewer
(
$this
->
getViewer
(
)
)
->
resolvePHIDs
(
$list
)
;
}
protected
function
getParameterTypeName
(
)
{
return
'list<project>'
;
}
protected
function
getParameterFormatDescriptions
(
)
{
return
array
(
pht
(
'List of project PHIDs.'
)
,
pht
(
'List of project tags.'
)
,
pht
(
'List with a mixture of PHIDs and tags.'
)
,
)
;
}
protected
function
getParameterExamples
(
)
{
return
array
(
'["PHID-PROJ-1111"]'
,
'["backend"]'
,
'["PHID-PROJ-2222", "frontend"]'
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 14:52 (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1125690
Default Alt Text
ConduitProjectListParameterType.php (875 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment