Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120130707
DrydockLogListView.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
Wed, Jul 2, 03:51
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jul 4, 03:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27118353
Attached To
rPH Phabricator
DrydockLogListView.php
View Options
<?php
final
class
DrydockLogListView
extends
AphrontView
{
private
$logs
;
public
function
setLogs
(
array
$logs
)
{
assert_instances_of
(
$logs
,
'DrydockLog'
);
$this
->
logs
=
$logs
;
return
$this
;
}
public
function
render
()
{
$logs
=
$this
->
logs
;
$viewer
=
$this
->
getUser
();
$view
=
new
PHUIObjectItemListView
();
$rows
=
array
();
foreach
(
$logs
as
$log
)
{
$resource_uri
=
'/drydock/resource/'
.
$log
->
getResourceID
().
'/'
;
$lease_uri
=
'/drydock/lease/'
.
$log
->
getLeaseID
().
'/'
;
$rows
[]
=
array
(
phutil_tag
(
'a'
,
array
(
'href'
=>
$resource_uri
,
),
$log
->
getResourceID
()),
phutil_tag
(
'a'
,
array
(
'href'
=>
$lease_uri
,
),
$log
->
getLeaseID
()),
$log
->
getMessage
(),
phabricator_date
(
$log
->
getEpoch
(),
$viewer
),
);
}
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setDeviceReadyTable
(
true
);
$table
->
setHeaders
(
array
(
'Resource'
,
'Lease'
,
'Message'
,
'Date'
,
));
$table
->
setShortHeaders
(
array
(
'R'
,
'L'
,
'Message'
,
''
,
));
$table
->
setColumnClasses
(
array
(
''
,
''
,
'wide'
,
''
,
));
return
$table
;
}
}
Event Timeline
Log In to Comment