Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96460479
PhabricatorSpacesSearchField.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
Thu, Dec 26, 23:17
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Dec 28, 23:17 (2 d)
Engine
blob
Format
Raw Data
Handle
23186492
Attached To
rPH Phabricator
PhabricatorSpacesSearchField.php
View Options
<?php
final
class
PhabricatorSpacesSearchField
extends
PhabricatorSearchTokenizerField
{
protected
function
getDefaultValue
()
{
return
array
();
}
protected
function
newDatasource
()
{
return
new
PhabricatorSpacesNamespaceDatasource
();
}
protected
function
getValueFromRequest
(
AphrontRequest
$request
,
$key
)
{
$viewer
=
$this
->
getViewer
();
$list
=
$this
->
getListFromRequest
(
$request
,
$key
);
$type
=
new
PhabricatorSpacesNamespacePHIDType
();
$phids
=
array
();
$names
=
array
();
foreach
(
$list
as
$item
)
{
if
(
$type
->
canLoadNamedObject
(
$item
))
{
$names
[]
=
$item
;
}
else
{
$phids
[]
=
$item
;
}
}
if
(
$names
)
{
$spaces
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withNames
(
$names
)
->
execute
();
foreach
(
mpull
(
$spaces
,
'getPHID'
)
as
$phid
)
{
$phids
[]
=
$phid
;
}
$phids
=
array_unique
(
$phids
);
}
return
$phids
;
}
protected
function
newConduitParameterType
()
{
return
new
ConduitPHIDListParameterType
();
}
}
Event Timeline
Log In to Comment