Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992372
PHUIObjectItemListView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
3 KB
Referenced Files
None
Subscribers
None
PHUIObjectItemListView.php
View Options
<?php
final
class
PHUIObjectItemListView
extends
AphrontTagView
{
private
$header
;
private
$items
;
private
$pager
;
private
$noDataString
;
private
$flush
;
private
$simple
;
private
$big
;
private
$drag
;
private
$allowEmptyList
;
private
$itemClass
=
'phui-oi-standard'
;
private
$tail
=
array
(
)
;
public
function
setAllowEmptyList
(
$allow_empty_list
)
{
$this
->
allowEmptyList
=
$allow_empty_list
;
return
$this
;
}
public
function
getAllowEmptyList
(
)
{
return
$this
->
allowEmptyList
;
}
public
function
setFlush
(
$flush
)
{
$this
->
flush
=
$flush
;
return
$this
;
}
public
function
setHeader
(
$header
)
{
$this
->
header
=
$header
;
return
$this
;
}
public
function
setPager
(
$pager
)
{
$this
->
pager
=
$pager
;
return
$this
;
}
public
function
setSimple
(
$simple
)
{
$this
->
simple
=
$simple
;
return
$this
;
}
public
function
setBig
(
$big
)
{
$this
->
big
=
$big
;
return
$this
;
}
public
function
setDrag
(
$drag
)
{
$this
->
drag
=
$drag
;
$this
->
setItemClass
(
'phui-oi-drag'
)
;
return
$this
;
}
public
function
setNoDataString
(
$no_data_string
)
{
$this
->
noDataString
=
$no_data_string
;
return
$this
;
}
public
function
addItem
(
PHUIObjectItemView
$item
)
{
$this
->
items
[
]
=
$item
;
return
$this
;
}
public
function
setItemClass
(
$item_class
)
{
$this
->
itemClass
=
$item_class
;
return
$this
;
}
protected
function
getTagName
(
)
{
return
'ul'
;
}
public
function
newTailButton
(
)
{
$button
=
id
(
new
PHUIButtonView
(
)
)
->
setTag
(
'a'
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setIcon
(
'fa-chevron-down'
)
->
setText
(
pht
(
'View All Results'
)
)
;
$this
->
tail
[
]
=
$button
;
return
$button
;
}
protected
function
getTagAttributes
(
)
{
$classes
=
array
(
)
;
$classes
[
]
=
'phui-oi-list-view'
;
if
(
$this
->
flush
)
{
$classes
[
]
=
'phui-oi-list-flush'
;
require_celerity_resource
(
'phui-oi-flush-ui-css'
)
;
}
if
(
$this
->
simple
)
{
$classes
[
]
=
'phui-oi-list-simple'
;
require_celerity_resource
(
'phui-oi-simple-ui-css'
)
;
}
if
(
$this
->
big
)
{
$classes
[
]
=
'phui-oi-list-big'
;
require_celerity_resource
(
'phui-oi-big-ui-css'
)
;
}
if
(
$this
->
drag
)
{
$classes
[
]
=
'phui-oi-list-drag'
;
require_celerity_resource
(
'phui-oi-drag-ui-css'
)
;
}
return
array
(
'class'
=>
$classes
,
)
;
}
protected
function
getTagContent
(
)
{
$viewer
=
$this
->
getUser
(
)
;
require_celerity_resource
(
'phui-oi-list-view-css'
)
;
require_celerity_resource
(
'phui-oi-color-css'
)
;
$header
=
null
;
if
(
phutil_nonempty_string
(
$this
->
header
)
)
{
$header
=
phutil_tag
(
'h1'
,
array
(
'class'
=>
'phui-oi-list-header'
,
)
,
$this
->
header
)
;
}
if
(
$this
->
items
)
{
if
(
$viewer
)
{
foreach
(
$this
->
items
as
$item
)
{
$item
->
setUser
(
$viewer
)
;
}
}
foreach
(
$this
->
items
as
$item
)
{
$item
->
addClass
(
$this
->
itemClass
)
;
}
$items
=
$this
->
items
;
}
else
if
(
$this
->
allowEmptyList
)
{
$items
=
null
;
}
else
{
$string
=
nonempty
(
$this
->
noDataString
,
pht
(
'No data.'
)
)
;
$string
=
id
(
new
PHUIInfoView
(
)
)
->
setSeverity
(
PHUIInfoView
::
SEVERITY_NODATA
)
->
appendChild
(
$string
)
;
$items
=
phutil_tag
(
'li'
,
array
(
'class'
=>
'phui-oi-empty'
,
)
,
$string
)
;
}
$pager
=
null
;
if
(
$this
->
pager
)
{
$pager
=
$this
->
pager
;
}
$tail
=
array
(
)
;
foreach
(
$this
->
tail
as
$tail_item
)
{
$tail
[
]
=
phutil_tag
(
'li'
,
array
(
'class'
=>
'phui-oi-tail'
,
)
,
$tail_item
)
;
}
return
array
(
$header
,
$items
,
$tail
,
$pager
,
$this
->
renderChildren
(
)
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 07:56 (1 d, 16 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1181219
Default Alt Text
PHUIObjectItemListView.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment