Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93631635
DrydockBlueprintSearchEngine.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
Sat, Nov 30, 07:22
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 07:22 (2 d)
Engine
blob
Format
Raw Data
Handle
22680216
Attached To
rPH Phabricator
DrydockBlueprintSearchEngine.php
View Options
<?php
final
class
DrydockBlueprintSearchEngine
extends
PhabricatorApplicationSearchEngine
{
public
function
getResultTypeDescription
()
{
return
pht
(
'Drydock Blueprints'
);
}
public
function
getApplicationClassName
()
{
return
'PhabricatorDrydockApplication'
;
}
public
function
buildSavedQueryFromRequest
(
AphrontRequest
$request
)
{
return
new
PhabricatorSavedQuery
();
}
public
function
buildQueryFromSavedQuery
(
PhabricatorSavedQuery
$saved
)
{
return
new
DrydockBlueprintQuery
();
}
public
function
buildSearchForm
(
AphrontFormView
$form
,
PhabricatorSavedQuery
$saved
)
{}
protected
function
getURI
(
$path
)
{
return
'/drydock/blueprint/'
.
$path
;
}
protected
function
getBuiltinQueryNames
()
{
return
array
(
'all'
=>
pht
(
'All Blueprints'
),
);
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'all'
:
return
$query
;
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
renderResultList
(
array
$blueprints
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
assert_instances_of
(
$blueprints
,
'DrydockBlueprint'
);
$viewer
=
$this
->
requireViewer
();
$view
=
new
PHUIObjectItemListView
();
foreach
(
$blueprints
as
$blueprint
)
{
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$blueprint
->
getBlueprintName
())
->
setHref
(
$this
->
getApplicationURI
(
'/blueprint/'
.
$blueprint
->
getID
()))
->
setObjectName
(
pht
(
'Blueprint %d'
,
$blueprint
->
getID
()));
if
(!
$blueprint
->
getImplementation
()->
isEnabled
())
{
$item
->
setDisabled
(
true
);
}
$item
->
addAttribute
(
$blueprint
->
getImplementation
()->
getBlueprintName
());
$view
->
addItem
(
$item
);
}
return
$view
;
}
}
Event Timeline
Log In to Comment