Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91077837
ReleephProjectListController.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, Nov 7, 15:43
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Nov 9, 15:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22191735
Attached To
rPH Phabricator
ReleephProjectListController.php
View Options
<?php
final
class
ReleephProjectListController
extends
ReleephController
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
ReleephProjectSearchEngine
())
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
public
function
renderResultsList
(
array
$projects
,
PhabricatorSavedQuery
$query
)
{
assert_instances_of
(
$projects
,
'ReleephProject'
);
$viewer
=
$this
->
getRequest
()->
getUser
();
$list
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$viewer
);
foreach
(
$projects
as
$project
)
{
$id
=
$project
->
getID
();
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$project
->
getName
())
->
setHref
(
$this
->
getApplicationURI
(
"project/{$id}/"
));
if
(!
$project
->
getIsActive
())
{
$item
->
setDisabled
(
true
);
$item
->
addIcon
(
'none'
,
pht
(
'Inactive'
));
}
$repo
=
$project
->
getRepository
();
$item
->
addAttribute
(
phutil_tag
(
'a'
,
array
(
'href'
=>
'/diffusion/'
.
$repo
->
getCallsign
().
'/'
,
),
'r'
.
$repo
->
getCallsign
()));
$arc
=
$project
->
loadArcanistProject
();
if
(
$arc
)
{
$item
->
addAttribute
(
$arc
->
getName
());
}
$list
->
addItem
(
$item
);
}
return
$list
;
}
public
function
buildApplicationCrumbs
()
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Create Project'
))
->
setHref
(
$this
->
getApplicationURI
(
'project/create/'
))
->
setIcon
(
'create'
));
return
$crumbs
;
}
}
Event Timeline
Log In to Comment