Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F424976
PhabricatorInlineSummaryView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorInlineSummaryView.php
View Options
<?php
final
class
PhabricatorInlineSummaryView
extends
AphrontView
{
private
$groups
=
array
();
public
function
addCommentGroup
(
$name
,
array
$items
)
{
if
(!
isset
(
$this
->
groups
[
$name
]))
{
$this
->
groups
[
$name
]
=
$items
;
}
else
{
$this
->
groups
[
$name
]
=
array_merge
(
$this
->
groups
[
$name
],
$items
);
}
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'inline-comment-summary-css'
);
return
hsprintf
(
'%s%s'
,
$this
->
renderHeader
(),
$this
->
renderTable
());
}
private
function
renderHeader
()
{
$icon
=
id
(
new
PHUIIconView
())
->
setIconFont
(
'fa-comment bluegrey msr'
);
$header
=
phutil_tag_div
(
'phabricator-inline-summary'
,
array
(
$icon
,
pht
(
'Inline Comments'
),
));
return
$header
;
}
private
function
renderTable
()
{
$rows
=
array
();
foreach
(
$this
->
groups
as
$group
=>
$items
)
{
$has_where
=
false
;
foreach
(
$items
as
$item
)
{
if
(!
empty
(
$item
[
'where'
]))
{
$has_where
=
true
;
break
;
}
}
$rows
[]
=
phutil_tag
(
'tr'
,
array
(),
phutil_tag
(
'th'
,
array
(
'colspan'
=>
3
),
$group
));
foreach
(
$items
as
$item
)
{
$line
=
$item
[
'line'
];
$length
=
$item
[
'length'
];
if
(
$length
)
{
$lines
=
$line
.
"
\x
E2
\x
80
\x
93"
.(
$line
+
$length
);
}
else
{
$lines
=
$line
;
}
if
(
isset
(
$item
[
'href'
]))
{
$href
=
$item
[
'href'
];
$target
=
'_blank'
;
$tail
=
"
\x
E2
\x
86
\x
97"
;
}
else
{
$href
=
'#inline-'
.
$item
[
'id'
];
$target
=
null
;
$tail
=
null
;
}
if
(
$href
)
{
$icon
=
id
(
new
PHUIIconView
())
->
setIconFont
(
'fa-share white msr'
);
$lines
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$href
,
'target'
=>
$target
,
'class'
=>
'num'
,
),
array
(
$icon
,
$lines
,
$tail
,
));
}
$where
=
idx
(
$item
,
'where'
);
$colspan
=
(
$has_where
?
null
:
2
);
$rows
[]
=
phutil_tag
(
'tr'
,
array
(),
array
(
phutil_tag
(
'td'
,
array
(
'class'
=>
'inline-line-number'
),
$lines
),
(
$has_where
?
phutil_tag
(
'td'
,
array
(
'class'
=>
'inline-which-diff'
),
$where
)
:
null
),
phutil_tag
(
'td'
,
array
(
'class'
=>
'inline-summary-content'
,
'colspan'
=>
$colspan
,
),
phutil_tag_div
(
'phabricator-remarkup'
,
$item
[
'content'
])),
));
}
}
return
phutil_tag
(
'table'
,
array
(
'class'
=>
'phabricator-inline-summary-table'
,
),
phutil_implode_html
(
"
\n
"
,
$rows
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 2, 11:00 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
56266
Default Alt Text
PhabricatorInlineSummaryView.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment