Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112280308
PHUIStatusListView.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
Fri, May 9, 14:53
Size
620 B
Mime Type
text/x-php
Expires
Sun, May 11, 14:53 (2 d)
Engine
blob
Format
Raw Data
Handle
26043387
Attached To
rPH Phabricator
PHUIStatusListView.php
View Options
<?php
final
class
PHUIStatusListView
extends
AphrontTagView
{
private
$items
;
public
function
addItem
(
PHUIStatusItemView
$item
)
{
$this
->
items
[]
=
$item
;
return
$this
;
}
protected
function
canAppendChild
()
{
return
false
;
}
public
function
getTagName
()
{
return
'table'
;
}
protected
function
getTagAttributes
()
{
require_celerity_resource
(
'phui-status-list-view-css'
);
$classes
=
array
();
$classes
[]
=
'phui-status-list-view'
;
return
array
(
'class'
=>
implode
(
' '
,
$classes
),
);
}
protected
function
getTagContent
()
{
return
$this
->
items
;
}
}
Event Timeline
Log In to Comment