Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1458046
PHUIDiffInlineCommentPreviewListView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
]
=
$inline
->
newInlineCommentObject
();
}
$engine
=
new
PhabricatorMarkupEngine
();
$engine
->
setViewer
(
$viewer
);
foreach
(
$inlines
as
$inline
)
{
$engine
->
addObject
(
$inline
,
PhabricatorInlineComment
::
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 11, 5:28 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
334935
Default Alt Text
PHUIDiffInlineCommentPreviewListView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment