Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119761499
DiffusionBranchTableView.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 29, 05:51
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Jul 1, 05:51 (2 d)
Engine
blob
Format
Raw Data
Handle
27061741
Attached To
rPH Phabricator
DiffusionBranchTableView.php
View Options
<?php
final
class
DiffusionBranchTableView
extends
DiffusionView
{
private
$branches
;
private
$commits
=
array
();
public
function
setBranches
(
array
$branches
)
{
assert_instances_of
(
$branches
,
'DiffusionBranchInformation'
);
$this
->
branches
=
$branches
;
return
$this
;
}
public
function
setCommits
(
array
$commits
)
{
$this
->
commits
=
mpull
(
$commits
,
null
,
'getCommitIdentifier'
);
return
$this
;
}
public
function
render
()
{
$drequest
=
$this
->
getDiffusionRequest
();
$current_branch
=
$drequest
->
getBranch
();
$rows
=
array
();
$rowc
=
array
();
foreach
(
$this
->
branches
as
$branch
)
{
$commit
=
idx
(
$this
->
commits
,
$branch
->
getHeadCommitIdentifier
());
if
(
$commit
)
{
$details
=
$commit
->
getCommitData
()->
getCommitMessage
();
$details
=
idx
(
explode
(
"
\n
"
,
$details
),
0
);
$details
=
substr
(
$details
,
0
,
80
);
$datetime
=
phabricator_datetime
(
$commit
->
getEpoch
(),
$this
->
user
);
}
else
{
$datetime
=
null
;
$details
=
null
;
}
$rows
[]
=
array
(
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$drequest
->
generateURI
(
array
(
'action'
=>
'history'
,
'branch'
=>
$branch
->
getName
(),
))
),
'History'
),
phutil_tag
(
'a'
,
array
(
'href'
=>
$drequest
->
generateURI
(
array
(
'action'
=>
'browse'
,
'branch'
=>
$branch
->
getName
(),
)),
),
$branch
->
getName
()),
self
::
linkCommit
(
$drequest
->
getRepository
(),
$branch
->
getHeadCommitIdentifier
()),
$datetime
,
AphrontTableView
::
renderSingleDisplayLine
(
phutil_escape_html
(
$details
))
// TODO: etc etc
);
if
(
$branch
->
getName
()
==
$current_branch
)
{
$rowc
[]
=
'highlighted'
;
}
else
{
$rowc
[]
=
null
;
}
}
$view
=
new
AphrontTableView
(
$rows
);
$view
->
setHeaders
(
array
(
'History'
,
'Branch'
,
'Head'
,
'Modified'
,
'Details'
,
));
$view
->
setColumnClasses
(
array
(
''
,
'pri'
,
''
,
''
,
'wide'
,
));
$view
->
setRowClasses
(
$rowc
);
return
$view
->
render
();
}
}
Event Timeline
Log In to Comment