Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99973898
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
Mon, Jan 27, 13:19
Size
620 B
Mime Type
text/x-php
Expires
Wed, Jan 29, 13:19 (2 d)
Engine
blob
Format
Raw Data
Handle
23861179
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