Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101663722
PHUIHandleListView.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, Feb 12, 14:11
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Feb 14, 14:11 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24207880
Attached To
rPH Phabricator
PHUIHandleListView.php
View Options
<?php
/**
* Convenience class for rendering a list of handles.
*
* This class simplifies rendering a list of handles and improves loading and
* caching semantics in the rendering pipeline by delaying bulk loads until the
* last possible moment.
*/
final
class
PHUIHandleListView
extends
AphrontTagView
{
private
$handleList
;
private
$asInline
;
public
function
setHandleList
(
PhabricatorHandleList
$list
)
{
$this
->
handleList
=
$list
;
return
$this
;
}
public
function
setAsInline
(
$inline
)
{
$this
->
asInline
=
$inline
;
return
$this
;
}
public
function
getAsInline
()
{
return
$this
->
asInline
;
}
protected
function
getTagName
()
{
// TODO: It would be nice to render this with a proper <ul />, at least in
// block mode, but don't stir the waters up too much for now.
return
'span'
;
}
protected
function
getTagContent
()
{
$items
=
array
();
foreach
(
$this
->
handleList
as
$handle
)
{
$items
[]
=
$handle
->
renderLink
();
}
if
(
$this
->
getAsInline
())
{
$items
=
phutil_implode_html
(
', '
,
$items
);
}
else
{
$items
=
phutil_implode_html
(
phutil_tag
(
'br'
),
$items
);
}
return
$items
;
}
}
Event Timeline
Log In to Comment