Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90934162
DiffusionCommentListView.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
Wed, Nov 6, 04:07
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 04:07 (2 d)
Engine
blob
Format
Raw Data
Handle
22162325
Attached To
rPH Phabricator
DiffusionCommentListView.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
final
class
DiffusionCommentListView
extends
AphrontView
{
private
$user
;
private
$comments
;
private
$inlineComments
=
array
();
private
$pathMap
=
array
();
public
function
setUser
(
PhabricatorUser
$user
)
{
$this
->
user
=
$user
;
return
$this
;
}
public
function
setComments
(
array
$comments
)
{
$this
->
comments
=
$comments
;
return
$this
;
}
public
function
setInlineComments
(
array
$inline_comments
)
{
$this
->
inlineComments
=
$inline_comments
;
return
$this
;
}
public
function
setPathMap
(
array
$path_map
)
{
$this
->
pathMap
=
$path_map
;
return
$this
;
}
public
function
getRequiredHandlePHIDs
()
{
$phids
=
array
();
foreach
(
$this
->
comments
as
$comment
)
{
$phids
[
$comment
->
getActorPHID
()]
=
true
;
}
foreach
(
$this
->
inlineComments
as
$comment
)
{
$phids
[
$comment
->
getAuthorPHID
()]
=
true
;
}
return
array_keys
(
$phids
);
}
public
function
setHandles
(
array
$handles
)
{
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
render
()
{
$inline_comments
=
mgroup
(
$this
->
inlineComments
,
'getAuditCommentID'
);
$num
=
1
;
$comments
=
array
();
foreach
(
$this
->
comments
as
$comment
)
{
$inlines
=
idx
(
$inline_comments
,
$comment
->
getID
(),
array
());
$view
=
id
(
new
DiffusionCommentView
())
->
setComment
(
$comment
)
->
setInlineComments
(
$inlines
)
->
setCommentNumber
(
$num
)
->
setHandles
(
$this
->
handles
)
->
setPathMap
(
$this
->
pathMap
)
->
setUser
(
$this
->
user
);
$comments
[]
=
$view
->
render
();
++
$num
;
}
return
'<div class="diffusion-comment-list">'
.
$this
->
renderSingleView
(
$comments
).
'</div>'
;
}
}
Event Timeline
Log In to Comment