Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96197883
PhabricatorPinboardView.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, Dec 23, 16:48
Size
868 B
Mime Type
text/x-php
Expires
Wed, Dec 25, 16:48 (2 d)
Engine
blob
Format
Raw Data
Handle
23142787
Attached To
rPH Phabricator
PhabricatorPinboardView.php
View Options
<?php
final
class
PhabricatorPinboardView
extends
AphrontView
{
private
$items
=
array
();
private
$noDataString
;
public
function
setNoDataString
(
$no_data_string
)
{
$this
->
noDataString
=
$no_data_string
;
return
$this
;
}
public
function
addItem
(
PhabricatorPinboardItemView
$item
)
{
$this
->
items
[]
=
$item
;
return
$this
;
}
public
function
render
()
{
require_celerity_resource
(
'phabricator-pinboard-view-css'
);
if
(!
$this
->
items
)
{
$string
=
nonempty
(
$this
->
noDataString
,
pht
(
'No data.'
));
return
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NODATA
)
->
appendChild
(
phutil_escape_html
(
$string
))
->
render
();
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-pinboard-view'
,
),
$this
->
renderHTMLView
(
$this
->
items
));
}
}
Event Timeline
Log In to Comment