Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98313935
PHUIDiffTwoUpInlineCommentRowScaffold.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, Jan 12, 00:02
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jan 14, 00:02 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23549741
Attached To
rPH Phabricator
PHUIDiffTwoUpInlineCommentRowScaffold.php
View Options
<?php
/**
* Row scaffold for 2up (side-by-side) changeset views.
*
* Although this scaffold is normally straightforward, it may also accept
* two inline comments and display them adjacently.
*/
final
class
PHUIDiffTwoUpInlineCommentRowScaffold
extends
PHUIDiffInlineCommentRowScaffold
{
public
function
render
()
{
$inlines
=
$this
->
getInlineViews
();
if
(!
$inlines
)
{
throw
new
Exception
(
pht
(
'Two-up inline row scaffold must have at least one inline view.'
));
}
if
(
count
(
$inlines
)
>
2
)
{
throw
new
Exception
(
pht
(
'Two-up inline row scaffold must have at most two inline views.'
));
}
if
(
count
(
$inlines
)
==
1
)
{
$inline
=
head
(
$inlines
);
if
(
$inline
->
getIsOnRight
())
{
$left_side
=
null
;
$right_side
=
$inline
;
}
else
{
$left_side
=
$inline
;
$right_side
=
null
;
}
}
else
{
list
(
$u
,
$v
)
=
$inlines
;
if
(
$u
->
getIsOnRight
()
==
$v
->
getIsOnRight
())
{
throw
new
Exception
(
pht
(
'Two-up inline row scaffold must have one comment on the left and '
.
'one comment on the right when showing two comments.'
));
}
if
(
$v
->
getIsOnRight
())
{
$left_side
=
$u
;
$right_side
=
$v
;
}
else
{
$left_side
=
$v
;
$right_side
=
$u
;
}
}
$left_attrs
=
array
(
'class'
=>
'left'
,
);
$right_attrs
=
array
(
'colspan'
=>
3
,
'class'
=>
'right3'
,
);
$cells
=
array
(
phutil_tag
(
'th'
,
array
()),
phutil_tag
(
'td'
,
$left_attrs
,
$left_side
),
phutil_tag
(
'th'
,
array
()),
phutil_tag
(
'td'
,
$right_attrs
,
$right_side
),
);
return
phutil_tag
(
'tr'
,
$this
->
getRowAttributes
(),
$cells
);
}
}
Event Timeline
Log In to Comment