Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102087960
HeraldWebhookRequestListView.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
Sun, Feb 16, 23:56
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Feb 18, 23:56 (2 d)
Engine
blob
Format
Raw Data
Handle
24279041
Attached To
rPH Phabricator
HeraldWebhookRequestListView.php
View Options
<?php
final
class
HeraldWebhookRequestListView
extends
AphrontView
{
private
$requests
;
private
$highlightID
;
public
function
setRequests
(
array
$requests
)
{
assert_instances_of
(
$requests
,
'HeraldWebhookRequest'
);
$this
->
requests
=
$requests
;
return
$this
;
}
public
function
setHighlightID
(
$highlight_id
)
{
$this
->
highlightID
=
$highlight_id
;
return
$this
;
}
public
function
getHighlightID
()
{
return
$this
->
highlightID
;
}
public
function
render
()
{
$viewer
=
$this
->
getViewer
();
$requests
=
$this
->
requests
;
$handle_phids
=
array
();
foreach
(
$requests
as
$request
)
{
$handle_phids
[]
=
$request
->
getObjectPHID
();
}
$handles
=
$viewer
->
loadHandles
(
$handle_phids
);
$highlight_id
=
$this
->
getHighlightID
();
$rows
=
array
();
$rowc
=
array
();
foreach
(
$requests
as
$request
)
{
$icon
=
$request
->
newStatusIcon
();
if
(
$highlight_id
==
$request
->
getID
())
{
$rowc
[]
=
'highlighted'
;
}
else
{
$rowc
[]
=
null
;
}
$last_epoch
=
$request
->
getLastRequestEpoch
();
if
(
$request
->
getLastRequestEpoch
())
{
$last_request
=
phabricator_datetime
(
$last_epoch
,
$viewer
);
}
else
{
$last_request
=
null
;
}
$rows
[]
=
array
(
$request
->
getID
(),
$icon
,
$handles
[
$request
->
getObjectPHID
()]->
renderLink
(),
$request
->
getErrorTypeForDisplay
(),
$request
->
getErrorCodeForDisplay
(),
$last_request
,
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setRowClasses
(
$rowc
)
->
setHeaders
(
array
(
pht
(
'ID'
),
null
,
pht
(
'Object'
),
pht
(
'Type'
),
pht
(
'Code'
),
pht
(
'Requested At'
),
))
->
setColumnClasses
(
array
(
'n'
,
''
,
'wide'
,
''
,
''
,
''
,
));
return
$table
;
}
}
Event Timeline
Log In to Comment