Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35313235
PhabricatorObjectItemListView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
1 KB
Subscribers
None
PhabricatorObjectItemListView.php
View Options
<?php
final
class
PhabricatorObjectItemListView
extends
AphrontView
{
private
$header
;
private
$items
;
private
$pager
;
private
$stackable
;
private
$noDataString
;
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setPager
(
$pager
)
{
$this
->
pager
=
$pager
;
return
$this
;
}
public
function
setNoDataString
(
$no_data_string
)
{
$this
->
noDataString
=
$no_data_string
;
return
$this
;
}
public
function
addItem
(
PhabricatorObjectItemView
$item
)
{
$this
->
items
[]
=
$item
;
return
$this
;
}
public
function
setStackable
()
{
$this
->
stackable
=
true
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-object-item-list-view-css'
);
$classes
=
array
();
$header
=
null
;
if
(
strlen
(
$this
->
header
))
{
$header
=
phutil_tag
(
'h1'
,
array
(
'class'
=>
'phabricator-object-item-list-header'
,
),
$this
->
header
);
}
if
(
$this
->
items
)
{
$items
=
$this
->
renderHTMLView
(
$this
->
items
);
}
else
{
$string
=
nonempty
(
$this
->
noDataString
,
pht
(
'No data.'
));
$items
=
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NODATA
)
->
appendChild
(
phutil_escape_html
(
$string
))
->
render
();
}
$pager
=
null
;
if
(
$this
->
pager
)
{
$pager
=
$this
->
renderHTMLView
(
$this
->
pager
);
}
$classes
[]
=
'phabricator-object-item-list-view'
;
if
(
$this
->
stackable
)
{
$classes
[]
=
'phabricator-object-list-stackable'
;
}
return
phutil_tag
(
'ul'
,
array
(
'class'
=>
implode
(
' '
,
$classes
),
),
$this
->
renderHTMLView
(
array
(
$header
,
$items
,
$pager
,
)));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Feb 5, 9:21 PM (20 m, 47 s)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
de/d9/d6820e1731289a46e73ff01b8e99
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment