Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90894437
PHUIDiffInlineCommentPreviewListView.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
Tue, Nov 5, 18:06
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 7, 18:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22154487
Attached To
rPH Phabricator
PHUIDiffInlineCommentPreviewListView.php
View Options
<?php
final
class
PHUIDiffInlineCommentPreviewListView
extends
AphrontView
{
private
$inlineComments
=
array
();
private
$ownerPHID
;
public
function
setInlineComments
(
array
$comments
)
{
assert_instances_of
(
$comments
,
'PhabricatorApplicationTransactionComment'
);
$this
->
inlineComments
=
$comments
;
return
$this
;
}
public
function
getInlineComments
()
{
return
$this
->
inlineComments
;
}
public
function
setOwnerPHID
(
$owner_phid
)
{
$this
->
ownerPHID
=
$owner_phid
;
return
$this
;
}
public
function
getOwnerPHID
()
{
return
$this
->
ownerPHID
;
}
public
function
render
()
{
$viewer
=
$this
->
getViewer
();
$config
=
array
(
'pht'
=>
array
(
'view'
=>
pht
(
'View'
),
),
);
Javelin
::
initBehavior
(
'diff-preview-link'
,
$config
);
$inlines
=
$this
->
getInlineComments
();
foreach
(
$inlines
as
$key
=>
$inline
)
{
$inlines
[
$key
]
=
DifferentialInlineComment
::
newFromModernComment
(
$inline
);
}
$engine
=
new
PhabricatorMarkupEngine
();
$engine
->
setViewer
(
$viewer
);
foreach
(
$inlines
as
$inline
)
{
$engine
->
addObject
(
$inline
,
PhabricatorInlineCommentInterface
::
MARKUP_FIELD_BODY
);
}
$engine
->
process
();
$owner_phid
=
$this
->
getOwnerPHID
();
$handles
=
$viewer
->
loadHandles
(
array
(
$viewer
->
getPHID
()));
$handles
=
iterator_to_array
(
$handles
);
$views
=
array
();
foreach
(
$inlines
as
$inline
)
{
$views
[]
=
id
(
new
PHUIDiffInlineCommentDetailView
())
->
setUser
(
$viewer
)
->
setInlineComment
(
$inline
)
->
setMarkupEngine
(
$engine
)
->
setHandles
(
$handles
)
->
setEditable
(
false
)
->
setPreview
(
true
)
->
setCanMarkDone
(
false
)
->
setObjectOwnerPHID
(
$owner_phid
);
}
return
$views
;
}
}
Event Timeline
Log In to Comment