Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122188017
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 16, 11:33
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jul 18, 11:33 (2 d)
Engine
blob
Format
Raw Data
Handle
27446861
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