Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111134636
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
Tue, Apr 29, 19:29
Size
1 KB
Mime Type
text/x-php
Expires
Thu, May 1, 19:29 (2 d)
Engine
blob
Format
Raw Data
Handle
25884262
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
->
getErrorType
(),
$request
->
getErrorCode
(),
$last_request
,
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setRowClasses
(
$rowc
)
->
setHeaders
(
array
(
pht
(
'ID'
),
''
,
pht
(
'Object'
),
pht
(
'Type'
),
pht
(
'Code'
),
pht
(
'Requested At'
),
))
->
setColumnClasses
(
array
(
'n'
,
''
,
'wide'
,
''
,
''
,
''
,
));
return
$table
;
}
}
Event Timeline
Log In to Comment