Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2895146
AphrontProjectListHTTPParameterType.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
1 KB
Referenced Files
None
Subscribers
None
AphrontProjectListHTTPParameterType.php
View Options
<?php
final
class
AphrontProjectListHTTPParameterType
extends
AphrontHTTPParameterType
{
protected
function
getParameterValue
(
AphrontRequest
$request
,
$key
)
{
$type
=
new
AphrontStringListHTTPParameterType
(
)
;
$list
=
$this
->
getValueWithType
(
$type
,
$request
,
$key
)
;
return
id
(
new
PhabricatorProjectPHIDResolver
(
)
)
->
setViewer
(
$this
->
getViewer
(
)
)
->
resolvePHIDs
(
$list
)
;
}
protected
function
getParameterTypeName
(
)
{
return
'list<project>'
;
}
protected
function
getParameterFormatDescriptions
(
)
{
return
array
(
pht
(
'Comma-separated list of project PHIDs.'
)
,
pht
(
'List of project PHIDs, as array.'
)
,
pht
(
'Comma-separated list of project hashtags.'
)
,
pht
(
'List of project hashtags, as array.'
)
,
pht
(
'Mixture of hashtags and PHIDs.'
)
,
)
;
}
protected
function
getParameterExamples
(
)
{
return
array
(
'v=PHID-PROJ-1111'
,
'v=PHID-PROJ-1111,PHID-PROJ-2222'
,
'v=hashtag'
,
'v=frontend,backend'
,
'v[]=PHID-PROJ-1111&v[]=PHID-PROJ-2222'
,
'v[]=frontend&v[]=backend'
,
'v=PHID-PROJ-1111,frontend'
,
'v[]=PHID-PROJ-1111&v[]=backend'
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 21:00 (6 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1128704
Default Alt Text
AphrontProjectListHTTPParameterType.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment