Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452511
PhabricatorObjectListView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:40 AM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68821
Default Alt Text
PhabricatorObjectListView.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment