Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118889387
DrydockBlueprintListController.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, Jun 22, 18:43
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 24, 18:43 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26901200
Attached To
rPH Phabricator
DrydockBlueprintListController.php
View Options
<?php
final
class
DrydockBlueprintListController
extends
DrydockController
implements
PhabricatorApplicationSearchResultsControllerInterface
{
private
$queryKey
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
queryKey
=
idx
(
$data
,
'queryKey'
);
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$controller
=
id
(
new
PhabricatorApplicationSearchController
(
$request
))
->
setQueryKey
(
$this
->
queryKey
)
->
setSearchEngine
(
new
DrydockBlueprintSearchEngine
())
->
setNavigation
(
$this
->
buildSideNav
());
return
$this
->
delegateToController
(
$controller
);
}
public
function
renderResultsList
(
array
$blueprints
,
PhabricatorSavedQuery
$query
)
{
assert_instances_of
(
$blueprints
,
'DrydockBlueprint'
);
$viewer
=
$this
->
getRequest
()->
getUser
();
$view
=
new
PHUIObjectItemListView
();
foreach
(
$blueprints
as
$blueprint
)
{
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$blueprint
->
getClassName
())
->
setHref
(
$this
->
getApplicationURI
(
'/blueprint/'
.
$blueprint
->
getID
()))
->
setObjectName
(
pht
(
'Blueprint %d'
,
$blueprint
->
getID
()));
if
(
$blueprint
->
getImplementation
()->
isEnabled
())
{
$item
->
addAttribute
(
pht
(
'Enabled'
));
$item
->
setBarColor
(
'green'
);
}
else
{
$item
->
addAttribute
(
pht
(
'Disabled'
));
$item
->
setBarColor
(
'red'
);
}
$item
->
addAttribute
(
$blueprint
->
getImplementation
()->
getDescription
());
$view
->
addItem
(
$item
);
}
return
$view
;
}
}
Event Timeline
Log In to Comment