Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93528975
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
Fri, Nov 29, 11:56
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 11:56 (2 d)
Engine
blob
Format
Raw Data
Handle
22660258
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
PhabricatorObjectItemListView
())
->
setUser
(
$viewer
);
foreach
(
$projects
as
$project
)
{
$id
=
$project
->
getID
();
$item
=
id
(
new
PhabricatorObjectItemView
())
->
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