Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F465856
DiffusionCommentListView.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
DiffusionCommentListView.php
View Options
<?php
final
class
DiffusionCommentListView
extends
AphrontView
{
private
$comments
;
private
$inlineComments
=
array
();
private
$pathMap
=
array
();
private
$handles
=
array
();
private
$markupEngine
;
public
function
setComments
(
array
$comments
)
{
assert_instances_of
(
$comments
,
'PhabricatorAuditComment'
);
$this
->
comments
=
$comments
;
return
$this
;
}
public
function
setInlineComments
(
array
$inline_comments
)
{
assert_instances_of
(
$inline_comments
,
'PhabricatorInlineCommentInterface'
);
$this
->
inlineComments
=
$inline_comments
;
return
$this
;
}
public
function
setPathMap
(
array
$path_map
)
{
$this
->
pathMap
=
$path_map
;
return
$this
;
}
public
function
setMarkupEngine
(
PhabricatorMarkupEngine
$markup_engine
)
{
$this
->
markupEngine
=
$markup_engine
;
return
$this
;
}
public
function
getMarkupEngine
()
{
return
$this
->
markupEngine
;
}
public
function
getRequiredHandlePHIDs
()
{
$phids
=
array
();
foreach
(
$this
->
comments
as
$comment
)
{
$phids
[
$comment
->
getActorPHID
()]
=
true
;
$metadata
=
$comment
->
getMetaData
();
$ccs_key
=
PhabricatorAuditComment
::
METADATA_ADDED_CCS
;
$added_ccs
=
idx
(
$metadata
,
$ccs_key
,
array
());
foreach
(
$added_ccs
as
$cc
)
{
$phids
[
$cc
]
=
true
;
}
$auditors_key
=
PhabricatorAuditComment
::
METADATA_ADDED_AUDITORS
;
$added_auditors
=
idx
(
$metadata
,
$auditors_key
,
array
());
foreach
(
$added_auditors
as
$auditor
)
{
$phids
[
$auditor
]
=
true
;
}
}
foreach
(
$this
->
inlineComments
as
$comment
)
{
$phids
[
$comment
->
getAuthorPHID
()]
=
true
;
}
return
array_keys
(
$phids
);
}
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
render
()
{
$inline_comments
=
mgroup
(
$this
->
inlineComments
,
'getTransactionPHID'
);
$num
=
1
;
$comments
=
array
();
foreach
(
$this
->
comments
as
$comment
)
{
$inlines
=
idx
(
$inline_comments
,
$comment
->
getPHID
(),
array
());
$view
=
id
(
new
DiffusionCommentView
())
->
setMarkupEngine
(
$this
->
getMarkupEngine
())
->
setComment
(
$comment
)
->
setInlineComments
(
$inlines
)
->
setCommentNumber
(
$num
)
->
setHandles
(
$this
->
handles
)
->
setPathMap
(
$this
->
pathMap
)
->
setUser
(
$this
->
user
);
$comments
[]
=
$view
->
render
();
++
$num
;
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'diffusion-comment-list'
),
$comments
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 11:40 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
78565
Default Alt Text
DiffusionCommentListView.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment