Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105901016
PhabricatorObjectListView.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
Thu, Mar 20, 16:41
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Mar 22, 16:41 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25002992
Attached To
rPH Phabricator
PhabricatorObjectListView.php
View Options
<?php
final
class
PhabricatorObjectListView
extends
AphrontView
{
private
$handles
=
array
();
private
$buttons
=
array
();
public
function
setHandles
(
array
$handles
)
{
assert_instances_of
(
$handles
,
'PhabricatorObjectHandle'
);
$this
->
handles
=
$handles
;
return
$this
;
}
public
function
addButton
(
PhabricatorObjectHandle
$handle
,
$button
)
{
$this
->
buttons
[
$handle
->
getPHID
()][]
=
$button
;
return
$this
;
}
public
function
render
()
{
$handles
=
$this
->
handles
;
require_celerity_resource
(
'phabricator-object-list-view-css'
);
$out
=
array
();
foreach
(
$handles
as
$handle
)
{
$buttons
=
idx
(
$this
->
buttons
,
$handle
->
getPHID
(),
array
());
if
(
$buttons
)
{
$buttons
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-object-list-view-buttons'
,
),
$buttons
);
}
else
{
$buttons
=
null
;
}
$out
[]
=
javelin_tag
(
'div'
,
array
(
'class'
=>
'phabricator-object-list-view-item'
,
'style'
=>
'background-image: url('
.
$handle
->
getImageURI
().
');'
,
),
array
(
$handle
->
renderLink
(),
$buttons
,
));
}
return
phutil_tag
(
'div'
,
array
(
'class'
=>
'phabricator-object-list-view'
,
),
$out
);
}
}
Event Timeline
Log In to Comment