Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F113141665
ReleephProjectViewController.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, May 15, 12:04
Size
1 KB
Mime Type
text/x-php
Expires
Sat, May 17, 12:04 (2 d)
Engine
blob
Format
Raw Data
Handle
26187043
Attached To
rPH Phabricator
ReleephProjectViewController.php
View Options
<?php
final
class
ReleephProjectViewController
extends
ReleephProjectController
{
public
function
processRequest
()
{
// Load all branches
$releeph_project
=
$this
->
getReleephProject
();
$releeph_branches
=
id
(
new
ReleephBranch
())
->
loadAllWhere
(
'releephProjectID = %d'
,
$releeph_project
->
getID
());
$path
=
$this
->
getRequest
()->
getRequestURI
()->
getPath
();
$is_open_branches
=
strpos
(
$path
,
'closedbranches/'
)
===
false
;
$view
=
id
(
new
ReleephProjectView
())
->
setShowOpenBranches
(
$is_open_branches
)
->
setUser
(
$this
->
getRequest
()->
getUser
())
->
setReleephProject
(
$releeph_project
)
->
setBranches
(
$releeph_branches
);
$crumbs
=
$this
->
buildApplicationCrumbs
()
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
$releeph_project
->
getName
())
->
setHref
(
$releeph_project
->
getURI
()));
if
(
$releeph_project
->
getIsActive
())
{
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setHref
(
$releeph_project
->
getURI
(
'cutbranch'
))
->
setName
(
pht
(
'Cut New Branch'
))
->
setIcon
(
'create'
));
}
return
$this
->
buildStandardPageResponse
(
array
(
$crumbs
,
$view
,
),
array
(
'title'
=>
$releeph_project
->
getName
()
));
}
}
Event Timeline
Log In to Comment